-
-
Save nitinmlvya/27e33ff6465c7f8c40de818fbc37bcb6 to your computer and use it in GitHub Desktop.
Minimal code to load a trained TensorFlow model from a checkpoint and export it with SavedModelBuilder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import tensorflow as tf | |
trained_checkpoint_prefix = 'checkpoints/dev' | |
export_dir = os.path.join('models', '0') # IMPORTANT: each model folder must be named '0', '1', ... Otherwise it will fail! | |
loaded_graph = tf.Graph() | |
with tf.Session(graph=loaded_graph) as sess: | |
# Restore from checkpoint | |
loader = tf.train.import_meta_graph(trained_checkpoint_prefix + '.meta') | |
loader.restore(sess, trained_checkpoint_prefix) | |
# Export checkpoint to SavedModel | |
builder = tf.saved_model.builder.SavedModelBuilder(export_dir) | |
builder.add_meta_graph_and_variables(sess, | |
[tf.saved_model.tag_constants.TRAINING, tf.saved_model.tag_constants.SERVING], | |
strip_default_attrs=True) | |
builder.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment