From 4daa40527b41389af1eaee850012b40b829712ab Mon Sep 17 00:00:00 2001 From: thanhvc3 Date: Sun, 28 Apr 2024 15:08:08 +0700 Subject: [PATCH] try gtp vit --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index a2fb3f8..05d6a2c 100644 --- a/models.py +++ b/models.py @@ -596,7 +596,7 @@ class FouriER(torch.nn.Module): graph = degree @ graph @ degree for idx, block in enumerate(self.network): - x = block(x) + x = block(x, graph) # output only the features of last layer for image classification return x