Skip to content

Latest commit

 

History

History

TFv2

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

MLwithTensorFlow2-2ed


Exercises and listings for "Machine Learning with TensorFlow 2nd Edition" using TensorFlow v2. The original listings, which use TensorFlow v1 are available on Chris Mattmann's GitHub page

Methodology


Tensorflow v2 has introduced a variety of breaking changes. Some of these changes affect workflow, where others require adopting entirely new paradigms. Eager Execution, for example, requires a change from Declarative to Imperative Programming. We no longer use Placeholder's, and we rely on different libraries to accomplish tasks that have been deprecated in v2. The examples, exercises, and listings in the text and on Chris' GitHub page will be translated from TensorFlow to TensorFlow2 using the following methodologies:

  • We use the official TF v1 to TF v2 migration guide wherever possible.
  • When the migration guide does not suffice, we attempt to replicate results attained in the text and in Chris' github repository.

For anyone interested in how a more elaborate project in Tensorflow would be migrated from v1 to v2, we encourage you to check out the migration guide linked above, and also see whether the official upgrade script would work for your situation. Note that we are not attempting to use the upgrade script in this repository for two reasons:

Contributions


Contributions are more then welcome. This repository and the contents there within are in the public domain, subject to the terms and conditions (if any) laid out by Manning Publications (distributor), Chris Mattmann (author), or any other binding agreements between the user of this repository and the proprietor of the source material.

Disclaimer


The users of this repository shall have no expectation in terms of correctness or thoroughness. The author(s) have attempted to correctly translate the original source material, but there are many reasons why the v2 source might be wildly different from that of the v1 source. If there are issues with the code and/or documentation, please submit a pull request and/or contact the owner of this repository.

Asking for help


We will make reasonable attempts to address issues in the code, but please be aware that the viability of a solution will be judged by the contents of its output. The Jupyter Notebooks herein capture the output of the execution and persist that output when pushed to Github. We do not plan to update this repository as new Tensorflow versions are released. This repository is meant to satisfy the demand for v2 translations and not to be an upto date implementation.