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 7000 Labeled Pokémon dataset is a multi-class classification situation where we attempt to predict one of several (more than two) possible outcomes.
INTRODUCTION: The dataset owner worked on a Pokémon classification project and made the dataset available on Kaggle. The dataset includes 150 Pokémon’s with 25 to 50 images for each Pokémon. Unfortunately, most images have low resolution, so we should be mindful of the results that we can obtain from this dataset.
ANALYSIS: The model’s performance achieved an accuracy score of 59.79% after 50 epochs using a validation dataset with 15% of total images. After tuning the learning rate, we obtained a final accuracy rate to 60.73% using the same validation dataset.
CONCLUSION: In this iteration, the TensorFlow ResNet152V2 CNN model appeared to have limited effectiveness in modeling this dataset.
Dataset Used: 7000 Labeled Pokémon
Dataset ML Model: Multi-class image classification with numerical attributes
Dataset Reference: https://www.kaggle.com/lantian773030/pokemonclassification
One potential source of performance benchmarks: https://www.kaggle.com/lantian773030/pokemonclassification/code
The HTML formatted report can be found here on GitHub.