Прочитавши документи , я зберегла модель 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 файли?