We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481d816 commit fea4edbCopy full SHA for fea4edb
tools/accuracy_checker/openvino/tools/accuracy_checker/adapters/mask_rcnn.py
@@ -115,7 +115,9 @@ def select_output_blob(self, outputs):
115
if self.raw_masks_out:
116
self.raw_masks_out = self.check_output_name(self.raw_masks_out, outputs)
117
if hasattr(self, 'detection_out'):
118
- self.detection_out = self.check_output_name(self.raw_masks_out, outputs)
+ self.detection_out = self.check_output_name(self.detection_out, outputs)
119
+ self.outputs_verified = True
120
+ return
121
if self.classes_out:
122
self.classes_out = self.check_output_name(self.classes_out, outputs)
123
if self.scores_out:
0 commit comments