Skip to content

Commit 3f55e25

Browse files
Update src/layers/conv.jl
Co-authored-by: Carlo Lucibello <[email protected]>
1 parent 22fdbae commit 3f55e25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layers/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1165,7 +1165,7 @@ function (l::GMMConv)(g::GNNGraph, x::AbstractMatrix, u::AbstractMatrix)
11651165

11661166
x = propagate(e_mul_xj, g, +, xj=xj, e=w)
11671167
x = dropdims(mean(x, dims=2), dims=2)
1168-
x = 1/d.*x
1168+
x = 1 / d .* x
11691169

11701170
return l.σ(x .+ l.bias)
11711171
end

0 commit comments

Comments
 (0)