Replies: 1 comment 3 replies
-
@pretiand val.py computes mAP on val set by default. You can compute on any other part of your dataset using the --task argument: python val.py --task train # compute mAP on train set
python val.py --task val # compute mAP on val set
python val.py --task test # compute mAP on test set if it exists Line 312 in 0f80f2f |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my .yaml file I'm not using a test set. The outputs metrics of the model are automatically calculated on validation set, but I think that is not correct (I obtain very high mAP). Should I calculate the metrics on another test set, different from the validation?
Beta Was this translation helpful? Give feedback.
All reactions