Setup

There are many online courses explaining different pieces of ML. Very few of them answer how to really apply ML in production problems. We share some best practices on how to build ML systems. All built with simple examples in Python but general enough for non-pythonists too.

Prepare Working Environment

  1. Run make install - sets up virtual environment in venv directory and installs dependencies from requirements.txt

  2. Run jupyter lab

  3. Open default lab url

  4. Open notebook

Editing Jupyter Book Export

jupyter-book clean book/
jupyter-book build book/

It is possible to setup entr to get the book rebuild with every new .md or .ipynb file saved with

find book -path book/_build -prune -false -o \( -name '*.ipynb' -o -name '*.md' \) | entr jupyter-book build book