Skip to content

Instantly share code, notes, and snippets.

View nitinmlvya's full-sized avatar

Nitin Solanki nitinmlvya

  • Maharashtra, India
View GitHub Profile
@nitinmlvya
nitinmlvya / export_tf_model.py
Created June 24, 2020 09:11 — forked from zhanwenchen/export_tf_model.py
Minimal code to load a trained TensorFlow model from a checkpoint and export it with SavedModelBuilder
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')