removed extra parenthesis

This commit is contained in:
Naba7 2019-09-14 10:56:17 +05:30
parent bdeb9c6d58
commit a600a9ceed

View File

@ -5,7 +5,7 @@ Consider a [simple linear regression](../models/basics.md). We create some dummy
```julia ```julia
using Flux using Flux
W = rand(2, 5)) W = rand(2, 5)
b = rand(2) b = rand(2)
predict(x) = (W * x) .+ b predict(x) = (W * x) .+ b