Skip to content

Commit 54957da

Browse files
committed
fix
1 parent de9a39a commit 54957da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GNNLux/src/layers/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ function (l::SGConv)(g, x, edge_weight, ps, st;
568568
conv_weight=nothing, )
569569

570570
m = (; ps.weight, bias = _getbias(ps),
571-
l.add_self_loops, l.use_edge_weight, l.σ)
571+
l.add_self_loops, l.use_edge_weight, l.k)
572572
y = GNNlib.sg_conv(m, g, x, edge_weight, conv_weight)
573573
return y, st
574574
end

0 commit comments

Comments
 (0)