Skip to content

Commit bd3bac3

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

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
@@ -1153,7 +1153,7 @@ function (l::GMMConv)(g::GNNGraph, x::AbstractMatrix, u::AbstractMatrix)
11531153

11541154
num_edges = g.num_edges
11551155
d = degree(g, dir=:in)
1156-
u = reshape(u,(num_edges, 1, l.u_dim))
1156+
u = reshape(u, (num_edges, 1, l.u_dim))
11571157
mu = reshape(l.mu, (1, l.n_kernel, l.u_dim))
11581158

11591159
w = -0.5*(u.-mu).^2

0 commit comments

Comments
 (0)