Skip to content

Commit fb9646e

Browse files
cleanup
1 parent 37d7677 commit fb9646e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layers/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ function (l::GATConv)(g::GNNGraph, x::AbstractMatrix)
280280
if !l.concat
281281
x = mean(x, dims=2)
282282
end
283-
x = reshape(x, :, size(x, 3))
283+
x = reshape(x, :, size(x, 3)) # return a matrix
284284
x = l.σ.(x .+ l.bias)
285285

286286
return x

0 commit comments

Comments
 (0)