“bec9fc9a902daf5f6669f1a34067f3411da21cc7”上不存在“...distributed/fleet/git@gitcode.net:paddlepaddle/Paddle.git”
PaddleDetection的eval.py出错
Created by: dbcool
您好,我在用PaddleDetection进行eval.py的时候,出错:
File "/data/daibing/model-factory/logo_detection/ppdet/utils/voc_eval.py", line 73, in bbox_eval
gt_boxes = t['gt_box'][0]
KeyError: u'gt_box'
应该是下面这段代码出错
for t in results:
bboxes = t['bbox'][0]
bbox_lengths = t['bbox'][1][0]
if bboxes.shape == (1, 1) or bboxes is None:
continue
gt_boxes = t['gt_box'][0]
可否帮忙解答一下