File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tools/accuracy_checker/openvino/tools/accuracy_checker/launcher Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -561,9 +561,9 @@ def _set_batch_size(self, batch_size):
561
561
for input_node in self .network .inputs :
562
562
layer_name = input_node .get_node ().friendly_name
563
563
if layer_name in self .const_inputs :
564
- input_shapes [layer_name ] = parse_partial_shape (layer_name .partial_shape )
564
+ input_shapes [layer_name ] = parse_partial_shape (input_node . get_node () .partial_shape )
565
565
else :
566
- layer_shape = parse_partial_shape (layer_name .partial_shape )
566
+ layer_shape = parse_partial_shape (input_node . get_node () .partial_shape )
567
567
layout = self .inputs [layer_name ].layout
568
568
if '...' in str (layout ):
569
569
layout = self .get_layout_from_config (layer_name )
You can’t perform that action at this time.
0 commit comments