trail_seminar

CC0-1.0 License

Stars
10

TRAIL seminar

Running the tutorial locally

Dependencies

The tutorials will require the following packages:

  • python
  • jupyter
  • scikit-learn
  • pandas
  • matplotlib
  • seaborn
  • shap
  • pyworld3

Local install

We provide both requirements.txt and environment.yml to install packages.

You can install the packages using pip:

$ pip install -r requirements.txt

You can create an sklearn-tutorial conda environment executing:

$ conda env create -f environment.yml

and later activate the environment:

$ conda activate sklearn-tutorial

You might also only update your current environment using:

$ conda env update --prefix ./env --file environment.yml  --prune