aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/session_bundle
Commit message (Collapse)AuthorAge
...
* Fix code that ignores tensorflow::Status.Gravatar Peter Hawkins2017-02-13
| | | | | Add a new tensorflow::Status::IgnoreError() method to mark call sites where a Status has been intentionally ignored. Change: 147402405
* Add functionality to populate dtype of TensorInfos in up-converted ↵Gravatar Sukriti Ramesh2017-02-09
| | | | | | SessionBundles. Change: 147054398
* Fix python3 failures caused by change 145590579.Gravatar Gunhan Gulsoy2017-01-30
| | | | Change: 146063650
* Add additional named signatures to test half_plus_two model.Gravatar Kiril Gorovoy2017-01-27
| | | | Change: 145801253
* Fixes for python 3 tests:Gravatar Gunhan Gulsoy2017-01-23
| | | | | | | - string/bytes compatibility in bundle_sum_py_test and graph_transforms - Fix http_test (tensorboard) by renaming http.py to http_util.py. - Fix some linter errors. Change: 145375395
* Don't throw error on generic default signature, rather print an error. This isGravatar A. Unique TensorFlower2017-01-19
| | | | | in line with C++ shim. Change: 145045294
* Automated rollback of change 141461172Gravatar Li Lao2017-01-19
| | | | Change: 145017462
* Bug fix in SavedModel shim's named signature up-conversion for ↵Gravatar Kiril Gorovoy2017-01-13
| | | | | | classification signatures, where the value was not actually being set. Change: 144505027
* Add bundle-shim log messages.Gravatar Sukriti Ramesh2017-01-09
| | | | Change: 144035023
* More flags->argparse conversions.Gravatar Vijay Vasudevan2017-01-09
| | | | Change: 144034332
* Remove a few ununsed functions.Gravatar Li Lao2017-01-04
| | | | Change: 143612122
* Remove so many more hourglass importsGravatar Justine Tunney2016-12-29
| | | | Change: 143230429
* Add a log message to make SavedModelBundle signature up-conversion less ↵Gravatar Christopher Olston2016-12-27
| | | | | | surprising if invoked via the batching signature code. Change: 143045795
* Introduce a shim function wrapping checks for possible SessionBundle orGravatar Sukriti Ramesh2016-12-22
| | | | | SavedModel export formats. Change: 142803996
* Change remaining tf.mul -> tf.multiply, tf.neg -> tf.negative, and tf.sub -> ↵Gravatar Andrew Selle2016-12-16
| | | | | | | tf.subtract tf.negative, tf.multiply, tf.subtract are the new names Change: 142287241
* Use log warnings instead of errors for up-converting generic signatures.Gravatar Sukriti Ramesh2016-12-14
| | | | Change: 142082843
* Remove hourglass imports from kernel_testsGravatar Justine Tunney2016-12-14
| | | | Change: 142080137
* Replace SessionBundle half_plus_two genrule with export golden files.Gravatar Li Lao2016-12-13
| | | | Change: 141896093
* Replace saved_model_half_plus_two_data genrule with SavedModel golden files.Gravatar Li Lao2016-12-12
| | | | Change: 141847925
* Merge changes from github.Gravatar Andrew Harp2016-12-08
| | | | | | | | Additionally: - change single quotes to double quotes to make path rewriting easier - guard windows lib reference with PLATFORM_WINDOWS - fixed failing kmeans test Change: 141515942
* Disable all tests depending on *half_plus_two* genrules.Gravatar Gunhan Gulsoy2016-12-08
| | | | Change: 141461172
* Extend bundle-shim to up-convert all named-signatures.Gravatar Sukriti Ramesh2016-12-07
| | | | Change: 141339917
* Implement bundle_shim.py which allows a system to load both legacy session ↵Gravatar A. Unique TensorFlower2016-12-06
| | | | | | | bundle and SavedModel bundle. This is intended to be used during migration to SavedModel format. Change: 141257689
* Support to read tensorflow checkpoint files in V2 in session bundle.Gravatar A. Unique TensorFlower2016-12-06
| | | | | | | | | 1. Use *.index as the indicator to determine the checkpoint format version. 2. Restore session from the variable files following v2 convention, i.e no file pattern is used. 3. Add one test to generate checkpoint file in v2 and test that session bundle can restore session from it. Change: 141127100
* Have ConvertSignaturesToSignatureDef() handle the case in which there are ↵Gravatar Christopher Olston2016-11-30
| | | | | | | both named and default signatures. Also, add some ASSERTs to avoid segfaulting when a test fails. Change: 140612556
* Update saved-model half plus two with a Predict signature def.Gravatar Sukriti Ramesh2016-11-30
| | | | Change: 140609389
* Fix error in metric definition in session-bundle.Gravatar Vinu Rajashekhar2016-11-29
| | | | | - Description should come before the labels. Change: 140516812
* Add flags for output dir in saved_model_half_plus_two.py. Remove static ↵Gravatar Li Lao2016-11-28
| | | | | | Saved Model of half plus two and its dependency. Change: 140441828
* Only add tensors to a signature that have non-empty names in the ↵Gravatar Kiril Gorovoy2016-11-17
| | | | | | session_bundle shim. Change: 139531284
* Change visibility of the SavedModel shim to public.Gravatar Kiril Gorovoy2016-11-16
| | | | | Delete bundle_shim_constants.h and use the new constant in signature_constants.h instead. Change: 139399882
* Fix LoadSavedModelFromLegacySessionBundlePath() to return error if ↵Gravatar Li Lao2016-11-16
| | | | | | LoadSessionBundleFromPathUsingRunOptions() fails. Change: 139348875
* Clarifies the comments about loading V2 formats in LoadSessionBundleFromPath.Gravatar Vinu Rajashekhar2016-11-10
| | | | Change: 138819493
* Add a unit-test to check that multiple signatures objects in ContainerDef isGravatar A. Unique TensorFlower2016-11-09
| | | | | not a valid configuration. Change: 138676614
* Change FileExists to return tensorflow::Status.Gravatar Jonathan Hseu2016-11-04
| | | | | | | | | | | Also done separately by @llhe at github.com/tensorflow/tensorflow/pull/5370. We needed to do this change internally to fix all callers. Motivation: The existing FileExists interface doesn't allow callers to distinguish between file not found vs. filesystem errors. Semantics changes: - gfile.Exists in Python now throws an exception for filesystem errors. It continues to return true/false if it can accurately determine whether a file exists. - RecursivelyCreateDir now returns errors for filesystem errors when calling FileExists. Change: 138224013
* Replace usages initialize_all_variables -> global_variables_initializerGravatar Illia Polosukhin2016-11-03
| | | | Change: 138128703
* Merge changes from github.Gravatar Patrick Nguyen2016-10-20
| | | | Change: 136750267
* Add tag constants for SavedModel cc.Gravatar Sukriti Ramesh2016-10-18
| | | | Change: 136521066
* Switch to Saver v2 checkpoint in SavedModel.Gravatar Sukriti Ramesh2016-10-18
| | | | Change: 136486667
* TensorFlow: lib header cleanupGravatar Vijay Vasudevan2016-10-17
| | | | | | | | | - Move protobuf.h functions that are not needed publicly into protobuf_internal, update callers. - Move inputbuffer.h internal, make higher-level file objects public. Change: 136365329
* Change for internal compatibility.Gravatar Zongheng Yang2016-10-14
|
* Make the session_bundle and signature libraries depend on their lite version.Gravatar A. Unique TensorFlower2016-10-12
| | | | | | This avoids ODR violations that were possible before as we included a cc file in 2 different libraries. Change: 135934905
* session_bundle: do not hard-code V2 checkpoint's extension.Gravatar Zongheng Yang2016-10-12
| | | | Change: 135925430
* Decrease verbosity of failed SessionBundle loads toGravatar Noah Fiedel2016-10-11
| | | | | include the export directory instead of the full MetaGraph. Change: 135833001
* Fix the third_party/tensorflow/contrib/session_bundle/example:half_plus_two ↵Gravatar A. Unique TensorFlower2016-10-11
| | | | | | | | | genrule to correctly delete /tmp/half_plus_two_ckpt_v2 instead of /tmp/half_plus_two_v2. This bug causes the genrule to fail when run multiple times. TESTED: - opensource_build - unit tests Change: 135828145
* Add support to read checkpoint v2 exported models from session_bundle.Gravatar A. Unique TensorFlower2016-10-10
| | | | | | | TESTED: - passed opensource_build - passed unit tests Change: 135750828
* Change metrics to accumulate load failures and successes in a single variableGravatar A. Unique TensorFlower2016-10-10
| | | | | with labels. Change: 135717281
* Add signature constants for SavedModel in cc.Gravatar Sukriti Ramesh2016-10-10
| | | | Change: 135708424
* Merge changes from github.Gravatar A. Unique TensorFlower2016-10-10
| | | | Change: 135698415
* Minor cleanup.Gravatar Sukriti Ramesh2016-10-07
| | | | Change: 135495434
* Add shim that can read SavedModel bundle and session bundle.Gravatar Sukriti Ramesh2016-10-07
| | | | Change: 135484749