This is a workshop for Python developpers with no previous experience in Machine Learning (but some programming knowledge).
To run it, you have a few options:
-
If you like to use Docker, you can just use
makeThis will create a Docker container with everything you need. There will be a link in the output, follow it in your browser. From there click on the
workfolder and open the workshop (Workshop notebook.ipynb) -
If you'll rather use conda, install miniconda (instructions here). Then run
conda env create -n ml-workshop -f requirements.ymland
conda activate ml-workshopto activate the environement. Then runjupyter notebookto start the notebook. -
If you're more of a pip person, create a virtual env, then:
pip install -r requirements.txt.Then run
jupyter notebookto start the notebook.