Skip to content

Commit feca7bc

Browse files
BoyanYKsoumith
authored andcommitted
Fix tutorial comment typing error (#698)
1 parent 0d0f954 commit feca7bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

advanced_source/super_resolution_with_onnxruntime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def _initialize_weights(self):
142142
"super_resolution.onnx", # where to save the model (can be a file or file-like object)
143143
export_params=True, # store the trained parameter weights inside the model file
144144
opset_version=10, # the ONNX version to export the model to
145-
do_constant_folding=True, # wether to execute constant folding for optimization
145+
do_constant_folding=True, # whether to execute constant folding for optimization
146146
input_names = ['input'], # the model's input names
147147
output_names = ['output'], # the model's output names
148148
dynamic_axes={'input' : {0 : 'batch_size'}, # variable lenght axes

0 commit comments

Comments
 (0)