Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rbSparky committed Aug 8, 2024
1 parent 5c0c5a8 commit 79f3115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNNLux/src/layers/conv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ end
function (l::MEGNetConv)(g, x, e, ps, st)
ϕe = StatefulLuxLayer{true}(l.ϕe, ps.ϕe, _getstate(st, :ϕe))
ϕv = StatefulLuxLayer{true}(l.ϕv, ps.ϕv, _getstate(st, :ϕv))
m = (; ϕe, ϕv, l.residual, l.num_features)
m = (; ϕe, ϕv)
return GNNlib.megnet_conv(m, g, x, e), st
end

Expand Down

0 comments on commit 79f3115

Please sign in to comment.