Difference between revisions of "TensorFlow"

From
Jump to: navigation, search
(Tensorflow for Practice Specialization)
(Tensorflow for Practice Specialization)
Line 105: Line 105:
 
** [http://www.meetup.com/Deep-Learning-Adventures/events/269760835/ Meetup #1 fun-packed event]
 
** [http://www.meetup.com/Deep-Learning-Adventures/events/269760835/ Meetup #1 fun-packed event]
 
** Notes:
 
** Notes:
*** [http://stats.stackexchange.com/questions/376224/why-map-the-pixel-grayscale-0-1-to-0-01-0-99-before-feeding-to-the-neural Why map to zero to one]
+
*** [http://stats.stackexchange.com/questions/376224/why-map-the-pixel-grayscale-0-1-to-0-01-0-99-before-feeding-to-the-neural Why map the pixel grayscale [0,1] to [0.01, 0.99] before feeding to the neural network?]
 
*** [http://machinelearningmastery.com/how-to-normalize-center-and-standardize-images-with-the-imagedatagenerator-in-keras/ How to Normalize, Center, and Standardize Image Pixels in Keras | Jason Brownlee]
 
*** [http://machinelearningmastery.com/how-to-normalize-center-and-standardize-images-with-the-imagedatagenerator-in-keras/ How to Normalize, Center, and Standardize Image Pixels in Keras | Jason Brownlee]

Revision as of 19:14, 10 April 2020

Youtube search... ...Google search

  • The API...
    • tf.estimator available alongside the newer Keras high-level API.
    • tf.function a wrapper to use when writing certain functions in Python
    • tf.Transform includes converting between formats, tokenizing and stemming text and forming vocabularies
  • Related...

tensorflow-2-1-768x426.png


TensorFlow 2.0

TensorFlow 2.0 focuses on simplicity and ease of use, with updates like eager execution, intuitive higher-level APIs, and flexible model building on any platform, tight Keras integration. You can easily ingest datasets via tf.data pipelines, and you can monitor your training in TensorBoard directly from Colaboratory and Jupyter Notebooks. TensorFlow 2.0 and Google Cloud AI make it easy to train, deploy, and maintain scalable machine learning models | Paige Bailey and Barrett Williams - Google

GPU

Code Conversion

Examples

Prior Version

TensorFlow 1.0

Eager Execution (Default in 2.0) =

Youtube search...

Tensorflow for Practice Specialization