blob: 069ea5001161d0addf54845d258642713f910345 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# ft_linear_regression
ft\_linear\_regression project of school 42

## Usage
```
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).
|