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 1ee228f commit 6af9f4eCopy full SHA for 6af9f4e
tools/accuracy_checker/openvino/tools/accuracy_checker/adapters/retinanet.py
@@ -408,8 +408,8 @@ def configure(self):
408
def select_output_blob(self, outputs):
409
def generate_out_names(list_names, outputs):
410
return [self.check_output_name(out, outputs) for out in list_names]
411
- self.boxes_outs = generate_out_names(self.boxes_outs, outputs)
412
- self.class_outs = generate_out_names(self.class_outs, outputs)
+ self.loc_out = generate_out_names(self.loc_out, outputs)
+ self.cls_out = generate_out_names(self.cls_out, outputs)
413
self.outputs_verified = True
414
415
def _generate_anchor_boxes(self, image_size):
0 commit comments