conda create --name {env_name} python==3.9 conda create --name digits python==3.9
conda activate {env_name} conda activate digits
pip install -r requirements.txt
python plot_digits_classification.py
Two places of randomness
- Create the split
- Freezing the data, In this code the dataset is frozen because line 67 shuffel=False
- Data order (Learning is iterative)
- Model:
- weight initialization
export FLASK_APP=api/app flask run