aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/copy_graph
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-08-22 13:28:35 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-08-22 14:34:31 -0700
commit92527942d7d55d5e20f16f94d58483178f377157 (patch)
tree74986e7498ed980d7dab3d3e3dbbcda2e1a7a1ea /tensorflow/contrib/copy_graph
parent368b9d409272f8dad01a953c57c99d2abce4d6f4 (diff)
Split NodeDef out of graph.proto into node_def.proto. Needed so we
can use NodeDef in FunctionDef. Change: 130982373
Diffstat (limited to 'tensorflow/contrib/copy_graph')
-rw-r--r--tensorflow/contrib/copy_graph/python/util/copy_elements.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/copy_graph/python/util/copy_elements.py b/tensorflow/contrib/copy_graph/python/util/copy_elements.py
index 62a8d784ee..3c80a17633 100644
--- a/tensorflow/contrib/copy_graph/python/util/copy_elements.py
+++ b/tensorflow/contrib/copy_graph/python/util/copy_elements.py
@@ -198,7 +198,7 @@ def copy_op_to_graph(org_instance, to_graph, variables,
for x in op.inputs]
#Make a new node_def based on that of the original.
- #An instance of tensorflow.core.framework.graph_pb2.NodeDef, it
+ #An instance of tensorflow.core.framework.node_def_pb2.NodeDef, it
#stores String-based info such as name, device and type of the op.
#Unique to every Operation instance.
new_node_def = deepcopy(op._node_def)