Skip to content

Commit 1697e60

Browse files
author
Anna Grebneva
authored
Fixed misprint in attribute name of regression metric (#3069)
1 parent e38f16f commit 1697e60

File tree

1 file changed

+1
-1
lines changed
  • tools/accuracy_checker/openvino/tools/accuracy_checker/metrics

1 file changed

+1
-1
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/metrics/regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def evaluate(self, annotations, predictions):
154154
for key, values in self.magnitude.items():
155155
names.extend(
156156
['{}@mean'.format(key), '{}@std'.format(key)]
157-
if not self.max_error else ['{}@mean'.format(key), '{}@std'.format(key), '{}@max_errir'.format(key)]
157+
if not self.max_error else ['{}@mean'.format(key), '{}@std'.format(key), '{}@max_error'.format(key)]
158158
)
159159
result.extend([np.mean(values), np.std(values)])
160160
if self.max_error:

0 commit comments

Comments
 (0)