Location
Badges
Activity
Ratings Progression
Challenge Categories
Challenges Entered
A benchmark for image-based food recognition
Latest submissions
See Allgraded | 173133 | ||
graded | 173051 | ||
graded | 173049 |
A benchmark for image-based food recognition
Latest submissions
See Allgraded | 119446 | ||
graded | 119282 | ||
graded | 119269 |
Participant | Rating |
---|
Participant | Rating |
---|
Food Recognition Benchmark 2022
π₯ Looking for teammates? Reply here!
Almost 3 years agoHi guys, Lorenzo here.
Iβve a background in math+physics (PhD theoretical physics) and Iβve been in AI-ML since 6 years as software developer - founder. Happy to team up, feel free to reach out: https://www.linkedin.com/in/lorenzo-pieri-a638b9a6/
Food Recognition Challenge
More masks than bboxes?
Almost 4 years agoSome annotations appear to have more segmentation masks than bounding boxes. For instance the instance 66 of the train dataset has 2 masks, but only 1 bbox.
i = 66
xx = annotations["annotations"][i]['segmentation']
yy = annotations["annotations"][i]['bbox']
print(xx)
print(len(xx))
print(yy)
print(len(yy))
[[163.90875, 115.78999999999999, .... 49999999996]]
2
[118.79625, 324.30999999999995, 270.17375, 376.44]
4
Some Food Detection related resources
Almost 4 years agoSharing some resources that may help with the challenge:
Food Recognition
https://arxiv.org/pdf/2004.13188v1.pdf 2020 portion + food detection
https://arxiv.org/pdf/2010.01412v2.pdf 2021 state of the art on food101
https://arxiv.org/pdf/2012.03368v1.pdf end2020 viper dataset
https://onlinelibrary.wiley.com/doi/full/10.1111/1541-4337.12492 2019 Broad survey of the field
Datasets:
https://www.tensorflow.org/datasets/catalog/food101 food 101
https://kuanghuei.github.io/Food-101N/ food 101N
https://paperswithcode.com/paper/foodx-251-a-dataset-for-fine-grained-food foodX 251
http://www.ivl.disco.unimib.it/activities/food524db/ food 524 Ciocca et al
http://www.ivl.disco.unimib.it/activities/food475db/ food 475 Ciocca et al
miscellanoues food datasets: https://hackernoon.com/machine-learning-food-datasets-collection-db21e38ea225
http://pic2recipe.csail.mit.edu/ Recipe 1M+ recipes + pics
http://vireo.cs.cityu.edu.hk/VireoFood172/ vireo172
https://iplab.dmi.unict.it/UNICT-FD889/
https://arxiv.org/pdf/2012.03368v1.pdf vfn viper
http://123.57.42.89/FoodComputing-Dataset/ISIA-Food500.html isia food 500
Example submission template
Almost 3 years agoIt would be great to have a minimal working example of MaskRCNNPredictor() or MMDetectionPredictor(), so that we can focus on building the network.