Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sreeeswaran/handwritten-digit-classification
This project implements a Convolutional Neural Network (CNN) to classify handwritten digits from the MNIST dataset. The model is built using TensorFlow and Keras.
https://github.com/sreeeswaran/handwritten-digit-classification
classification-model cnn cnn-classification cnn-keras deep-learning handwritten-digit-recognition handwritten-text-recognition keras keras-classification-models keras-models keras-tensorflow mnist mnist-classification mnist-dataset mnist-handwriting-recognition tensorflow
Last synced: 5 days ago
JSON representation
This project implements a Convolutional Neural Network (CNN) to classify handwritten digits from the MNIST dataset. The model is built using TensorFlow and Keras.
- Host: GitHub
- URL: https://github.com/sreeeswaran/handwritten-digit-classification
- Owner: SreeEswaran
- License: apache-2.0
- Created: 2024-07-30T18:08:48.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T17:05:17.000Z (about 2 months ago)
- Last Synced: 2024-10-10T08:23:10.998Z (29 days ago)
- Topics: classification-model, cnn, cnn-classification, cnn-keras, deep-learning, handwritten-digit-recognition, handwritten-text-recognition, keras, keras-classification-models, keras-models, keras-tensorflow, mnist, mnist-classification, mnist-dataset, mnist-handwriting-recognition, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Handwritten-digit-Classification
This project implements a Convolutional Neural Network (CNN) to classify handwritten digits from the MNIST dataset. The model is built using TensorFlow and Keras.
## Project Structure
- `data`: Contains information on data acquisition.
- `models`: Stores the trained models.
- `notebooks`: Jupyter notebooks for various stages of the project.
- `scripts`: Python scripts for data processing, model building, training, evaluation, and visualization.## Installation
1. Clone the repository:
```bash
git clone https://github.com/SreeEswaran/Handwritten-digit-Classification.git
cd Handwritten-digit-Classification
```
2. Create a virtual environment and activate it
```bash
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```
3. Install the required packages:
```bash
pip install -r requirements.txt
```
4. To run the model
```bash
python scripts/model_training.py
```