Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 1.53 KB

README.md

File metadata and controls

55 lines (33 loc) · 1.53 KB

CNN Digit Recognizer 🔢

This repository houses an exciting deep learning project employing Convolutional Neural Networks (CNN) to construct a digit recognizer using the MNIST dataset. The MNIST dataset comprises a vast collection of handwritten digit images.

DigitRecognizer

Dependencies 🛠️

Ensure you have the following packages installed with the specified versions:

  • numpy
  • matplotlib
  • tensorflow
  • keras
  • pillow or opencv-python

Usage 🚀

  1. Clone the repository to your local machine:

    git clone https://github.com/ZephyrusBlaze/DigitRecognizer.git
  2. Install required packages:

    pip install -r requirements.txt
  3. Run the Flask server:

    python server.py
  4. Access the web interface:

    Visit http://localhost:5000 in your web browser.

  5. Draw a digit:

    In the provided interface, draw a digit, and the trained model will predict the corresponding digit.

🌐 Alternatively, use the pre-trained model:

Access the model at https://ZephyrusBlaze.github.io/DigitRecognizer/.

Model Training 🧠

The repository includes code for training the CNN model using the MNIST dataset. The model architecture comprises convolutional layers, pooling layers, dropout layers, and dense layers. Augmentation techniques are applied to generate augmented images for training.

License 📜

This project is licensed under the MIT License.