What is the difference between saving a model with
- using the exporter as specified in tensorflow application:
eg:
from tensorflow.contrib.session_bundle import exporter
- Using tf.train.write_graph () and tf.train.Saver () directly:
eg:
with sess.graph.as_default(): saver = tf.train.Saver() saver.save(sess, path, meta_graph_suffix='meta', write_meta_graph=True)
The question is a continuation of Saving TensorFlow in / loading a graph from a file
source share