Skip to content

Commit

Permalink
Update docs/src/getting_started/linear_regression.md
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Abbott <32575566+mcabbott@users.noreply.github.com>
  • Loading branch information
Saransh-cpp and mcabbott authored Aug 15, 2022
1 parent 301d4ae commit f5cfd16
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/src/getting_started/linear_regression.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ Let us start by building a simple linear regression model. This model would be t
Importing the required `Julia` packages -

```jldoctest linear_regression_simple
julia> using Flux
julia> using Plots
julia> using Flux, Plots
```
### Generating a dataset
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.
Expand Down

0 comments on commit f5cfd16

Please sign in to comment.