This project is an implementation of a handwritten digit recognition model using the Single-Layer Perceptron learning algorithm.
- Create a virtual environment
$ python3 -m venv myvenv
- Activate the virtual environment
$ source myvenv/bin/activate
- Install the requirements
$ pip install -r requirements.txt
- Run the tests
$ python test_feature_extraction.py
- Run the main script
$ python main.py
- Deactivate the virtual environment
$ deactivate