Skip to content

Commit b6c1a27

Browse files
committed
fix
1 parent 01767ee commit b6c1a27

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
@@ -681,7 +681,7 @@ LuxCore.parameterlength(l::NNConv) = l.use_bias ? l.in_dims * l.out_dims + l.out
681681
LuxCore.outputsize(d::NNConv) = (d.out_dims,)
682682

683683

684-
function Base.show(io::IO, l::GINConv)
684+
function Base.show(io::IO, l::NNConv)
685685
print(io, "NNConv($(l.nn)")
686686
print(io, ", $(l.ϵ)")
687687
l.σ == identity || print(io, ", ", l.σ)

0 commit comments

Comments
 (0)