Difference between revisions of "TensorFlow"

From
Jump to: navigation, search
Line 27: Line 27:
 
* [http://www.notion.so/Simple-Tensorflow-Cookbook-6f4563d0cd7343cb9d1e60cd1698b54d Simple Tensorflow Cookbook]
 
* [http://www.notion.so/Simple-Tensorflow-Cookbook-6f4563d0cd7343cb9d1e60cd1698b54d Simple Tensorflow Cookbook]
 
* [http://github.com/machinelearningmindset/TensorFlow-Course TensorFlow-Course | GitHub]
 
* [http://github.com/machinelearningmindset/TensorFlow-Course TensorFlow-Course | GitHub]
* [http://www.tensorflow.org/hub TensorFlow Hub] is a library for reusable machine learning modules.
+
* [http://www.tensorflow.org/hub TensorFlow Hub] is a library for reusable machine learning modules that you can use to speed up the process of training your model. A [[TensorFlow]] module is a reusable piece of a [[TensorFlow]] graph. With transfer learning, you can use [[TensorFlow]] modules to preprocess input feature vectors, or you can incorporate a [[TensorFlow]] module into your model as a trainable layer. This can help you train your model faster, using a smaller dataset, while improving generalization.
 
* [[Git - GitHub and GitLab]]
 
* [[Git - GitHub and GitLab]]
  

Revision as of 18:13, 2 October 2019

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


TensorFlow 1.0

Eager Execution (Default in 2.0)

Youtube search...