Welcome to our first course on introducting the basic concepts underlying machine learning and how they can be applied. The course is split in 4 sessions:
- What is Machine Learning?
- Supervised Learning
- Unsupervised Learning
- Dimensionality Reduction
Every session is based on a jupyter notebook that you can execute via https://colab.research.google.com.
sklearn
pandas
numpy
matplotlib
seaborn
Navigate on the terminal into this folder and run it with either:
jupyter notebook/lab:
jupyter notebook
orjupyter lab
docker:
docker build -t ml_cnag-crg_notebook .
#notebook
docker run -p 8888:8888 ml_cnag-crg_notebook
#lab
docker run -p 8888:8888 -e JUPYTER_ENABLE_LAB=yes ml_cnag-crg_notebook
docker-compose:
#notebook
docker-compose up
#lab
#uncomment below in docker-compose.yaml to use jupyterlab
#environment:
#- JUPYTER_ENABLE_LAB=yes
CRG-CNAG PhD students: