Skip to content

Commit 5ffefc5

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 f25f489 commit 5ffefc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/getting_started/linear_regression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ julia> std(x_train_n)
307307
The standard deviation is now close to one! Our data is ready!
308308

309309
### Model
310-
We can now directly use `Flux` and let it do all the work internally! Let's define a model that takes in 13 inputs (13 features) and gives us a single output (the label). We will then pass our entire data through this model in one go, and `Flux` will handle everything for us! Remember, we could have declared a model in plain `Julia` as well. The model will have 14 parameters, 13 weights, and one bias.
310+
We can now directly use `Flux` and let it do all the work internally! Let's define a model that takes in 13 inputs (13 features) and gives us a single output (the label). We will then pass our entire data through this model in one go, and `Flux` will handle everything for us! Remember, we could have declared a model in plain `Julia` as well. The model will have 14 parameters: 13 weights and 1 bias.
311311

312312
```jldoctest linear_regression_complex
313313
julia> model = Dense(13 => 1)

0 commit comments

Comments
 (0)