From 568ecb1c979a6b05e379d13c2ed2d6ed45f2a71b Mon Sep 17 00:00:00 2001 From: Kyle Daruwalla Date: Sat, 29 Feb 2020 16:25:18 -0600 Subject: [PATCH] Removed trainmode from tests --- test/layers/normalisation.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/test/layers/normalisation.jl b/test/layers/normalisation.jl index 79bd9c77..f9d4849a 100644 --- a/test/layers/normalisation.jl +++ b/test/layers/normalisation.jl @@ -2,7 +2,6 @@ using Flux, Test, Statistics using Zygote: pullback evalwgrad(f, x...) = pullback(f, x...)[1] -trainmode(f) = (testmode!(f, false); f) @testset "Dropout" begin x = [1.,2.,3.]