This project uses Keras and TensorFlow to classify handwritten digits from the MNIST dataset using a deep learning model.
The MNIST dataset contains:
- 60,000 training images
- 10,000 test images
- Each image is 28x28 pixels in grayscale.
- Clone the repository:
git clone https://github.com/yourusername/mnist-deep-learning.git cd mnist-deep-learning
- Install dependencies:
pip install -r requirements.txt
Run the following command to train the model:
python train_model.py
The model is a Artifical Neural Network (ANN) with several convolutional and dense layers for classification.
The model achieves high accuracy on the MNIST test set.