Skip to content

Commit

Permalink
Back to previous version
Browse files Browse the repository at this point in the history
  • Loading branch information
aurorarossi committed Aug 15, 2024
1 parent c06a465 commit d700ace
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/layers/temporalconv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ function TGCNCell(ch::Pair{Int, Int};
end

function (tgcn::TGCNCell)(h, g::GNNGraph, x::AbstractArray)
return GNNlib.tgcn_conv(tgcn, h, g, x)
= l.conv(g, x)
h, x̃ = l.gru(h, x̃)
return h, x̃
end

function Base.show(io::IO, tgcn::TGCNCell)
Expand Down

0 comments on commit d700ace

Please sign in to comment.