Digit Delineator is an application that predicts handwritten digits. It uses a model trained on the MNIST dataset with TensorFlow and Keras, and the user interface is built with Streamlit.
- Clone the repository:
git clone https://github.com/achrafib1/Digit-Delineator.git
- Navigate to the project directory:
cd Digit-Delineator
- (Recommended) Create a virtual environment:
python3 -m venv env
-
Activate the virtual environment:
- On Windows:
.\env\Scripts\activate
- On Unix or MacOS:
source env/bin/activate
- On Windows:
-
Install the required packages:
pip install -r requirements.txt
To run the application, use the following command:
-
On Windows, use:
streamlit run src\app.py
-
On macOS or Linux, use:
streamlit run src/app.py
Then, open your web browser and go to http://localhost:8501
to view the app.