TensorFlow 0.12 Model Files
问题 I train a model and save it using: saver = tf.train.Saver() saver.save(session, './my_model_name') Besides the checkpoint file, which simply contains pointers to the most recent checkpoints of the model, this creates the following 3 files in the current path: my_model_name.meta my_model_name.index my_model_name.data-00000-of-00001 I wonder what each of these files contains. I'd like to load this model in C++ and run the inference. The label_image example loads the model from a single .bp file