mAP for object detection on test split #2025
Answered
by
AdeelH
AashishKumbashi
asked this question in
Q&A
-
I understand that after every epoch, rastervision helps in calculating the mAP on the validation dataset. However, later when analysing the predictions, I have only precision, recall and F1 score. Is there a way to somehow obtain the mAP scores for the test dataset? |
Beta Was this translation helpful? Give feedback.
Answered by
AdeelH
Jan 8, 2024
Replies: 1 comment
-
You are right. That's some missing functionality. To fix that, we would need to adapt the mAP calculation code from here to here. A workaround might be to instantiate a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AashishKumbashi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are right. That's some missing functionality. To fix that, we would need to adapt the mAP calculation code from here to here.
A workaround might be to instantiate a
Learner
with the test dataset and the trained weights and then callLearner.eval_model('test')
.