I'm training a CNN in Tensorflow and I save it with the code:
saver = tf.train.Saver()
end of each Epoch I save it using this,
saver.save(sess,Save_Dir)
.
After my CNN has been trained, I want to use it on a test data. I wonder, How I can restore my Trained CNN and How I can see How my trained CNN works on test data that I have. I've searched a lot in this regard, but I didn't find something that I can Learn about the process. Moreover, I do not have any sense about the 4 types of files that the saver generate. (.meta,....). Thank You.