aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples
Commit message (Collapse)AuthorAge
* [tf.data] Deprecate `tf.contrib.data` and introduce `tf.data.experimental` ↵Gravatar Derek Murray2018-10-01
| | | | | | | | | | | | | | | | | | | | to replace it. This change prepares `tf.data` for TensorFlow 2.0, where `tf.contrib` will no longer exist. It retains the pre-existing endpoints in `tf.contrib.data` with deprecation warnings. Note there are some exceptions to the move: * Deprecated symbols in `tf.contrib.data` have not been moved to `tf.data.experimental`, because replacements already exist. * `tf.contrib.data.LMDBDataset` has not been moved, because we plan to move it to a SIG-maintained repository. * `tf.contrib.data.assert_element_shape()` has not yet been moved, because it depends on functionality in `tf.contrib`, and it will move in a later change. * `tf.contrib.data.AUTOTUNE` has not yet been moved, because we have not yet determined how to `tf_export()` a Python integer. * The stats-related API endpoints have not yet appeared in a released version of TensorFlow, so these are moved to `tf.data.experimental` without retaining an endpoint in `tf.contrib.data`. In addition, this change includes some build rule and ApiDef refactoring: * Some of the "//third_party/tensorflow/python:training" dependencies had to be split in order to avoid a circular dependency. * The `tf.contrib.stateless` ops now have a private core library for the generated wrappers (and accordingly are hidden in their ApiDef) so that `tf.data.experimental.sample_from_datasets()` can depend on them. PiperOrigin-RevId: 215304249
* InternalGravatar A. Unique TensorFlower2018-09-28
| | | | PiperOrigin-RevId: 214895147
* Merge pull request #22416 from yongtang:09182018-squeeze_dimsGravatar TensorFlower Gardener2018-09-24
|\ | | | | | | PiperOrigin-RevId: 214323563
* | Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-24
| | | | | | | | | | | | | | | | 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: 214300210
* | Add build rules for mnist_softmax_xla.py so it can work internally.Gravatar Guangda Lai2018-09-19
| | | | | | | | PiperOrigin-RevId: 213637804
| * Fix warning in text_classification_character_cnn.pyGravatar Yong Tang2018-09-19
|/ | | | Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* 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
* Move AutoGraph to core. This CL moves the entirety of the code base, keeping ↵Gravatar Dan Moldovan2018-09-11
| | | | | | the frontend autograph module in contrib for backward compatibility. Certain files, like notebooks and the readme file may be referenced from the outside, so a copy of those is kept as well. In addition, the notebooks subdirectory of examples is also kept in contrib because the extension the build file relies on is not available in the PIP package. PiperOrigin-RevId: 212543067
* Remove note in TF for Android build instructions about Bazel not supporting ↵Gravatar A. Unique TensorFlower2018-09-10
| | | | | | NDK 15/16. PiperOrigin-RevId: 212292791
* Fix typo in low latency svdf model.Gravatar A. Unique TensorFlower2018-08-30
| | | | PiperOrigin-RevId: 210934704
* Replaced calls to tensorflow::StringPiece::ToString with string conversions.Gravatar A. Unique TensorFlower2018-08-22
| | | | | | | | That is, instances of sp.ToString() are replaced with string(sp). This will allow tensorflow::StringPiece::ToString to be removed, which is necessary before it can be replaced with absl::string_view. PiperOrigin-RevId: 209806694
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-08-21
| | | | | | | | 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: 209700634
* fix C++ header guards.Gravatar A. Unique TensorFlower2018-08-21
| | | | PiperOrigin-RevId: 209679086
* Fix include guardsGravatar A. Unique TensorFlower2018-08-20
| | | | | | | END_PUBLIC RELNOTES: n/a PiperOrigin-RevId: 209451288
* Merge pull request #21521 from Androbin:selectGravatar TensorFlower Gardener2018-08-10
|\ | | | | | | PiperOrigin-RevId: 208281031
* \ Merge pull request #14842 from daj:gitignoreGravatar TensorFlower Gardener2018-08-10
|\ \ | | | | | | | | | PiperOrigin-RevId: 208262649
| | * Use a direct link to the optimization header.Gravatar Mark Daoust2018-08-09
| | |
| | * [Docs] Update iOS selective registration docsGravatar Robin Richtsfeld2018-08-09
| |/ |/|
* | Merge pull request #20432 from daj:fix-broken-linksGravatar TensorFlower Gardener2018-08-08
|\ \ | | | | | | | | | PiperOrigin-RevId: 207986608
* | | Add support for forcing ops to devicesGravatar Gautam Vasudevan2018-07-30
| | | | | | | | | | | | PiperOrigin-RevId: 206692372
* | | Merge pull request #15469 from thisisrandy:masterGravatar TensorFlower Gardener2018-07-20
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 205461271
* | | | Add back in stddev parameter inadvertently dropped from conv model.Gravatar A. Unique TensorFlower2018-07-18
| | | | | | | | | | | | | | | | | | | | | | | | Use create_eval_graph() for graph to be frozen. PiperOrigin-RevId: 205093459
* | | | Merge pull request #20672 from TShapinsky:documentation_fixGravatar TensorFlower Gardener2018-07-17
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 204992854
* | | | | Add support for microcontroller-scale audio speech modelsGravatar Pete Warden2018-07-11
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 204204001
| * | | | Fix incorrect documentationGravatar TShapinsky2018-07-10
|/ / / /
| * | | lint fixGravatar Mark Daoust2018-07-06
| | | |
| | * | Fix broken download linksGravatar Dan J2018-06-29
| |/ / |/| |
* | | Rename programmers_guide/ directory to guide/.Gravatar Billy Lamberta2018-06-22
| | | | | | | | | | | | | | | | | | Update references in source files and docs in tensorflow and related projects. PiperOrigin-RevId: 201766994
* | | Merge changes from github.Gravatar Akshay Modi2018-06-18
| | | | | | | | | | | | PiperOrigin-RevId: 201110240
* | | Migrate to android skylark rulesGravatar A. Unique TensorFlower2018-06-18
| | | | | | | | | | | | PiperOrigin-RevId: 201052263
* | | Automated g4 rollback of changelist 201011811Gravatar Akshay Modi2018-06-18
| | | | | | | | | | | | PiperOrigin-RevId: 201033171
* | | Merge changes from github.Gravatar Akshay Modi2018-06-18
| | | | | | | | | | | | PiperOrigin-RevId: 201011811
* | | fully_connected_feed_test timing out, increase its size.Gravatar A. Unique TensorFlower2018-06-13
| | | | | | | | | | | | PiperOrigin-RevId: 200495744
* | | Merge changes from github.Gravatar Yifei Feng2018-05-24
| | | | | | | | | | | | | | | | | | | | | Revert #18413. Too many internal test failures due to the name scope change caused by this change. Revert #18192. Cannot use re2::StringPiece internally. Need alternative for set call. Will pull and clean this up in a separate change. PiperOrigin-RevId: 197991247
* | | Automated g4 rollback of changelist 197741984Gravatar Anna R2018-05-23
| | | | | | | | | | | | PiperOrigin-RevId: 197769770
* | | PiperOrigin-RevId: 197741984Gravatar A. Unique TensorFlower2018-05-23
| | |
* | | Automated g4 rollback of changelist 197026249Gravatar Allen Lavoie2018-05-17
| | | | | | | | | | | | PiperOrigin-RevId: 197049255
* | | Internal changeGravatar A. Unique TensorFlower2018-05-17
| | | | | | | | | | | | PiperOrigin-RevId: 197026249
* | | internal changeGravatar A. Unique TensorFlower2018-05-16
| | | | | | | | | | | | PiperOrigin-RevId: 196813574
* | | Updated speech commands example to use new datasetGravatar Pete Warden2018-05-14
| | | | | | | | | | | | PiperOrigin-RevId: 196557132
* | | Merge changes from github.Gravatar Patrick Nguyen2018-05-01
| | | | | | | | | | | | PiperOrigin-RevId: 194997009
* | | Merge changes from github.Gravatar Yifei Feng2018-04-23
| | | | | | | | | | | | PiperOrigin-RevId: 194031845
* | | Internal-only change.Gravatar Justin Lebar2018-04-18
| | | | | | | | | | | | PiperOrigin-RevId: 193409980
* | | Fixed error where no background audio samples were being used when testing ↵Gravatar Pete Warden2018-04-12
| | | | | | | | | | | | | | | | | | no-speech clips PiperOrigin-RevId: 192644704
* | | Replace examples/image_retraining by a pointer to TensorFlow Hub.Gravatar A. Unique TensorFlower2018-04-11
| | | | | | | | | | | | | | | | | | | | | https://github.com/tensorflow/hub/tree/master/examples/image_retraining has the same tool, upgraded to use TensorFlow Hub instead of raw graph defs. PiperOrigin-RevId: 192502469
* | | Remove manifest_merger from tensorflow_demo. This is an internal-only attributeGravatar A. Unique TensorFlower2018-04-10
| | | | | | | | | | | | | | | | | | that is being removed from bazel. PiperOrigin-RevId: 192298746
* | | Fix final eval bottleneck creation to work in cases where it isn't cached ↵Gravatar Suharsh Sivakumar2018-04-05
| | | | | | | | | | | | | | | | | | | | | | | | already. Fixes #17423 PiperOrigin-RevId: 191773001
* | | Replaced calls to deprecated tensorflow::StringPiece methods with theirGravatar A. Unique TensorFlower2018-04-02
| | | | | | | | | | | | | | | | | | | | | | | | tensorflow::str_util equivalents. This will allow the deprecated methods to be removed. PiperOrigin-RevId: 191350894
* | | 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