From 6c6ceea9919860bfc2c830e0e13cc3a104ec62eb Mon Sep 17 00:00:00 2001 From: Tanmay Vakare Date: Wed, 11 Mar 2020 15:23:46 +0530 Subject: [PATCH] corrected typo --- 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 2a3a3dadd36..91dfc806398 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, # whether 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'}}) ######################################################################