Loading SavedModel is a lot slower than loading a tf.train.Saver checkpoint
I am by no ways an expert in Tensorflow, but if I had to take a guess as to why this is happening, I would say that: tf.train.Saver(), saves a complete meta-graph. Therefore, all the information needed to perform any operations contained in your graph is already there. All tensorflow needs to do to load … Read more