Fix typo in Maxout

This commit is contained in:
Zachary P Christensen 2019-04-19 17:02:26 -04:00 committed by GitHub
parent 05b1844419
commit 83eb5a1df6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ will construct a `Maxout` layer over 4 internal dense linear layers,
each identical in structure (784 inputs, 128 outputs).
```julia
insize = 784
outsie = 128
outsize = 128
Maxout(()->Dense(insize, outsize), 4)
```
"""