Closed la122 closed 3 years ago
I managed to load a checkpoint after rebuilding the graph with the placeholders and using the following code:
with tf.Session(config=config) as sess:
saver = tf.train.Saver()
saver.restore(sess, 'experiments/config/model_checkpoints/epoch_XX')
...
Hello, thank you for publishing your work!
is it possible to load a checkpoint and use it for predictions after training? I'm trying something like:
But the results are exactly the same as without restoring the checkpoint.
Best regards