2

I've been trying to use tensorflow.js, but I need the model in the SavedModel format. So far, I only have the Frozen Graph, as I used Tensorflow for Poets Codelab.

How can I convert the Frozen Graph into SavedModel?

I've been using the latest Python version and Tensorflow 1.8

Eduardo Trunci
  • 165
  • 1
  • 8

1 Answers1

1

The SavedModel is really just a wrapper around a frozen graph that provides assets and the serving signature. For a code implementation, see this answer.