Hi @toandaominh1997
thanks for sharing the code, I had few queries:
in eval.py, eval_voc function, when computing mAP, first for loop class, then for loop images.
Shouldn't this line for i in range(valid_dataset.__num_class__()) be for i in range(len(valid_dataset)) ?
when definevalid_dataset, used the default image_sets=[('2007', 'trainval'), ('2012', 'trainval')]. Shouldn't be [('2007', 'test')] ?
Hi @toandaominh1997 thanks for sharing the code, I had few queries:
in eval.py, eval_voc function, when computing mAP, first for loop class, then for loop images. Shouldn't this line
for i in range(valid_dataset.__num_class__())
befor i in range(len(valid_dataset))
?when definevalid_dataset, used the default image_sets=[('2007', 'trainval'), ('2012', 'trainval')]. Shouldn't be [('2007', 'test')] ?