From 9141b63982b81c5991e1698bca568739ac165228 Mon Sep 17 00:00:00 2001 From: Dhairya Gandhi Date: Tue, 18 Jan 2022 15:32:35 +0530 Subject: [PATCH] whitespace Co-authored-by: Carlo Lucibello --- src/layers/basic.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/basic.jl b/src/layers/basic.jl index f2b0511145..a08f9cded9 100644 --- a/src/layers/basic.jl +++ b/src/layers/basic.jl @@ -154,7 +154,7 @@ end @functor Dense function (a::Dense)(x::AbstractVecOrMat) - W, b= a.weight, a.bias + W, b = a.weight, a.bias σ = NNlib.fast_act(a.σ, x) # replaces tanh => tanh_fast, etc return σ.(W*x .+ b) end