-
Notifications
You must be signed in to change notification settings - Fork 461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with tensorflow serving #45
Comments
Which model are you referring to (v1 or v2)? In my experience using a frozen model from different TensorFlow models can be challenging. Its better to export using your own froze graph from checkpoints |
Hi Victordibia, I am using ssdlitemobilenetv2 model checkpoint. Below I mentioned the code for converting the model checkpoint to serving. But empty variable folder was generated. import tensorflow as tf SAVE_PATH = D:/handtracking-master/model-checkpoint/ssdlitemobilenetv2/' checkpoint = tf.train.latest_checkpoint(SAVE_PATH) tf.reset_default_graph() with tf.Session() as sess:
|
when I was creating the tensorflow serving model with frozen PB. I am getting an empty variable folder. could you share the un-frozen graph file?
Please help me on this issue.
The text was updated successfully, but these errors were encountered: