From e264e8856f9afd735797e90daf94eedccd679108 Mon Sep 17 00:00:00 2001 From: Kashif Rasul Date: Tue, 16 Aug 2022 23:19:05 +0200 Subject: [PATCH] typo --- perceiverar/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perceiverar/module.py b/perceiverar/module.py index d9e200a..5267d8f 100644 --- a/perceiverar/module.py +++ b/perceiverar/module.py @@ -410,7 +410,7 @@ class PerceiverARModel(nn.Module): perciever_input = torch.cat((lags, features), dim=-1) prefix, x = ( - perciever_input[:, : self.context_length - 1, ...],, + perciever_input[:, : self.context_length - 1, ...], perciever_input[:, self.context_length - 1 :, ...], )