Skip to content

Commit 205e51b

Browse files
authored
AC: fix action recognition evaluator (#3094)
1 parent 65f0896 commit 205e51b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/evaluators/custom_evaluators/sequential_action_recognition_evaluator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def predict(self, identifiers, input_data):
185185
input_dict = self.fit_to_input(input_data)
186186
if not self.is_dynamic and self.dynamic_inputs:
187187
self._reshape_input({key: data.shape for key, data in input_dict.items()})
188-
raw_result = self.exec_network.infer(input_dict, raw_results=True)
188+
raw_result = self.exec_network.infer(input_dict)
189189
result = self.adapter.process([raw_result], identifiers, [{}])
190190

191191
return raw_result, result

0 commit comments

Comments
 (0)