Skip to content

Commit 8682f1f

Browse files
Androbindrpngx
authored andcommitted
corrected "check_graph" to "summarize_graph" (tensorflow#8896)
* corrected "check_graph" to "summarize_graph" "check_graph" may have been the previous name for "summarize_graph" the surrounding text suggests that both refer to the same tool * Update README.md
1 parent 4e3864c commit 8682f1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow/tools/graph_transforms/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ output layers of the model are. The best source for these is the model training
103103
process, where for a classifier the inputs will be the nodes that receive the
104104
data from the training set, and the output will be the predictions. If you're
105105
unsure, the
106-
[summarize_graph](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/graph_transforms/summarize_graph_main.cc)
106+
[`summarize_graph`](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/graph_transforms/summarize_graph_main.cc)
107107
tool can inspect the model and provide guesses about likely input and output nodes,
108108
as well as other information that's useful for debugging. Here's an example of
109109
how to use it on the [Inception V3
@@ -315,7 +315,7 @@ themselves contain commas (for example shape definitions).
315315
The --inputs and --outputs are shared across all transforms, since it's common
316316
to need to know what the ingoing and outgoing nodes in the graph are. You should
317317
make sure you set these correctly before calling the graph transform tool, and
318-
if you're in doubt check with the model's author, or use the `check_graph` tool
318+
if you're in doubt check with the model's author, or use the [`summarize_graph`](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/graph_transforms#inspecting-graphs) tool
319319
to examine likely inputs and outputs.
320320

321321
All transforms can be passed the `ignore_errors` flag, with the value set to

0 commit comments

Comments
 (0)