aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/compatibility
Commit message (Collapse)AuthorAge
* Merge branch 'master' into fix_expand_dimsGravatar Martin Wicke2018-09-22
|\
| * Print errors if --outfile or --outtree are not passed to the tf_upgrade_v2.pyGravatar Anna R2018-09-21
| | | | | | | | | | | | script. PiperOrigin-RevId: 214029776
| * Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-10
| | | | | | | | | | | | | | | | 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: 212336321
| * Fix ordering of tf.GraphKeys.VARIABLES line in renames_v2.pyGravatar A. Unique TensorFlower2018-09-05
| | | | | | | | PiperOrigin-RevId: 211744058
| * This CL changes the graph-mode API of the learning_rate_decay functions in ↵Gravatar A. Unique TensorFlower2018-09-05
| | | | | | | | | | | | | | | | TF 2.0 to return a no-arg callable to output a learning rate, instead of directly outputting a learning rate tensor. This brings the graph mode API in line with the eager execution API, where this change was made to allow changing the learning rate value across different invocations of optimizer functions. PiperOrigin-RevId: 211726295
| * Mark tf.GraphKeys.VARIABLES as deprecatedGravatar A. Unique TensorFlower2018-09-05
| | | | | | | | PiperOrigin-RevId: 211714574
| * Initial API compatibility script for TF2.0. I am pretty much reusing 1.0 ↵Gravatar Anna R2018-07-24
| | | | | | | | | | | | conversion script but passing V2 data. Also, remove code from tf_update.py which is also in ast_edits.py. PiperOrigin-RevId: 205887317
| * Allow is_initialized and initializer to be called on MirroredVariables and ↵Gravatar Anjali Sridhar2018-07-06
| | | | | | | | | | | | TowerLocalVariables. PiperOrigin-RevId: 203520287
* | Fix expand_dims of dims argument has been deprecated with axisGravatar imsheridan2018-04-17
|/
* Resolve conflicts.Gravatar Jianwei Xie2018-03-29
|\
| * Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | | | | | PiperOrigin-RevId: 190878279
| * Merge changes from github.Gravatar Jacques Pienaar2018-03-21
| | | | | | | | PiperOrigin-RevId: 189945839
* | Add missing spaces in multiline strings (#17402)Gravatar Julian Eisenschlos2018-03-14
| |
* | Merge commit for internal changesGravatar Yifei Feng2018-02-12
|\|
| * Add pylint check for W0622 redefined-builtin in ci_sanity.sh and fix ↵Gravatar Yifei Feng2018-02-09
| | | | | | | | | | | | existing pylint errors. PiperOrigin-RevId: 185206494
* | Merge commit for internal changesGravatar Rasmus Larsen2018-01-30
|\|
| * Add C0326 bad-whitespace error to pylint sanity check.Gravatar Yifei Feng2018-01-29
| | | | | | | | PiperOrigin-RevId: 183689499
* | solve push conflictGravatar Jianwei Xie2018-01-26
|\|
| * Add C0330 bad-continuation check to pylint.Gravatar Yifei Feng2018-01-25
| | | | | | | | PiperOrigin-RevId: 183270896
| * Merge changes from github.Gravatar Raghuraman Krishnamoorthi2018-01-03
| | | | | | | | PiperOrigin-RevId: 180746153
* | Make tf_upgrade.py dependency free (#14958)Gravatar Justine Tunney2017-12-28
|/ | | | | Nothing else references the ast_edits, so it will make tf_upgrade.py much easier to use if it's just absorbed. This change fixes #11217 where a whole bunch of folks encountered difficulties for this very reason.
* Automated g4 rollback of changelist 158565259Gravatar Gunhan Gulsoy2017-09-14
| | | | PiperOrigin-RevId: 168650887
* BUILD cleanup in tensorflow/tools/...Gravatar A. Unique TensorFlower2017-06-23
| | | | PiperOrigin-RevId: 160018623
* Pull generic logic out of tf_upgrade script.Gravatar Martin Wicke2017-06-12
| | | | PiperOrigin-RevId: 158806203
* Adjust test sizesGravatar A. Unique TensorFlower2017-06-09
| | | | PiperOrigin-RevId: 158565259
* Merge changes from github.Gravatar Dan Ringwalt2017-05-05
| | | | Change: 155209832
* Merge changes from github.Gravatar Martin Wicke2017-03-23
| | | | Change: 151046259
* Add tf.op_scope -> tf.name_scope (including argument reorder) to the TF ↵Gravatar Neal Wu2017-03-17
| | | | | | upgrade script Change: 150487597
* Merge changes from github.Gravatar Vijay Vasudevan2017-02-17
| | | | Change: 147897309
* Merge changes from github.Gravatar Benoit Steiner2017-02-08
| | | | Change: 146918929
* Improve TensorFlow upgrade scriptGravatar Andrew Selle2017-01-12
| | | | | | | | | | | | | - Handle more functions: tf.svd tf.batch_matmul tf.nn.softmax_cross_entropy_with_logits, tf.nn.sparse_softmax_cross_entropy_with_logits, tf.nn.sigmoid_cross_entropy_with_logits": [ - Handle in-place file modification correctly (and add test). - Handle raw attribute lookups i.e. lists of functions `foo = [tf.mul]` can be upgraded to `foo = [tf.multiply]` Change: 144381716
* Python3 Compatibility for tf_upgrade_test.pyGravatar Andrew Selle2017-01-11
| | | | Change: 144279869
* Basic version of TensorFlow 1.0 Upgrade Script.Gravatar Andrew Selle2017-01-10
This script currently is minimally tested. It is a work in progress currently. Change: 144125570