SNAKE
Venomous Snake Classification
Join us for the closing webinar where top participants will discuss their solutions!
๐ Contribute: Found a typo? Or any other change in the description that you would like to see? Please consider sending us a pull request in the public repo of the challenge here.
๐ต๏ธIntroduction
Afraid of snakes?๐ณ Us too!๐ฃ Snakebites are one of the worldโs most neglected public health crises. Each year, they result in ~100,000 deaths and leave ~40,000 people disabled. Not only that, the poor and rural communities are the most affected by snakebites due to their limited access to antivenoms and hospitals.
Check this out ๐ https://www.who.int/news-room/fact-sheets/detail/snakebite-envenoming
What if there was a way to detect if a particular snake is venomous or not? And thus figure out if the snakebite is deadly or not? Solving this problem helps further an important Sustainable Development Goal(SDG 3.3 neglected tropical diseases), and we are proud to encourage efforts towards tackling it.
In this challenge we explore the use of computer vision in correctly classifying snakes as venomous / non venomous.
Understand with code! Here is getting started code
for you.๐
๐พ Dataset
The dataset provided contains images of various species of snake with each image of size 224*224
pixels. The train set and validation set has around 54,000
and 6000
images respectively grouped into the classes of venomous
and non venomous
while the test set contains around 15,000
images which needs to be predicted. The dataset is quite vast and has following variations:
-
variation by age
-
variation by geography
-
medically important venomous snakes
-
similar looking harmless snakes
๐ Files
Following files are available in the resources
` section:
-
train.zip
: (54,000
) The zip file containstrain
folder with two folder inside it with name asvenomous
andnon venomous
.These folder contains the images of respective classes. -
val.zip
: (6,000
) The zip file containsval
folder with two folder inside it with name asvenomous
andnon venomous
.These folder contains the images of respective classes. -
test.zip
: (15,000
) The zip file containstest
folder with images of the snakes to whose classes needs to be predicted. -
sample_submission.csv
: Sample submission format for the challenge.
๐ Submission
- Prepare a CSV containing two coloums with header
id
andclass
. The first column should contains the image id(without the '.jpg' extension) and the second as the class it belongs tovenomous
ornon_venomous
. - Name of the above file should be
submission.csv
. - Sample submission format available at
sample_submission.csv
in the resorces section.
Make your first submission here ๐ !!
๐ Evaluation Criteria
During evaluation F1 score and Accuracy will be used to test the efficiency of the model where,
๐ Links
- ๐ช Challenge Page: https://www.aicrowd.com/challenges/SNAKE
- ๐ฃ๏ธ Discussion Forum: https://www.aicrowd.com/challenges/SNAKE/discussion
- ๐ Leaderboard: https://www.aicrowd.com/challenges/SNAKE/leaderboards
๐ฑ Contact
Acknowledgements
- We thank Global Health Institute and Rafael Luis Ruiz De Castaneda for providing the dataset.