Remove double docstring

This commit is contained in:
Manjunath Bhat 2019-08-31 01:35:40 +05:30 committed by GitHub
parent 2f1a187665
commit c3cc4bf966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -43,12 +43,6 @@ function Base.show(io::IO, d::Dropout)
print(io, ")")
end
"""
AlphaDropout(p)
A dropout layer. It is used in Self-Normalizing Neural Networks.
(https://papers.nips.cc/paper/6698-self-normalizing-neural-networks.pdf)
The AlphaDropout layer ensures that mean and variance of activations remains the same as before.
"""
"""
AlphaDropout(p)
A dropout layer. It is used in Self-Normalizing Neural Networks.