This repository contains a Convolutional Neural Network (CNN) developed using TensorFlow/Keras for binary image classification. The model classifies input images as either Dog or Cat.
This project was created as part of my deep learning portfolio to demonstrate CNN design, model training, evaluation, and deployment practices.
The model was trained on the Kaggle Dogs vs Cats dataset.
1from tensorflow.keras.models import load_model
2
3model = load_model("cnn_model.keras")