Skip to content

Commit bb0feaa

Browse files
author
wayuanho
committed
fix deepcopy
1 parent 9960de5 commit bb0feaa

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)