Skip to content
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

Open
1 of 2 tasks
eloisacorti opened this issue Aug 11, 2023 · 15 comments
Assignees
Labels
bug Something isn't working

Comments

@eloisacorti
Copy link

Search before asking

  • I have searched the Roboflow Notebooks issues and found no similar bug report.

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?

  • Yes I'd like to help by submitting a PR!
@eloisacorti eloisacorti added the bug Something isn't working label Aug 11, 2023
@github-actions
Copy link

👋 Hello @eloisacorti, thank you for leaving an issue on Roboflow Notebooks.

🐞 Bug reports

If 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 touch

Do 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.

@SkalskiP SkalskiP self-assigned this Aug 11, 2023
@SkalskiP
Copy link
Collaborator

Hi @eloisacorti 👋🏻! Does that happen with football-players-detection-3zvbc dataset? Or your custom one?

@eloisacorti
Copy link
Author

Hi @SkalskiP It happen with custom dataset.

@SkalskiP
Copy link
Collaborator

@eloisacorti, is that dataset coming from Roboflow? If so, could you share a link?

@eloisacorti
Copy link
Author

No, I have it my drive.

The directory structure is:

maize10----|__valid #images + .json
|__train #images + .json
|__test #images + .json

https://drive.google.com/drive/folders/1d0LUp_SPpcbPdRVYvO3lHZjTTlJJaPWj?usp=sharing

@SkalskiP
Copy link
Collaborator

Could you share you colab where you try and fail to load that dataset?

@eloisacorti
Copy link
Author

Yes. I only changed the location of the dataset
https://colab.research.google.com/drive/1qIxmCAueQxkYd2b5Y6DAA-pWWVGuhskF?usp=sharing

@SkalskiP
Copy link
Collaborator

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.

@eloisacorti
Copy link
Author

Thanks!! @SkalskiP

@Heni-Loukil
Copy link

@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 !

@poyingHAHA
Copy link

@eloisacorti @eloisacorti
change this line in your colab in the section causing the error:
results = image_processor.post_process_object_detection(outputs, target_sizes=orig_target_sizes)
to:
results = image_processor.post_process_object_detection(outputs, target_sizes=orig_target_sizes, threshold=0)

I think this is because the default threshold is too high that causes the results to be empty in most values.

@SkalskiP
Copy link
Collaborator

@poyingHAHA so that happens because during evaluation, there are no detections produced by the model?

@poyingHAHA
Copy link

Yes, training step is fine, but the you get nothing during evaluation because of the default threshold and model not training well.

@Kalyugsasur
Copy link

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.

@NielsRogge
Copy link

NielsRogge commented Dec 19, 2023

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.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

6 participants