diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 29 |
1 files changed, 27 insertions, 2 deletions
@@ -2,6 +2,31 @@ ft\_linear\_regression project of school 42 -# Explaination +## Usage -Check out the jupyter notebook, markdown version [here](./notebook/ft_linear_regression_notebook.md). +``` +cd src +python cli.py --help +``` + +### Train model + +``` +python cli.py train +``` + +### Output model cost + +``` +python cli.py cost +``` + +### Plot model and dataset + +``` +python cli.py plot +``` + +## Notebook + +Check out the jupyter notebook where I try to explain the algorithm [here](./ft_linear_regression_notebook.ipynb). |
