Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.48 KB

README.md

File metadata and controls

52 lines (38 loc) · 1.48 KB

Machine learning

Description

This is the repo planned to contain notes from ML related meetups.

Setup

As usual, you should be using either a virtual environment or Docker container.

If you want to use a virtual environment, you can follow the below steps:

MacOS / Linux

python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m jupyter notebook

Windows

python -m venv venv
.\venv\Scripts\activate.bat
% .\venv\Scripts\activate.ps1 if you're on PowerShell
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m jupyter notebook

Meetups