Each Jupyter notebook contains a problem to be solved with ML. The data is described and can be obtained in each notebook. Some of it is downloaded from somewhere, while others are simply randomly generated on-the-fly.
The following instructions show how to setup your environment, so that you can easily play with the data.
All the data used in the examples are produced on-the-fly for demonstration purposes, or are taken from public and open resources.
Using a virtual environment,
the setup would be the following (for an environment called env
, but use the name
you prefer):
# create the environment env
python -m venv env
# load it
source env/bin/activate
# update pip
pip install -U pip
# install some packages to get started
pip install -r requirements.txt
# play with the notebooks ...
jupyter lab
# when you are done:
deactivate