Skip to content

Commit 954d416

Browse files
authored
Merge pull request #657 from lucienwang1009/deepcopy
fix deepcopy
2 parents f832f96 + bb0feaa commit 954d416

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tf2onnx/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,4 @@ def from_saved_model(model_path, input_names, output_names, signatures=None):
125125
input_names = remove_redundant_inputs(frozen_graph, input_names)
126126
# clean up
127127
tf.reset_default_graph()
128-
return frozen_graph, input_names, outputs.keys()
128+
return frozen_graph, input_names, list(outputs.keys())

0 commit comments

Comments
 (0)