aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/training/momentum.py
Commit message (Collapse)AuthorAge
* TASK 1. Python module doc stringsGravatar A. Unique TensorFlower2017-02-13
| | | | | TASK 2. //training/... Python class doc strings Change: 147434408
* Backprop through resource handles.Gravatar Alexandre Passos2017-02-13
| | | | Change: 147371282
* Enables sparse optimizers for resource variables.Gravatar A. Unique TensorFlower2017-01-31
| | | | Change: 146117209
* Enables all optimizers for dense resource variables.Gravatar A. Unique TensorFlower2017-01-27
| | | | | Also fixes small bug with saving partitioned resource variables. Change: 145828125
* Merge changes from github.Gravatar Martin Wicke2016-12-14
| | | | Change: 142074581
* Automated rollback of change 139400135Gravatar Jonathan Hseu2016-11-18
| | | | Change: 139632235
* Rename `Tensor` to `Output` in all Python docsGravatar Jonathan Hseu2016-11-16
| | | | | | | | | | | | | | Generated by running: $ find . -name '*.py' | xargs sed -i 's/a `Tensor`/an `Output`/g' $ find . -name '*.py' | xargs sed -i 's/A `Tensor`/An `Output`/g' $ find . -name '*.py' | xargs sed -i 's/`Tensor`/`Output`/g' $ find . -name '*.py' | xargs sed -i 's/`tf.Tensor`/`tf.Output`/g' $ find . -name '*.py' | xargs sed -i 's/`Tensors`/`Output`s/g' $ find . -name '*.py' | xargs sed -i 's/#Tensor)/#Output)/g' $ find . -name '*.py' | xargs sed -i 's/#Tensor\./#Output./g' Manually fixed up lines that exceeded 80 characters after the change. Change: 139400135
* Merge changes from github.Gravatar Martin Wicke2016-07-25
| | | | Change: 128401884
* Execute TODOs toGravatar Olivia Nordquist2016-06-14
| | | | | | | | | move client/graph_util.py ops/common_shapes.py ops/constant_op.py ops/op_def_library.py to framework/. Also moved 2 corresponding test files and fixed some linting errors Change: 124885409
* Update copyright for 3p/tf/python.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900456
* Enable fp16 support for all optimizers, and also add unit tests for all thatGravatar A. Unique TensorFlower2016-04-20
| | | | | | | | | | | have it (ie., everything except sync_replicas_optimizer). Mostly a matter of adding the right casts for all the constant tensors, so that the clients do not need to explicitly set types for them. Also add a helper function assertAllCloseAccordingToType() that does comparison with a larger epsilon for fp16 (adapted from training_ops_test.py and improved somewhat). Change: 120351448
* TensorFlow: Improve performance of AlexnetGravatar Manjunath Kudlur2015-11-20
| | | | | | | | | | | | | | | | | | | | | | Changes: * error message that refers to removed `DefaultSession` method. * -Wnull-conversion warnings * the "_start_time" attr for recvs when the flag "--brain_enable_scheduling_for_recvs" is set. * typo in tutorial data download progress message. * a typo ("however their installing"=>"however installing"). * typo, rename "TensorFlow Mechanics" to "How To" to be consistent with the website. * a typo ("subtact"=>"subtract"). * protobuf examples in comments in tensorflow::Example.proto. * formula formatting in MNIST beginner tutorial * negative fraction-of-queue-full stats * protobuf inclusion path so that Android demo will build under Blaze. * small typo (moderatly > moderately) * Session.run() to check that tensor arguments come from the session's graph. * another six import * seq2seq typo in bazel command Base CL: 108349164
* TensorFlow: upstream changes from the afternoon.Gravatar Vijay Vasudevan2015-11-11
| | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - futurize --stage2 changes for Python 3 compatibility by @girving. - Small updates to documentation by @vrv, schuster and others - Account for failure of std::thread::hardware_concurrency by @ebrevdo. - More changes for backwards-compatibility tests by Josh - Updates to python op doc generation by Josh - Added support for using the best-fit allocator via ConfigProto by @vrv. - Rename LocalSession to DirectSession, since local was a bad name for it. - Enable tf.nn.moments() to work with tensors of unknown shape by @mrry. GITHUB_ISSUE: 139 - Changes for Android build by Andrew. Base CL: 107645181
* TensorFlow: Initial commit of TensorFlow library.Gravatar Manjunath Kudlur2015-11-06
TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108