দস্তাবেজগুলি পড়ে , আমি একটি মডেল সংরক্ষণ করেছি 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 টি ফাইল কেন?