Difference between revisions of "TensorFlow"

From
Jump to: navigation, search
Line 9: Line 9:
  
 
* [[Libraries & Frameworks]]
 
* [[Libraries & Frameworks]]
 +
* TensorFlow is a [[Python]] library
 +
* [[Keras]] (currently part of TensorFlow 2.0)
 
* [http://www.tensorflow.org/alpha TensorFlow 2.0 Alpha]
 
* [http://www.tensorflow.org/alpha TensorFlow 2.0 Alpha]
 
* [[TensorFlow.js]]  ... Browser and Node Server
 
* [[TensorFlow.js]]  ... Browser and Node Server
Line 21: Line 23:
 
* [http://playground.tensorflow.org TensorFlow Playground]
 
* [http://playground.tensorflow.org TensorFlow Playground]
 
* [http://ai.google/tools/ We’re making tools and resources available so that anyone can use technology to solve problems | Google AI]
 
* [http://ai.google/tools/ We’re making tools and resources available so that anyone can use technology to solve problems | Google AI]
* [[Keras]]
 
 
* [http://github.com/tensorflow/workshops TensorFlow Workshops] click on links to run in [[Colaboratory]] (Colab)
 
* [http://github.com/tensorflow/workshops TensorFlow Workshops] click on links to run in [[Colaboratory]] (Colab)
 
* [http://developers.google.com/machine-learning/crash-course/ Machine Learning Crash Course with TensorFlow APIs | Google]
 
* [http://developers.google.com/machine-learning/crash-course/ Machine Learning Crash Course with TensorFlow APIs | Google]
Line 29: Line 30:
 
* [http://github.com/machinelearningmindset/TensorFlow-Course TensorFlow-Course | GitHub]
 
* [http://github.com/machinelearningmindset/TensorFlow-Course TensorFlow-Course | GitHub]
 
* [[Git - GitHub and GitLab]]
 
* [[Git - GitHub and GitLab]]
* [[Python]]
+
 
 
* The API...
 
* The API...
 
** [http://www.tensorflow.org/guide/estimators tf.estimator] available alongside the newer Keras high-level API.
 
** [http://www.tensorflow.org/guide/estimators tf.estimator] available alongside the newer Keras high-level API.

Revision as of 08:45, 20 July 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...