Ahmedhassan54's picture
Update README.md
032b177 verified
---
title: Cat vs Dog Classifier
emoji: 🐱🐢
colorFrom: blue
colorTo: purple
sdk: gradio
sdk_version: 5.34.2
app_file: app.py
pinned: false
license: mit
---
# Cat vs Dog Image Classifier
A deep learning model that classifies images of cats and dogs with TensorFlow/Keras.
![Demo](https://example.com/demo.gif) <!-- Replace with actual demo GIF -->
## πŸš€ Try it out!
[![Open in Spaces](https://img.shields.io/badge/πŸ€—-Open%20in%20Spaces-blue.svg)](https://huggingface.co/spaces/Ahmedhassan54/Image-Classification)
## πŸ› οΈ Technical Details
### Model Architecture
```python
Sequential([
Conv2D(32, (3,3), activation='relu', input_shape=(150, 150, 3)),
MaxPooling2D((2,2)),
Conv2D(64, (3,3), activation='relu'),
MaxPooling2D((2,2)),
Conv2D(128, (3,3), activation='relu'),
MaxPooling2D((2,2)),
Flatten(),
Dense(512, activation='relu'),
Dropout(0.5),
Dense(1, activation='sigmoid')
])