Skip to content

Commit 7d71879

Browse files
authored
AC: fix head pose and time series adapters (#3178)
1 parent fa1bb57 commit 7d71879

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/adapters/attributes_recognition.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ def process(self, raw, identifiers, frame_meta):
9090
return result
9191

9292
def select_output_blob(self, outputs):
93-
self.check_output_name(self.angle_yaw, outputs)
94-
self.check_output_name(self.angle_pitch, outputs)
95-
self.check_output_name(self.angle_roll, outputs)
93+
self.angle_yaw = self.check_output_name(self.angle_yaw, outputs)
94+
self.angle_pitch = self.check_output_name(self.angle_pitch, outputs)
95+
self.angle_roll = self.check_output_name(self.angle_roll, outputs)
9696
self.outputs_verified = True
9797

9898

tools/accuracy_checker/openvino/tools/accuracy_checker/adapters/time_series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def configure(self):
4242
def select_output_blob(self, outputs):
4343
self.output_verified = True
4444
if self.output_name:
45-
self.check_output_name(self.output_name, outputs)
45+
self.output_name = self.check_output_name(self.output_name, outputs)
4646
return
4747
super().select_output_blob(outputs)
4848
self.output_name = self.output_blob

0 commit comments

Comments
 (0)