本文整理汇总了Python中tensorflow.python.framework.meta_graph.add_collection_def方法的典型用法代码示例。如果您正苦于以下问题:Python meta_graph.add_collection_def方法的具体用法?Python meta_graph.add_collection_def怎么用?Python meta_graph.add_collection_def使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tensorflow.python.framework.meta_graph
的用法示例。
在下文中一共展示了meta_graph.add_collection_def方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _add_collection_def
# 需要导入模块: from tensorflow.python.framework import meta_graph [as 别名]
# 或者: from tensorflow.python.framework.meta_graph import add_collection_def [as 别名]
def _add_collection_def(meta_graph_def, key, export_scope=None):
"""Adds a collection to MetaGraphDef protocol buffer.
Args:
meta_graph_def: MetaGraphDef protocol buffer.
key: One of the GraphKeys or user-defined string.
export_scope: Optional `string`. Name scope to remove.
"""
meta_graph.add_collection_def(meta_graph_def, key,
export_scope=export_scope)