-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detection ground truths don't match the coco17 validation ground truths #10
Comments
Further investigation leads me to conclude that most of the Coco image ground truths were scaled to a resolution of 300x300, with some being scaled to either 300x150 or 150x300. |
Thanks a lot for this finding and the pull request! Let me take a closer look. That is weird because I remember specifically addressing this issue at some point. |
Okay, I've managed to make a submission to CodaLab and achieve a score that beats simple supervised training. In order to do this though, I had to compare |
I've added a script to the PR that compares the GT boxes in |
Hi,
I have been taking a look at the ground truths that you've provided for the detection competition. I have noticed that the GT boxes in the
val_ground_truth.pkl
do not match those incoco17-val.txt
; it seems that they have been scaled. A consistent x,y scale factor is used for each image, but I am unable to determine the pattern/algorithm used to compute the scale factors. Would it be possible to replaceval_ground_truth.pkl
with a file generated by direct conversion?I have created a pull request (#11) that adds a conversion script (in case you're interested) and also changes the detection README slight in order to clarify the first problem that I had concerning format :)
The text was updated successfully, but these errors were encountered: