Skip to content

Commit 5cac6f6

Browse files
committed
Remove more wordiness
1 parent 94be20f commit 5cac6f6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/layers/normalise.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ end
5151
5252
Dropout layer. In the forward pass, apply the [`Flux.dropout`](@ref) function on the input.
5353
54-
To apply dropout along an certain dimension (e.g. zeroing out an entire channel's feature map),
55-
specify the `dims` keyword (i.e. `Dropout(p; dims = 3)` is a 2D dropout layer on WHCN input).
54+
To apply dropout along certain dimension(s), specify the `dims` keyword.
55+
e.g. `Dropout(p; dims = 3)` will randomly zero out entire channels on WHCN input
56+
(also called 2D dropout).
5657
5758
Does nothing to the input once [`Flux.testmode!`](@ref) is `true`.
5859
"""

0 commit comments

Comments
 (0)