Purpose: teaching myself about ML following deeplearning.ai course
mkdir venv
python3 -m venv venv/
pip3 install -r requirements.txt
source venv/bin/activate
jupyter lab
The file nb/regression_one.ipynb
is and example of linear regression implemented with pandas dataframes. At the end I compare to scikit learn LinearRegression model.