本文整理汇总了Python中tensorflow.contrib.graph_editor.copy_with_input_replacements方法的典型用法代码示例。如果您正苦于以下问题:Python graph_editor.copy_with_input_replacements方法的具体用法?Python graph_editor.copy_with_input_replacements怎么用?Python graph_editor.copy_with_input_replacements使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tensorflow.contrib.graph_editor
的用法示例。
在下文中一共展示了graph_editor.copy_with_input_replacements方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_copy_with_input_replacements
# 需要导入模块: from tensorflow.contrib import graph_editor [as 别名]
# 或者: from tensorflow.contrib.graph_editor import copy_with_input_replacements [as 别名]
def test_copy_with_input_replacements(self):
with self.graph.as_default():
ten = tf.constant(10.0, shape=[10], name="Input")
sgv, _ = ge.copy_with_input_replacements(self.o.op,
{self.o.op.inputs[1]: ten})
with tf.Session() as sess:
val = sess.run(sgv.outputs[0])
self.assertNear(np.linalg.norm(val - np.array([11])),
0.0, ERROR_TOLERANCE)