Skip to content

Instantly share code, notes, and snippets.

@lsgrep
Created October 20, 2019 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lsgrep/8cb0f40e73445d11d786c92ab5f2139d to your computer and use it in GitHub Desktop.
Save lsgrep/8cb0f40e73445d11d786c92ab5f2139d to your computer and use it in GitHub Desktop.
Tensorflow 1-2.md

Tensorflow 1.0 vs Tensorflow 2.0

Tensorflow 1.0 in general is not famed for its ease of use, nor for being well documented. Tensorflow 2.0 has set out to fix all those issues, and it does make things easier with advent of eager execution and unified RNNs & unified Optimizers etc. There are a lot to take in version 2.0, but without proper context and comparison to the 1.0 version, some features are beyond magical. I will provide proper explanation and context through this blog.

Tensorflow 1.0 Programming model

* Graph
* Variable
* Placeholder
* Session

Tensorflow 2.0

* unified RNNs
* unified Optimizers
* Eager Execution
* Autograph

Summary

Tensorflow 2.0 is awesome.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment