├── .gitignore ├── LICENSE ├── README.md ├── aicrowd.json ├── apt.txt ├── data ├── results │ └── predictions.json └── test │ ├── 1.jpg │ ├── 2.jpg │ └── 3.jpg ├── evaluator ├── food_challenge.py └── utils.py ├── models └── htc_without_semantic_r50_fpn_1x_coco.py ├── predict.py ├── predict_detectron2.py ├── predict_mmdetection.py ├── predict_random.py ├── requirements.txt ├── run.sh ├── score.py └── utils ├── SUBMISSION.md ├── aicrowd_detectron2_example.json ├── aicrowd_mmdetection_example.json ├── class_to_category.json ├── class_to_category_round2.json ├── classes.json ├── classes_round2.json ├── cocoeval.py ├── dataset_utils.ipynb ├── local_evaluation.ipynb ├── mmdet_inference.py ├── requirements_detectron2.txt ├── requirements_mmdetection.txt └── v2.1_breaking_class_mapping.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /aicrowd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/aicrowd.json -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/apt.txt -------------------------------------------------------------------------------- /data/results/predictions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/data/results/predictions.json -------------------------------------------------------------------------------- /data/test/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/data/test/1.jpg -------------------------------------------------------------------------------- /data/test/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/data/test/2.jpg -------------------------------------------------------------------------------- /data/test/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/data/test/3.jpg -------------------------------------------------------------------------------- /evaluator/food_challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/evaluator/food_challenge.py -------------------------------------------------------------------------------- /evaluator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/evaluator/utils.py -------------------------------------------------------------------------------- /models/htc_without_semantic_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/models/htc_without_semantic_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/predict.py -------------------------------------------------------------------------------- /predict_detectron2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/predict_detectron2.py -------------------------------------------------------------------------------- /predict_mmdetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/predict_mmdetection.py -------------------------------------------------------------------------------- /predict_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/predict_random.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python predict.py 3 | -------------------------------------------------------------------------------- /score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/score.py -------------------------------------------------------------------------------- /utils/SUBMISSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/SUBMISSION.md -------------------------------------------------------------------------------- /utils/aicrowd_detectron2_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/aicrowd_detectron2_example.json -------------------------------------------------------------------------------- /utils/aicrowd_mmdetection_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/aicrowd_mmdetection_example.json -------------------------------------------------------------------------------- /utils/class_to_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/class_to_category.json -------------------------------------------------------------------------------- /utils/class_to_category_round2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/class_to_category_round2.json -------------------------------------------------------------------------------- /utils/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/classes.json -------------------------------------------------------------------------------- /utils/classes_round2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/classes_round2.json -------------------------------------------------------------------------------- /utils/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/cocoeval.py -------------------------------------------------------------------------------- /utils/dataset_utils.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/dataset_utils.ipynb -------------------------------------------------------------------------------- /utils/local_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/local_evaluation.ipynb -------------------------------------------------------------------------------- /utils/mmdet_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/mmdet_inference.py -------------------------------------------------------------------------------- /utils/requirements_detectron2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/requirements_detectron2.txt -------------------------------------------------------------------------------- /utils/requirements_mmdetection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/requirements_mmdetection.txt -------------------------------------------------------------------------------- /utils/v2.1_breaking_class_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIcrowd/food-recognition-benchmark-starter-kit/HEAD/utils/v2.1_breaking_class_mapping.json --------------------------------------------------------------------------------