zeinlol / projector_course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Machine Learning Beginning Course

Класичний вступний курс із сучасного Machine Learning з акцентом на практику.

https://prjctr.com/course/machine-learning-basics

Installation

  1. Check your python and pip verison. You need to use python 3.6 or higher

    pip --version

  2. Install Jupyter

    pip install jupyter

  3. Install virtual environment

    pip install virtualenv

  4. Create new virtual environment in repo folder

    cd machine_learning_projector

    python -m venv venv

  5. Activate virtual environment

    source venv/bin/activate

  6. Install packages

    pip install numpy pandas matplotlib scikit-learn

  7. Create kernel

    pip install ipykernel

    ipython kernel install --user --name=ml-course

  8. Deactivate environment

    deactivate

Usage

  1. Start jupyter

    cd machine_learning_projector

    jupyter notebook

  2. Select ml-course kernel

About


Languages

Language:Jupyter Notebook 100.0%