This file contains hidden or 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
""" | |
References: | |
https://github.com/tensorflow/models/blob/master/object_detection/g3doc/exporting_models.md | |
https://github.com/tensorflow/models/issues/1988 | |
Unfortunately, the tutorial for saving a model for inference "freezes" the | |
variables in place and makes them unservable by tensorflow_serving. | |
export_inference_graph.py exports an empty "variables" directory, which needs to | |
be populated. |