From cb8317bb4bfb6296fcfbd4d72688d8b546d4f456 Mon Sep 17 00:00:00 2001 From: Bhavay Malhotra Date: Thu, 4 Jan 2024 19:33:20 +0530 Subject: [PATCH] Changed normalisation.jl --- test/layers/normalisation.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/layers/normalisation.jl b/test/layers/normalisation.jl index 7307f3ae85..5e68a22350 100644 --- a/test/layers/normalisation.jl +++ b/test/layers/normalisation.jl @@ -1,7 +1,7 @@ using Flux, Test, Statistics, Random using Zygote: pullback, ForwardDiff -global evalwgrad(f, x...) = pullback(f, x...)[1] +evalwgrad(f, x...) = pullback(f, x...)[1] @testset "Dropout" begin @testset for rng_kwargs in ((), (; rng = MersenneTwister()))