Tensorflow - which is the real checkpoint file?

Viewed 3748
1 Answers
  • model.ckpt.meta : File to store graph information
  • model.ckpt.index : File to store index of variables
  • model.ckpt.data0000-of-0001 : File to store value of variables

All three files are real checkpoint files. When you restore the model using tf.train.Saver.restore, parameter "save_path" should be "~model.ckpt". Your error probably occurred because of the invalid save_path. Check if three files(.meta, .index, .data~) in save_path(relative path or absolute path).

Related