-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
" KeyError: 'annotations' " on evaluating the model using evaluator.update(predictions)- DETR #179
Comments
👋 Hello @eloisacorti, thank you for leaving an issue on Roboflow Notebooks. 🐞 Bug reportsIf you are filing a bug report, please be as detailed as possible. This will help us more easily diagnose and resolve the problem you are facing. To learn more about contributing, check out our Contributing Guidelines. If you require support with custom code that is not part of Roboflow Notebooks, please reach out on the Roboflow Forum or on the GitHub Discussions page associated with this repository. 💬 Get in touchDo you have more questions about Roboflow that we haven't responded to yet? Feel free to ask them on the Roboflow Discuss forum. Our developer advocates and community team actively respond to questions there. To ask questions about Notebooks, head over to the GitHub Discussions section of this repository. |
Hi @eloisacorti 👋🏻! Does that happen with |
Hi @SkalskiP It happen with custom dataset. |
@eloisacorti, is that dataset coming from Roboflow? If so, could you share a link? |
No, I have it my drive. The directory structure is: maize10----|__valid #images + .json https://drive.google.com/drive/folders/1d0LUp_SPpcbPdRVYvO3lHZjTTlJJaPWj?usp=sharing |
Could you share you colab where you try and fail to load that dataset? |
Yes. I only changed the location of the dataset |
Okey. I'll take a look at it as soon as possible. But I'm afraid I won't be able to do it this week. |
Thanks!! @SkalskiP |
@eloisacorti have you find a solution ? I got the same problem, for some datasets it throws the exact error as you encountered but for other datasets it works fine ! |
@eloisacorti @eloisacorti I think this is because the default threshold is too high that causes the results to be empty in most values. |
@poyingHAHA so that happens because during evaluation, there are no detections produced by the model? |
Yes, training step is fine, but the you get nothing during evaluation because of the default threshold and model not training well. |
how do i ensure that the model is training well? like i am using this notebook as a reference to train for the object detection on soccernet dataset, and i am facing the same issue. |
Hi folks, Thanks for reporting, I was fine-tuning DETR and the new DETA model on a custom dataset and faced the same issue. Glad I found this 😅 will update my demo notebooks. Regarding making sure the model is training well, fine-tuning is working well for me on the balloon dataset: https://github.com/NielsRogge/Transformers-Tutorials/blob/master/DETA/Fine_tuning_DETA_on_a_custom_dataset_(balloon).ipynb. Also pushed an update for my DETR notebook. |
Search before asking
Notebook name
train-huggingface-detr-on-custom-dataset.ipynb
Bug
When training on custom dataset, it seems like I'm not getting any predictions.
During trainning I get loss resultos, so it seems like the trainning is doing fine, but then I can't get inferences.
If I try to run the CocoEvaluator I get this bug:
`KeyError Traceback (most recent call last)
in <cell line: 10>()
21 predictions = {target['image_id'].item(): output for target, output in zip(labels, results)}
22 predictions = prepare_for_coco_detection(predictions)
---> 23 evaluator.update(predictions)
24
25 evaluator.synchronize_between_processes()
3 frames
/usr/local/lib/python3.10/dist-packages/pycocotools/coco.py in getAnnIds(self, imgIds, catIds, areaRng, iscrowd)
144 anns = list(itertools.chain.from_iterable(lists))
145 else:
--> 146 anns = self.dataset['annotations']
147 anns = anns if len(catIds) == 0 else [ann for ann in anns if ann['category_id'] in catIds]
148 anns = anns if len(areaRng) == 0 else [ann for ann in anns if ann['area'] > areaRng[0] and ann['area'] < areaRng[1]]
KeyError: 'annotations'`
Environment
-Google colab
Minimal Reproducible Example
No response
Additional
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: