removed extra parenthesis
This commit is contained in:
parent
bdeb9c6d58
commit
a600a9ceed
|
@ -5,7 +5,7 @@ Consider a [simple linear regression](../models/basics.md). We create some dummy
|
|||
```julia
|
||||
using Flux
|
||||
|
||||
W = rand(2, 5))
|
||||
W = rand(2, 5)
|
||||
b = rand(2)
|
||||
|
||||
predict(x) = (W * x) .+ b
|
||||
|
|
Loading…
Reference in New Issue