aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/checkpoint_reader.h
Commit message (Collapse)AuthorAge
* fix C++ header guards.Gravatar A. Unique TensorFlower2018-08-21
| | | | PiperOrigin-RevId: 209679086
* Expose data type information in checkpoint reader.Gravatar A. Unique TensorFlower2017-10-05
| | | | PiperOrigin-RevId: 171147196
* Replace owning raw pointers with unique pointersGravatar A. Unique TensorFlower2017-10-05
| | | | PiperOrigin-RevId: 171132628
* Fix typo.Gravatar A. Unique TensorFlower2016-11-22
| | | | Change: 139974629
* checkpoint_reader: fix VarToShapeMap V2 impl.Gravatar Zongheng Yang2016-10-14
| | | | | | This change makes it adhere to the original semantics: all slices of a partitioned tensor are grouped under one entry. Change: 136229541
* TF Checkpoint V2: make CheckpointReader work with the V2 format.Gravatar Zongheng Yang2016-09-28
| | | | | | | | | | | | | If the same checkpoint prefix identifies both a V1 checkpoint and a V2 checkpoint on disk, the V2 version takes priority -- which matches the same behavior as the RestoreV2 op. Typical usage: $ bazel run tensorflow/python/tools:inspect_checkpoint -- --file_name=<V2 ckpt prefix> Other changes: add DebugString() and Contains() to BundleReader. Change: 134543092
* Move C API files (and related files used by SWIG wrappers)Gravatar A. Unique TensorFlower2016-07-29
to new tensorflow/c directory. Change: 128855990