From e4b6f8017746c94f5a2a15da5b67f3a919b30f6b Mon Sep 17 00:00:00 2001 From: Aurora Rossi Date: Sun, 18 Aug 2024 09:58:09 +0200 Subject: [PATCH] Fix --- src/layers/temporalconv.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layers/temporalconv.jl b/src/layers/temporalconv.jl index aab7ab02a..44688cea4 100644 --- a/src/layers/temporalconv.jl +++ b/src/layers/temporalconv.jl @@ -35,8 +35,8 @@ function TGCNCell(ch::Pair{Int, Int}; end function (tgcn::TGCNCell)(h, g::GNNGraph, x::AbstractArray) - x̃ = l.conv(g, x) - h, x̃ = l.gru(h, x̃) + x̃ = tgcn.conv(g, x) + h, x̃ = tgcn.gru(h, x̃) return h, x̃ end