aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/keras/optimizers_test.py
Commit message (Collapse)AuthorAge
* Keep only weak references to TensorFlow Optimizer objects in tf.kerasGravatar Allen Lavoie2018-09-25
| | | | | | I don't think this annoyed anyone else yet, it's just a nit I noticed while making sure variables can be garbage collected when tracked via tf.keras. PiperOrigin-RevId: 214462105
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-12
| | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 212725342
* Update initialization of variables in Keras.Gravatar Pavithra Vijay2018-08-21
| | | | | | - Removes the use of global variable collections for initialization. This means that variables created externally (such as input feed variables) will have to be initialized explicitly. PiperOrigin-RevId: 209692235
* Minor fix to allow iterations variable to update in eager modeGravatar Katherine Wu2018-08-21
| | | | PiperOrigin-RevId: 209644988
* Fix bug causing TFOptimizer iterations variable to increment twice when ↵Gravatar Katherine Wu2018-08-07
| | | | | | gradients are applied. PiperOrigin-RevId: 207740606
* Replace Keras clip by value and clip by norm in Keras Optimizers with native ↵Gravatar A. Unique TensorFlower2018-06-28
| | | | | | TF clip_ops, also added user input check for clipnorm and clipvalue >= 0 if set PiperOrigin-RevId: 202516320
* Move Keras code out of _impl folder and remove API files.Gravatar Pavithra Vijay2018-05-17
PiperOrigin-RevId: 197097430