Very Little typo.

This commit is contained in:
Julien Jerphanion 2018-07-18 23:20:43 +02:00 committed by GitHub
parent a0fd91b866
commit ee630a8566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ linear2 = linear(3, 2)
model(x) = linear2(σ.(linear1(x)))
model(x) # => 2-element vector
model(rand(5)) # => 2-element vector
```
Another (equivalent) way is to create a struct that explicitly represents the affine layer.