Skip to content

Commit 8568f49

Browse files
Removes probably old text.
Change: 143823551
1 parent 699d1e8 commit 8568f49

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

  • tensorflow/g3doc/how_tos/tool_developers

tensorflow/g3doc/how_tos/tool_developers/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@ Every node should have a unique identifier that's not used by any other nodes
9898
in the graph. If you don't specify one as you're building a graph using the
9999
Python API, one reflecting the name of operation, such as "MatMul",
100100
concatenated with a monotonically increasing number, such as "5", will be
101-
picked for you. an arbitrary one will be picked for you. The name is used when
102-
defining the connections between nodes, and when setting inputs and outputs for
103-
the whole graph when it's run.
101+
picked for you. The name is used when defining the connections between nodes,
102+
and when setting inputs and outputs for the whole graph when it's run.
104103

105104
### `op`
106105

@@ -118,7 +117,7 @@ inputs might have a list like `["some_node_name", "another_node_name"]`, which
118117
is equivalent to `["some_node_name:0", "another_node_name:0"]`, and defines the
119118
node's first input as the first output from the node with the name
120119
`"some_node_name"`, and a second input from the first output of
121-
`"another_node_name
120+
`"another_node_name"`
122121

123122
### `device`
124123

0 commit comments

Comments
 (0)