Skip to content

Commit 1ffbc16

Browse files
committed
fix wrong node count for get_graph_io_nodes
1 parent c24c9c2 commit 1ffbc16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/tf_graph_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def get_graph_io_nodes(input_path):
133133
inputs, outputs = get_graph_def_io_nodes(graph_def)
134134
logging.info("graph has:")
135135
logging.info("\t%s inputs: %s", len(inputs), ','.join(inputs))
136-
logging.info("\t%s (possible) outputs: %s", len(inputs), ','.join(outputs))
136+
logging.info("\t%s (possible) outputs: %s", len(outputs), ','.join(outputs))
137137

138138
@staticmethod
139139
def print_graph_stat(input_path):

0 commit comments

Comments
 (0)