Класичний вступний курс із сучасного Machine Learning з акцентом на практику.
https://prjctr.com/course/machine-learning-basics
-
Check your
python
andpip
verison. You need to use python 3.6 or higherpip --version
-
Install Jupyter
pip install jupyter
-
Install virtual environment
pip install virtualenv
-
Create new virtual environment in repo folder
cd machine_learning_projector
python -m venv venv
-
Activate virtual environment
source venv/bin/activate
-
Install packages
pip install numpy pandas matplotlib scikit-learn
-
Create kernel
pip install ipykernel
ipython kernel install --user --name=ml-course
-
Deactivate environment
deactivate
-
Start jupyter
cd machine_learning_projector
jupyter notebook
-
Select
ml-course
kernel