TensorFlow: Difference between revisions

From David's Wiki
Line 3: Line 3:


==Usage (TF2)==
==Usage (TF2)==
Here we'll cover usage using TensorFlow 2 which has eager execution.
Here we'll cover usage using TensorFlow 2 which has eager execution.<br>
This is using the Keras API in tensorflow.keras.
===Basics===
===Basics===
===Training Loop===
===Training Loop===

Revision as of 14:09, 15 October 2019

TensorFlow is the famous machine learning library by Google


Usage (TF2)

Here we'll cover usage using TensorFlow 2 which has eager execution.
This is using the Keras API in tensorflow.keras.

Basics

Training Loop

Reference
You can write your own training loop.

Save and Load Models

Reference

Usage (TF1)