After cloning, please make sure to have the Anaconda or Miniconda package management software installed.
Local environments and common ML packages are tricky when there are M1, M2, Intel, ... etc. processors out there that support different things. This process has been tested on the following systems and are known to work:
- Apple Silicon Macs
conda update conda -y
conda create --name ml-workshop python=3.8
conda activate ml-workshop
conda install --file requirements.txt
If step 4 fails, try the pip variant: pip install -r requirements.txt
. Otherwise, the Google Colab Online Mirror option below is a safe alternative.
If you are having trouble getting this repository up and running, the jupyter notebook code is also hosted here on Google Colab. Make a copy and you are free to run the code without having to install anything on your local machine.
This code is adapted from Scikit-Learn's MNIST Example