Multi-Class Image Classification Model for Animal Images Version 2 Using TensorFlow Take 4

Template Credit: Adapted from a template made available by Dr. Jason Brownlee of Machine Learning Mastery.

SUMMARY: This project aims to construct a predictive model using a TensorFlow convolutional neural network (CNN) and document the end-to-end steps using a template. The Animal Image Classification Dataset is a multi-class classification situation where we attempt to predict one of several (more than two) possible outcomes.

INTRODUCTION: The dataset contains over 21,000 images of ten different animals. The training set contains 2,000 training images assigned to each class. The validation set contains 100 validation images assigned to each class. Finally, the test set has a random number of pictures assigned to each class.

ANALYSIS: The InceptionV3 model’s performance achieved an accuracy score of 95.30% after five epochs using the validation dataset. When we applied the model to the test dataset, the model achieved an accuracy score of 95.49%.

CONCLUSION: In this iteration, the TensorFlow InceptionV3 CNN model appeared suitable for modeling this dataset.

Dataset ML Model: Multi-Class classification with numerical features

Dataset Used: Animal Image Classification Dataset

Dataset Reference: https://www.kaggle.com/datasets/utkarshsaxenadn/animal-image-classification-dataset

One source of potential performance benchmarks: https://www.kaggle.com/datasets/utkarshsaxenadn/animal-image-classification-dataset/code

The HTML formatted report can be found here on GitHub.