From b21e6642c591962974212be2dbc965793df6bd06 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 23 Jan 2020 14:39:15 +0100 Subject: Fixing Model, still normalization problem --- README.md | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 6bde654..bf5871b 100644 --- a/README.md +++ b/README.md @@ -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). -- cgit