Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • A BatchNormalization class that keeps track of additional training ops: BatchNormalization.py
  • Driver program: ex06_tf_batchnorm.py. Note:
    • use of a new boolean flag placeholder
    • model class keeps list of instances of the batch normalization classes
    • model returns trainOps by querying all the batch normalization instances
    • trainOps are added to ops used during training

Saving Restoring Models in TensorFlow

This code also saves/restores the model like we were doing before. With TensorFlow, steps seem to be

...