Skip to content

Commit 1509b88

Browse files
Saransh-cppmcabbott
andcommitted
Update docs/src/getting_started/linear_regression.md
Co-authored-by: Michael Abbott <32575566+mcabbott@users.noreply.github.com>
1 parent 893e14e commit 1509b88

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs/src/getting_started/linear_regression.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ Let us start by building a simple linear regression model. This model would be t
88
Importing the required `Julia` packages -
99

1010
```jldoctest linear_regression_simple
11-
julia> using Flux
12-
13-
julia> using Plots
11+
julia> using Flux, Plots
1412
```
1513
### Generating a dataset
1614
The data usually comes from the real world, which we will be exploring in the last part of this guide, but we don't want to jump straight to the relatively harder part. Here we will generate the `x`s of our data points and map them to the respective `y`s using a simple function. Remember, here each `x` is equivalent to a feature, and each `y` is the corresponding label. Combining all the `x`s and `y`s would create the complete dataset.

0 commit comments

Comments
 (0)