Merge pull request #745 from Tokazama/patch-1

Fix typo in Maxout
This commit is contained in:
Dhairya Gandhi 2019-04-20 13:09:28 +05:30 committed by GitHub
commit 412e04fef1
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)
```
"""