@@ -12,7 +12,7 @@ Tensorpack is a training interface based on TensorFlow.
It's Yet Another TF wrapper, but different in:
1. Focus on __training speed__.
+ Speed comes for free with tensorpack -- it uses TensorFlow in the __correct way__ with no extra overhead.
+ Speed comes for free with tensorpack -- it uses TensorFlow in the __efficient way__ with no extra overhead.
On various CNNs, it runs 1.5~1.7x faster than the equivalent Keras code.
+ Data-parallel multi-GPU training is off-the-shelf to use. It runs as fast as Google's [official benchmark](https://www.tensorflow.org/performance/benchmarks).
One checkpoint typically includes a `.data-xxxxx` file and a `.index` file.
Both are necessary.
To inspect a checkpoint, the easiest tool is `tf.train.NewCheckpointReader`.
For example, [scripts/ls-checkpoint.py](../scripts/ls-checkpoint.py)
uses it to print all variables and their shapes in a checkpoint.
`tf.train.NewCheckpointReader` is the best tool to parse TensorFlow checkpoint.
We have two example scripts to demo its usage, but read [TF docs](https://www.tensorflow.org/api_docs/python/tf/train/NewCheckpointReader) for details.