Skip to content

Commit 9141b63

Browse files
whitespace
Co-authored-by: Carlo Lucibello <[email protected]>
1 parent bf3e77e commit 9141b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layers/basic.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ end
154154
@functor Dense
155155

156156
function (a::Dense)(x::AbstractVecOrMat)
157-
W, b= a.weight, a.bias
157+
W, b = a.weight, a.bias
158158
σ = NNlib.fast_act(a.σ, x) # replaces tanh => tanh_fast, etc
159159
return σ.(W*x .+ b)
160160
end

0 commit comments

Comments
 (0)