Skip to content

Commit e6f2a93

Browse files
authored
AC: fix typo (#3420)
1 parent cd29560 commit e6f2a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/launcher/openvino_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ def _create_network(self, input_shapes=None):
500500
with open(str(self._model), 'rb') as f: #pylint:disable=unspecified-encoding
501501
self.exec_network = self.ie_core.import_model(io.BytesIO(f.read()), self._device)
502502
self.original_outputs = self.exec_network.outputs
503-
model_batch = self._get_remodel_batch_size()
503+
model_batch = self._get_model_batch_size()
504504
self._batch = model_batch if model_batch is not None else 1
505505
return
506506
if self._weights is None and self._model.suffix != '.onnx':

0 commit comments

Comments
 (0)