aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/__init__.py
Commit message (Collapse)AuthorAge
* fix cmake python 2.7 test import failGravatar fo402252018-07-11
|
* Moving generated API to tensorflow/.Gravatar Anna R2018-05-31
| | | | PiperOrigin-RevId: 198767512
* Automated g4 rollback of changelist 191360905Gravatar Anna R2018-04-08
| | | | PiperOrigin-RevId: 192065431
* Automated g4 rollback of changelist 191326767Gravatar Anna R2018-04-02
| | | | PiperOrigin-RevId: 191360905
* Switch to the TensorFlow API generation based on ApiDef's and tf_exportGravatar Anna R2018-04-02
| | | | | | decorators. PiperOrigin-RevId: 191326767
* Add pylint check for W0622 redefined-builtin in ci_sanity.sh and fix ↵Gravatar Yifei Feng2018-02-09
| | | | | | existing pylint errors. PiperOrigin-RevId: 185206494
* Generalize LazyLoader for use by ffmpegGravatar Mark Daoust2017-04-19
| | | | | | Add __dir__ method so the docs generator doesn't need to do anything special to activate the loading Change: 153583515
* Remove extra exported symbols.Gravatar Patrick Nguyen2017-03-04
| | | | Change: 149211889
* Merge changes from github.Gravatar Benoit Steiner2016-11-09
| | | | Change: 138675832
* Load the `tf.contrib` module on demand only.Gravatar Derek Murray2016-08-25
| | | | | | | | | | | | | | | This change makes it so that `tf.contrib` and the libraries it contains are not loaded until their first use. The rationale for this change is that `tf.contrib` has a lower code quality than the other `tf.*` libraries, and it frequently breaks users due to undeclared dependencies or other churn. See e.g. https://github.com/tensorflow/tensorflow/issues/2388 for an example of where `import tensorflow as tf` fails due to a breakage in `tf.contrib`. This issue (https://github.com/tensorflow/tensorflow/issues/2154) shows a dependency on a particular version of pandas. Change: 131332657
* Update copyright for 3p/tf.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123901292
* 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