本文整理汇总了Python中export_inference_graph.main方法的典型用法代码示例。如果您正苦于以下问题:Python export_inference_graph.main方法的具体用法?Python export_inference_graph.main怎么用?Python export_inference_graph.main使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类export_inference_graph
的用法示例。
在下文中一共展示了export_inference_graph.main方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testExportInferenceGraph
# 需要导入模块: import export_inference_graph [as 别名]
# 或者: from export_inference_graph import main [as 别名]
def testExportInferenceGraph(self):
tmpdir = self.get_temp_dir()
output_file = os.path.join(tmpdir, 'inception_v3.pb')
flags = tf.app.flags.FLAGS
flags.output_file = output_file
flags.model_name = 'inception_v3'
flags.dataset_dir = tmpdir
export_inference_graph.main(None)
self.assertTrue(gfile.Exists(output_file))