From ee49d426f893081862531b1080053309a63ecb8c Mon Sep 17 00:00:00 2001 From: maykulkarni Date: Sun, 26 Jan 2020 13:07:35 +0530 Subject: [PATCH] typo fix --- 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'}}) ######################################################################