π΅οΈ 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
- (20000
samples) This zip file contains space with debris images, with images name corresponding toImageID
column oftrain.csv
train.csv
- (20000
samples) This csv file contains theImageID
column corresponding totrain.zip
andbboxes
the column contains bounding boxes in a list.val.zip
- (2000
samples) This zip file contains space with debris images, with images name corresponding toImageID
column ofval.csv
val.csv
- (2000
samples) This csv file contains theImageID
column corresponding toval.zip
andbboxes
the column contains bounding boxes in a list.test.zip
- (5000
samples) This zip file contains space with debris images which will be used to evaluate the performance of the model.
π Submission
- Prepare a CSV containing
ImageID
column corresponding totest.zip
andbboxes
column as bounding boxes. Note that thebboxes
column 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
π± Contact
Notebooks
1
|
0
|
|
3
|
0
|