CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
License information was derived automatically
The vision behind creating this dataset is to have a data set for classifying animal species. A lot of animal species can be included in this data set, which is why it gets revised regularly. This will help to create a machine-learning model that can accurately classify animal species.
This is Animal Classification Data-set made for the Multi-Class Image Recognition Task. The dataset contains 15 Classes, these classes are :
The data is split into 6 directories:
Interesting Data * As the name suggests, this folder contains 5 interesting images per class. These are called Interesting images because it will be fascinating to know which class the model allocates to these shots. Based on the model's prediction, we can understand the model's understanding of that class.
Testing Data * This folder is filled with a random number of images per class. As the name indicates this folder is purposefully made to incorporate testing images, that is images on which the model will be tested after training.
TFRecords Data * This folder contains the data in Tensorflow records format. All the images present in TF records format have already been resized to 256 x 256 pixels and normalized.
Train Augmented * This time, an additional train augmented data is added to the data set. As per the name, this directory contains augmented images per class. 5 augmented images per original image, in total each class has 10,000 augmented images. This is done to increase the data set size because, With the increase in the total number of classes, the model complexity increases. And thus we require more data to train the model. The best way to get more data is data augmentation. It is highly recommended to shuffle the data before/after loading it.
Training Images * Each class is filled with 2000 images for training purpose. This is the data that is used for training the model. In this case, all the images are resized to 256 by 256 pixels and normalized to have the input pixel range of 0 to 1.
Validation Images * This folder contains 100/200 images per class, this is intentionally created for validation purposes. Images from this directory will be used at the time of training for validating the model's performance.
DeepNets