From 3b913cd501c2e76a5b5f57039dea760f4a0be895 Mon Sep 17 00:00:00 2001 From: janEbert Date: Mon, 7 Oct 2019 16:43:20 +0200 Subject: [PATCH] Fix rebase changes - Remove `Flux.testmode!` reference (the function no longer exists). - Change TrackedArray to Array in doctest (Tracker -> Zygote). --- src/layers/normalise.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/normalise.jl b/src/layers/normalise.jl index 76d312bf..29725066 100644 --- a/src/layers/normalise.jl +++ b/src/layers/normalise.jl @@ -30,7 +30,7 @@ end """ Dropout(p, dims = :) -A Dropout layer. In the forward pass, applies the [`dropout`](@ref) function on the input. +Dropout layer. In the forward pass, applies the [`Flux.dropout`](@ref) function on the input. Does nothing to the input once [`Flux.testmode!`](@ref) is `true`. """