Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 439 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 439 Bytes

SimpleLinearRegression

Linear regression from stratch using only Numpy

Required libraries

  • Numpy
  • Matplotlib
  • Sci-kit learn
  • JupyterLab

installation

Classic

pip install -r requirements.txt
jupyter lab

Portable

Manual

python -m venv venv
source venv/{bin,Scripts}/activate
pip install -r requirements.txt
jupyter lab

Automated

./helper.sh install
./helper.sh launch