Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 698 Bytes

README.md

File metadata and controls

19 lines (11 loc) · 698 Bytes

Einführung in das Maschinelle Lernen

Code-Repository für den Kurs "Einführung in das Maschinelle Lernen" an der Hochschule Karlsruhe.

Setup

The recommended way to setup your development environment is to use Anaconda:

  1. Download and install Miniconda for your OS from here: https://docs.conda.io/en/latest/miniconda.html

  2. Start the conda terminal and create a new environment for this course:

conda create --name ml-course python=3.8

  1. Activate this environment:

conda activate ml-course

  1. Install the following packages: numpy, pandas, matplotlib, scikit-learn.

conda install numpy pandas matplotlib scikit-learn jupyter