Faster_RCNN_for_Open_Images_Dataset_Keras icon indicating copy to clipboard operation
Faster_RCNN_for_Open_Images_Dataset_Keras copied to clipboard

no mAP score

Open aliyyahna opened this issue 3 years ago • 5 comments

I tried training using my own custom dataset, everything seems fine until I check the record.csv file. Why are the mAP values zero? I followed everything from the program, am I missing something? Thanks!

image

aliyyahna avatar Apr 25 '21 10:04 aliyyahna

may i\i ask if you changed something in the code? I'm trying to train my own custom dataset too but the total loss result going upsait down

AlOo2002 avatar Apr 28 '21 23:04 AlOo2002

may i\i ask if you changed something in the code? I'm trying to train my own custom dataset too but the total loss result going upsait down

I didn't change anything! I simply follow the whole code. I'm not really sure about the solution to your problem, maybe check the program again from the start?

aliyyahna avatar Apr 30 '21 14:04 aliyyahna

thanx

AlOo2002 avatar Apr 30 '21 19:04 AlOo2002

Hello @aliyyahna! Did you find out why the mAP was zero? I face the same problem.

adavradou avatar Jan 08 '22 20:01 adavradou

Because the code simply writes 0 for mAP calculation and go... It's not something calculated. So it's not important but it would be nice how to calculate mAP and write the real value...

new_row = {'mean_overlapping_bboxes':round(mean_overlapping_bboxes, 3), 'class_acc':round(class_acc, 3), 'loss_rpn_cls':round(loss_rpn_cls, 3), 'loss_rpn_regr':round(loss_rpn_regr, 3), 'loss_class_cls':round(loss_class_cls, 3), 'loss_class_regr':round(loss_class_regr, 3), 'curr_loss':round(curr_loss, 3), 'elapsed_time':round(elapsed_time, 3), 'mAP': 0}

YCAyca avatar Jan 18 '22 19:01 YCAyca