Skip to content

Commit 6af9f4e

Browse files
authored
AC: fix output verification for retinanet tf2 (#3181)
1 parent 1ee228f commit 6af9f4e

File tree

1 file changed

+2
-2
lines changed
  • tools/accuracy_checker/openvino/tools/accuracy_checker/adapters

1 file changed

+2
-2
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/adapters/retinanet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ def configure(self):
408408
def select_output_blob(self, outputs):
409409
def generate_out_names(list_names, outputs):
410410
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)
411+
self.loc_out = generate_out_names(self.loc_out, outputs)
412+
self.cls_out = generate_out_names(self.cls_out, outputs)
413413
self.outputs_verified = True
414414

415415
def _generate_anchor_boxes(self, image_size):

0 commit comments

Comments
 (0)