aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: bf5871b9a79ff2a1c8908a65ea7f4400bddf1b22 (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
# 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).