removed extra parenthesis

This commit is contained in:
Naba7 2019-09-14 10:56:17 +05:30
parent bdeb9c6d58
commit a600a9ceed
1 changed files with 1 additions and 1 deletions

View File

@ -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