Code-Repository für den Kurs "Einführung in das Maschinelle Lernen" an der Hochschule Karlsruhe.
The recommended way to setup your development environment is to use Anaconda:
-
Download and install Miniconda for your OS from here: https://docs.conda.io/en/latest/miniconda.html
-
Start the conda terminal and create a new environment for this course:
conda create --name ml-course python=3.8
- Activate this environment:
conda activate ml-course
- Install the following packages: numpy, pandas, matplotlib, scikit-learn.
conda install numpy pandas matplotlib scikit-learn jupyter