Skip to content

CodeSeoul/machine-learning

Repository files navigation

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