Skip to content

Commit 91fd655

Browse files
committed
Revert BatchNorm example
1 parent 9d48e51 commit 91fd655

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/layers/normalise.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@ that will be used to renormalize the input in test phase.
255255
Use [`testmode!`](@ref) during inference.
256256
257257
# Examples
258-
```jldoctest
259-
julia> m = Chain(
260-
Dense(28^2 => 64),
261-
BatchNorm(64, relu),
262-
Dense(64 => 10),
263-
BatchNorm(10),
264-
softmax);
258+
```julia
259+
m = Chain(
260+
Dense(28^2 => 64),
261+
BatchNorm(64, relu),
262+
Dense(64 => 10),
263+
BatchNorm(10),
264+
softmax)
265265
```
266266
"""
267267
mutable struct BatchNorm{F,V,N,W}

0 commit comments

Comments
 (0)