aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/saved_model
Commit message (Collapse)AuthorAge
* Update BUILD files so that Estimator code depends on TF thru tf_no_contrib.Gravatar Michael Case2018-09-25
| | | | PiperOrigin-RevId: 214541221
* Replace self.test_session(graph=<an object not None>) with ↵Gravatar A. Unique TensorFlower2018-09-24
| | | | | | self.session(graph=...) as it's the same semantic. PiperOrigin-RevId: 214286845
* Remove tf.contrib.get_signature_def_by_key. This can be replaced by ↵Gravatar A. Unique TensorFlower2018-09-13
| | | | | | meta_graph_def.signature_def[signature_def_key] PiperOrigin-RevId: 212873314
* disable tsan for failing testGravatar Olivia Nordquist2018-09-11
| | | | PiperOrigin-RevId: 212467900
* 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
* Add IsValidSignature method to signature_def_utilsGravatar A. Unique TensorFlower2018-09-04
| | | | PiperOrigin-RevId: 211498364
* Roll forward of commit 069f808e5c0462819bcd6c73c75491b00cdd42c2 (rolling ↵Gravatar Katherine Wu2018-08-31
| | | | | | | | | | | | back rollback cl/210656847). Fixing reference to _get_export_outputs_for_spec in TFMA (This function was refactored out, so the string has been removed from the list of methods that are copied from core Estimator). *** Original change description *** Automated rollback of commit 069f808e5c0462819bcd6c73c75491b00cdd42c2 PiperOrigin-RevId: 211122893
* Automated rollback of commit 069f808e5c0462819bcd6c73c75491b00cdd42c2Gravatar Katherine Wu2018-08-28
| | | | PiperOrigin-RevId: 210656847
* Export Keras model to SavedModel.Gravatar Katherine Wu2018-08-28
| | | | PiperOrigin-RevId: 210648154
* Move from deprecated self.test_session() to self.session() when a graph is set.Gravatar A. Unique TensorFlower2018-08-21
| | | | | | self.test_session() has been deprecated in cl/208545396 as its behavior confuses readers of the test. Moving to self.session() instead. PiperOrigin-RevId: 209696110
* Re-enable some tests on WindowsGravatar A. Unique TensorFlower2018-08-14
| | | | PiperOrigin-RevId: 208695032
* Create a save_model and load_model util to support saving keras.Model ↵Gravatar A. Unique TensorFlower2018-07-27
| | | | | | to/from checkpoint. Currently, the model topology is still loaded from json (placed under saved_model/assets). Later, we will load from saved_model.pb. PiperOrigin-RevId: 206412614
* Fixing dependencies.Gravatar Nupur Garg2018-04-11
| | | | PiperOrigin-RevId: 192461382
* Windows: Enable tensorflow/contrib in Bazel build (Second try)Gravatar A. Unique TensorFlower2018-04-02
| | | | | | This reverts commit 4e108ef30d7cd7ae5e1c550ec5ae27e79b8c6e39. PiperOrigin-RevId: 191391075
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Automated g4 rollback of changelist 189231636Gravatar A. Unique TensorFlower2018-03-15
| | | | PiperOrigin-RevId: 189258641
* Merge changes from github.Gravatar Jacques Pienaar2018-03-15
| | | | PiperOrigin-RevId: 189231636
* Remove THIRD_PARTY_ from #include guardsGravatar Sanjoy Das2018-01-24
| | | | | | They don't make sense in the open source repository. PiperOrigin-RevId: 183140889
* Migrate SavedModel simple save functionality from contrib toGravatar Sukriti Ramesh2017-12-19
| | | | | | tensorflow/python/saved_model. PiperOrigin-RevId: 179599527
* Add tpu saved model tags. No cpu tag is added because cpu is assumed to be ↵Gravatar A. Unique TensorFlower2017-11-21
| | | | | | the implicit device. PiperOrigin-RevId: 176544698
* BUILD cleanup in contrib/...Gravatar A. Unique TensorFlower2017-10-30
| | | | PiperOrigin-RevId: 173889798
* Add more validation of serving signatures, both at creation and post hoc.Gravatar David Soergel2017-09-28
| | | | PiperOrigin-RevId: 170376578
* Adds tf.contrib.nn.scaled_softplus(x, alpha) = alpha * softplus(x/alpha). ↵Gravatar A. Unique TensorFlower2017-09-28
| | | | | | This can be thought of as a smoothed version of a ReLU. On Imagenet, alpha=0.3 gives 0.6-1% improvement in validation accuracy compared to ReLU, by reducing the generalization gap. PiperOrigin-RevId: 170376244
* Add more validation of serving signatures, both at creation and post hoc.Gravatar David Soergel2017-09-28
| | | | PiperOrigin-RevId: 170376578
* Remove RTLD_GLOBAL when loading pywrap_tensorflowGravatar Allen Lavoie2017-09-21
| | | | | | | | | | | | | | Splits out a shared object (//tensorflow/libtensorflow_framework.so) with core TensorFlow functionality but neither ops nor kernels. This object does include registries for ops, kernels, filesystems, etc. The expectation is that shared objects containing custom ops will have a runtime dependency on this framework shared object: TensorFlow will load the custom op shared object, and the custom op shared object will use the symbols from the framework shared object to register its ops/kernels/etc. rather than (as before this change) relying on those symbols being in the global symbol table. In this mode, TensorFlow artifacts (_pywrap_tensorflow.so for Python, libtensorflow.so for the C API; currently excluding Android artifacts) will depend on the framework shared object, which will be packaged with the Python pip package and other language distributions. This means that custom ops targeting the framework shared object will work in any language (C++, Java, Go; previously custom ops in these languages required custom Bazel builds). Adds a config option which reproduces the old behavior (--config=monolithic), which for Python means building a monolithic pywrap_tensorflow shared object and loading its symbols into the global symbol table (with RTLD_GLOBAL). As before, there will be no extra-Bazel custom op support for other languages when compiling in this mode. Does not change behavior on Windows; the cmake build is still monolithic. Requires using tf_cc_binary, tf_cc_test, and (rarely) tf_cc_shared_object rules to link in the framework shared object when adding new TensorFlow build rules. PiperOrigin-RevId: 169572746
* Automated g4 rollback of changelist 158565259Gravatar Gunhan Gulsoy2017-09-14
| | | | PiperOrigin-RevId: 168650887
* Add a utility function to build and write a SavedModel, setting reasonableGravatar A. Unique TensorFlower2017-07-18
| | | | | | defaults for the required arguments. PiperOrigin-RevId: 162420810
* Add a tag constant, gpu, to present graph with GPU support.Gravatar A. Unique TensorFlower2017-07-07
| | | | PiperOrigin-RevId: 161242660
* Further BUILD cleanupGravatar A. Unique TensorFlower2017-06-21
| | | | PiperOrigin-RevId: 159749869
* Adjust test sizesGravatar A. Unique TensorFlower2017-06-09
| | | | PiperOrigin-RevId: 158565259
* Add tensorflow/contrib/saved_model/cc/saved_model/signature_def_util.h withGravatar A. Unique TensorFlower2017-04-19
| | | | | | utilities to find SignatureDefs and the tensor endpoints referenced by them, using tensorflow::Status to make it easy to forward errors. Change: 153620106
* Add a Reader API for SavedModel in contrib.Gravatar Sukriti Ramesh2017-03-20
| | | | Change: 150717037
* Add utils to get signature def from meta graph def.Gravatar Sukriti Ramesh2017-03-09
Change: 149720034