Skip to content

Commit

Permalink
Update conv.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
rbSparky authored Aug 4, 2024
1 parent 2585cb6 commit cd28e97
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions GNNLux/src/layers/conv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -667,17 +667,6 @@ function (l::NNConv)(g, x, edge_weight, ps, st)
return y, stnew
end

function LuxCore.initialparameters(rng::AbstractRNG, l::NNConv)
weight = l.init_weight(rng, l.out_dims, l.in_dims)
if l.use_bias
bias = l.init_bias(rng, l.out_dims)
return (; weight, bias)
else
return (; weight)
end
end

LuxCore.parameterlength(l::NNConv) = l.use_bias ? l.in_dims * l.out_dims + l.out_dims : l.in_dims * l.out_dims # nn wont affect this right?
LuxCore.outputsize(d::NNConv) = (d.out_dims,)

function Base.show(io::IO, l::GINConv)
Expand All @@ -688,4 +677,4 @@ function Base.show(io::IO, l::GINConv)
l.add_self_loops || print(io, ", add_self_loops=false")
!l.use_edge_weight || print(io, ", use_edge_weight=true")
print(io, ")")
end
end

0 comments on commit cd28e97

Please sign in to comment.