Image Classification : Make the model understand the difference between a Pizza and steak.
CNN Model : Convolutional Neural Network, it is an model used for Image Classification, It has 2 main layers :
- CNN Layer : Convolutional Layer, it is used to extract the features from the images.
- Pooling Layer : It is used to reduce the parameters extract the data which are more important than the other data. To understand CNN more, preview this webpage : https://poloclub.github.io/cnn-explainer/
Datset : The dataset contains 2000 images, 1000 for each object (Pizaa, Steak). Theses 1000 images are split into 750 and 250 images for training and testing respectively.
Steps to create an regression model :
- Import the required libraries
- Loading the dataset
- Data Visualisaation
- Data Preprocessing
- Splitting the dataset
- Creating and evaluating our model
- Augmentation of images.
- Experimenting with hyperparameters to increase the accuracy