We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d48e51 commit 91fd655Copy full SHA for 91fd655
src/layers/normalise.jl
@@ -255,13 +255,13 @@ that will be used to renormalize the input in test phase.
255
Use [`testmode!`](@ref) during inference.
256
257
# 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);
+```julia
+m = Chain(
+ Dense(28^2 => 64),
+ BatchNorm(64, relu),
+ Dense(64 => 10),
+ BatchNorm(10),
+ softmax)
265
```
266
"""
267
mutable struct BatchNorm{F,V,N,W}
0 commit comments