Skip to content

Commit

Permalink
Update conv.jl: out dims
Browse files Browse the repository at this point in the history
  • Loading branch information
rbSparky authored Sep 30, 2024
1 parent a6a11bd commit c69849f
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 @@ -928,7 +928,7 @@ function (l::TransformerConv)(g, x, e, ps, st)
BN2 = l.BN2 === nothing ? nothing :
StatefulLuxLayer{true}(l.BN2, ps.BN2, _getstate(st, :BN2))
m = (; W1, W2, W3, W4, W5, W6, FF, BN1, BN2, l.sqrt_out,
l.heads, l.concat, l.skip_connection, l.add_self_loops, l.in_dims)
l.heads, l.concat, l.skip_connection, l.add_self_loops, l.in_dims, l.out_dims)
return GNNlib.transformer_conv(m, g, x, e), st
end

Expand Down

0 comments on commit c69849f

Please sign in to comment.