Difference between revisions of "TensorFlow"

From
Jump to: navigation, search
m
m (Eager Execution (Default in 2.0) =)
Line 73: Line 73:
 
=== Eager Execution (Default in 2.0) ====
 
=== Eager Execution (Default in 2.0) ====
 
[http://www.youtube.com/results?search_query=eager+execution+tensorflow Youtube search...]
 
[http://www.youtube.com/results?search_query=eager+execution+tensorflow Youtube search...]
 +
 +
* [http://towardsdatascience.com/the-roadmap-of-mathematics-for-deep-learning-357b3db8569b Eager Execution vs. Graph Execution in TensorFlow: Which is Better? | Orhan G. Yalcin] ...Comparing Eager Execution and Graph Execution using Code Examples, Understanding When to Use Each and why TensorFlow switched to Eager Execution | Deep Learning with TensorFlow 2.x
  
 
<youtube>T8AW0fKP0Hs</youtube>
 
<youtube>T8AW0fKP0Hs</youtube>

Revision as of 21:06, 14 November 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 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

Youtube search...

tf.function

Youtube search...

Eager Execution (Default in 2.0) =

Youtube search...

tf.data - TF Input Pipeline

Youtube search...

tf.distribute

Youtube search...

mesh-TensorFlow

Youtube search...

TensorFlow Probability

Youtube search...

Reinforcement Learning with TF-Agents

Youtube search...

Examples


Tensorflow for Practice Specialization