Skip to content

Commit 7c60a41

Browse files
authored
Update base_models.py
1 parent 4b7a848 commit 7c60a41

File tree

1 file changed

+1
-2
lines changed
  • tools/accuracy_checker/accuracy_checker/evaluators/custom_evaluators

1 file changed

+1
-2
lines changed

tools/accuracy_checker/accuracy_checker/evaluators/custom_evaluators/base_models.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@
1414
limitations under the License.
1515
"""
1616
from pathlib import Path
17-
from collections import OrderedDict, namedtuple
17+
from collections import OrderedDict
1818
import numpy as np
1919
import pickle # nosec B403 # disable import-pickle check
2020
from ...config import ConfigError
2121
from ...utils import get_path, parse_partial_shape, contains_any
2222
from ...logging import print_info
2323

24-
InferData = namedtuple('InferData', ['input', 'output'])
2524

2625
def create_model(model_config, launcher, launcher_model_mapping, suffix=None, delayed_model_loading=False):
2726
framework = launcher.config['framework']

0 commit comments

Comments
 (0)