Tensorflow 2.0 : frozen graph support
The freeze graph APIs - freeze_graph.py
and converter_variables_to_constants
- will not be supported in TensorFlow 2.0.
In 2.0, the primary export format is SavedModels so APIs are built to directly support SavedModels.
Inference on existing frozen graphs can be run using the v1.compat
path.
Now, freeze_graph
is officially gone with TensorFlow 2.0 stable release.
Check Here.