From e2152ace93e19046b67951633b54c3717ac870fa Mon Sep 17 00:00:00 2001 From: kkaehler Date: Sun, 22 Sep 2019 22:34:19 -0700 Subject: [PATCH] s/lenght/length/ --- advanced_source/super_resolution_with_onnxruntime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced_source/super_resolution_with_onnxruntime.py b/advanced_source/super_resolution_with_onnxruntime.py index 2d80fd08c90..7836564d587 100644 --- a/advanced_source/super_resolution_with_onnxruntime.py +++ b/advanced_source/super_resolution_with_onnxruntime.py @@ -145,7 +145,7 @@ def _initialize_weights(self): do_constant_folding=True, # wether to execute constant folding for optimization input_names = ['input'], # the model's input names output_names = ['output'], # the model's output names - dynamic_axes={'input' : {0 : 'batch_size'}, # variable lenght axes + dynamic_axes={'input' : {0 : 'batch_size'}, # variable length axes 'output' : {0 : 'batch_size'}}) ######################################################################