An open API service indexing awesome lists of open source software.

https://github.com/julianfbeck/ml-uebungen

ML-Uebungen: First master semester at HSKA
https://github.com/julianfbeck/ml-uebungen

hska jupyter notebooks

Last synced: about 2 months ago
JSON representation

ML-Uebungen: First master semester at HSKA

Awesome Lists containing this project

README

        

# ML Übungen
Create new conda Env:
```shell
conda create -n ml python=3.7
```

Activate Env:
```shell
conda activate ml
```

Install numpy, matplotlib, pandas
```shell
conda install matplotlib
conda install numpy
conda install pandas
```
Install jupyter to show notebooks
```shell
conda install jupyter
```

Start jupyter notebook in current folder
```shell
jupyter notebook
```