Skip to content

Commit 6845675

Browse files
Update docs/src/models/overview.md
Co-authored-by: Kyle Daruwalla <daruwalla.k.public@icloud.com>
1 parent 0701875 commit 6845675

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/models/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ julia> parameters = Flux.params(predict)
117117
Params([[-0.99009055], [0.0]])
118118
```
119119

120-
These are the parameters Flux will change, one step at a time, to improve predictions. Each time a parameter in your model changes, the `parameters` variable updates automatically. Each of the parameters comes from the `predict` model:
120+
These are the parameters Flux will change, one step at a time, to improve predictions. At each step, the contents of this `Params` object changes too, since it is just a collection of references to the mutable arrays inside the model:
121121

122122
```
123123
julia> predict.weight in parameters, predict.bias in parameters

0 commit comments

Comments
 (0)