๐ต๏ธ Introduction
Youโve successfully fixed the crisis and have taken off, phew! ๐
But hey, what is that?! Youโre encountering a large belt of space debris! You must use the tools of object detection to box this debris so you can safely take your rover to Mars.
Click here to check out the starter kit.

๐พ Dataset
The given dataset contains images of space with space debris. The images are of size 256*256 in jpg format. The bounding boxes are in bboxes with the columns as ImageId and bboxes0 containing list in [xmin, xmax, ymin, ymax] format.
A sample row :
| ImageID | bboxes |
| 0 | [[34, 65, 69, 98], [144, 172, 266, 295], [382, 409, 248, 278], [383, 411, 438, 466]] |
The boxes will be in the string but to convert them into a python list, you can simply use literal_eval function from ast python library!
๐ Files
Following files are available in the resources section:
train.zip- (20000samples) This zip file contains space with debris images, with images name corresponding toImageIDcolumn oftrain.csvtrain.csv- (20000samples) This csv file contains theImageIDcolumn corresponding totrain.zipandbboxesthe column contains bounding boxes in a list.val.zip- (2000samples) This zip file contains space with debris images, with images name corresponding toImageIDcolumn ofval.csvval.csv- (2000samples) This csv file contains theImageIDcolumn corresponding toval.zipandbboxesthe column contains bounding boxes in a list.test.zip- (5000samples) This zip file contains space with debris images which will be used to evaluate the performance of the model.
๐ Submission
- Prepare a CSV containing
ImageIDcolumn corresponding totest.zipandbboxescolumn as bounding boxes. Note that thebboxescolumn should contain another element in every bounding box list containing scores. Something like below:-
| ImageID | bboxes |
| 0 | [[34, 65, 69, 98, 0.98], [144, 172, 266, 295, 0.8], [382, 409, 248, 278, 0.55], [383, 411, 438, 466, 0.23]] |
- The name of the above file should be submission.csv.
- Sample submission format available at sample_submission.csv in the resources section.
Make your first submission here ๐ !!
๐ Evaluation Criteria
During the evaluation, Average Precision (AP) @[ IoU=0.50:0.50 | area=medium | maxDets=100 ] will be used to test the efficiency of the model.
๐ Links
- ๐ช Challenge Page: https://www.aicrowd.com/challenges/debris-detection
- ๐ฃ๏ธ Discussion Forum: https://www.aicrowd.com/challenges/debris-detection/discussion
- ๐ Leaderboard: https://www.aicrowd.com/challenges/ai-blitz-7/problems/debris-detection/leaderboards
Sign Up with Email