Currently, animal detection and recognition are still a difficult challenge and there is no unique method that provides a robust and efficient solution to all situations. Generally, features from the animal that belongs to a certain class are used to train a certain classifier. Then, given a new input image, the classifier will be able to decide if the sample is the animal or not. To better understand the complexities of natural ecosystems and better manage and better protect them, it would be helpful if we can differentiate the animals based on their attributes and characteristics.
In this challenge, you will be given 18000 images of 50 animals classes with pre-extracted feature representation for each image. The classes are aligned with Osherson’s classical class/attribute matrix, thereby providing 85 numeric attribute values for each class.
Given the image of an animal, your task is to identify all the characteristics/ attributes associated with that animal.
You’re given two different files (csv and images) to download. The train data consists of 12600 images and the test data consists of 5400 images of 50 animal classes with pre-extracted feature representations for each image. Some part of the data has been anonymized to restrict fraudulent submissions.
Variable | Description |
Image_name | Image Id/ Image Name |
attrib_n | nth characteristic/ attribute |
A participant has to submit a .csv file containing the Image_name and the corresponding attributes associated with that image in the .csv format. Check the sample submission file for the format.
Image_name |
attrib_01 |
attrib_02 |
…. |
attrib_83 |
attrib_84 |
attrib_85 |
Image_1 |
0 |
1 |
0 |
1 |
1 |
0 |
Image_2 |
0 |
1 |
1 |
1 |
1 |
1 |
Image_3 |
0 |
0 |
0 |
0 |
0 |
0 |
For challenge related queries, discussions and announcements join our Slack channel.
The submissions will be evaluated based on F1 Score with ‘average = samples’.
Keras CNN Stater Code: Click here
To keep the competition fair and unbiased, we have prohibited the use of external data. Please check the guidelines on the challenge page.