aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/models/image/mnist/convolutional.py
Commit message (Collapse)AuthorAge
* Moved tensorflow/models to models/tutorials and replaced all tutorial ↵Gravatar Neal Wu2016-12-08
| | | | | | references to tensorflow/models Change: 141503531
* Merge changes from github.Gravatar Vijay Vasudevan2016-11-03
| | | | Change: 138143557
* Replace usages initialize_all_variables -> global_variables_initializerGravatar Illia Polosukhin2016-11-03
| | | | Change: 138128703
* Parse argparse flags, then pass unparsed flags through to argv via tf.app.run()Gravatar Vijay Vasudevan2016-10-27
| | | | | to allow argparse + tf.flags to play nicely with each other. Change: 137405161
* Replace tf.flags usage with argparse everywhereGravatar A. Unique TensorFlower2016-10-10
| | | | Change: 135688498
* Renaming size to Size to keep it consistent with what it used to be.Gravatar Rohan Jain2016-09-12
| | | | Change: 132907757
* Merge changes from github.Gravatar Martin Wicke2016-07-25
| | | | Change: 128401884
* Added an option to train the example mnist model using 16 bit floatsGravatar Benoit Steiner2016-06-06
| | | | Change: 124198415
* Update copyright for 3p/tf.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123901292
* Minor typo fix.Gravatar A. Unique TensorFlower2016-03-21
| | | | Change: 117611495
* Fix dependencies bugsGravatar Eugene Brevdo2016-03-11
| | | | Change: 116925769
* Correct minor typo in tutorial comment.Gravatar A. Unique TensorFlower2016-03-08
| | | | Change: 116622681
* Get rid of some import cruft.Gravatar Josh Levenberg2016-02-10
| | | | Change: 114374558
* Make the gfile package available when importing tensorflow.Gravatar A. Unique TensorFlower2016-02-09
| | | | | | Update programs that were importing both 'tensorflow' and 'gfile' to use 'gfile' from the tensorflow import. Change: 114249943
* Convert convolutional.py example to use new ↵Gravatar David G. Andersen2016-02-05
| | | | | | sparse_softmax_cross_entropy_with_logits op Change: 113997793
* Make convolutional.py easier to run on GPUs with less RAM.Gravatar Vincent Vanhoucke2016-01-07
| | | | | | A few cosmetic fixes. Test error was already 0.7%, not 0.8%. https://github.com/tensorflow/tensorflow/issues/609 Change: 111624237
* some linting fixes to changes brought in from the public.Gravatar Vijay Vasudevan2016-01-07
| | | | Change: 111621725
* Print mnist convolutional per-step timesGravatar Yaroslav Bulatov2016-01-06
| | | | Change: 111468076
* 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 afternoon.Gravatar Vijay Vasudevan2015-11-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - Ptrdiff -> DenseIndex change by @jiayq - Fix to scoping the logging in logging.py by @dga - Improvement to Conv2DBackpropFilter on CPU by Andy - Remove lookup table wrappers for the time being (wasn't in our public API yet) by Yukata - Add a check similar to numpy to make sure the user isn't in the tensorflow src directory by @vrv - More changes for python 3 compat by @girving - Make dropout preserve shape info from input (@mrry) - Significant speed improvements by @zheng-xq to BFC allocator to bring on par (CPU overhead-wise) to the region allocator. Make BFC allocator the default now that it's working well for a variety of models. - Fix a bunch of typos reported by users (@vrv) - Enable concat for bfloat16 on GPU by Ashish. Base CL: 107733123
* 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 steps towards python3 support, some documentationGravatar Vijay Vasudevan2015-11-09
| | | | | | | | | | bug fixes -- reindents to 2 for some of the files to match our internal requirements. Thanks to Martin Andrews for the basic_usage.md suggested fix via Gerrit. Base CL: 107394029
* 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