문서 를 읽은 후에 모델을 저장했습니다 TensorFlow
. 여기에 데모 코드가 있습니다.
# Create some variables.
v1 = tf.Variable(..., name="v1")
v2 = tf.Variable(..., name="v2")
...
# Add an op to initialize the variables.
init_op = tf.global_variables_initializer()
# Add ops to save and restore all the variables.
saver = tf.train.Saver()
# Later, launch the model, initialize the variables, do some work, save the
# variables to disk.
with tf.Session() as sess:
sess.run(init_op)
# Do some work with the model.
..
# Save the variables to disk.
save_path = saver.save(sess, "/tmp/model.ckpt")
print("Model saved in file: %s" % save_path)
하지만 그 후 3 개의 파일이 있다는 것을 알게되었습니다.
model.ckpt.data-00000-of-00001
model.ckpt.index
model.ckpt.meta
그리고 model.ckpt
그런 파일이 없기 때문에 파일을 복원하여 모델을 복원 할 수 없습니다 . 내 코드는 다음과 같습니다.
with tf.Session() as sess:
# Restore variables from disk.
saver.restore(sess, "/tmp/model.ckpt")
그렇다면 왜 3 개의 파일이 있습니까?