From cf28c57fda98ffc26d462f92c07532733ea97645 Mon Sep 17 00:00:00 2001 From: Fredo Guan Date: Tue, 17 Jan 2023 11:58:27 -0800 Subject: [PATCH] Update metaformers.py --- timm/models/metaformers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timm/models/metaformers.py b/timm/models/metaformers.py index a074d3fe..9ae7701f 100644 --- a/timm/models/metaformers.py +++ b/timm/models/metaformers.py @@ -822,7 +822,7 @@ class MetaFormer(nn.Module): #x = self.stages(x) for i, stage in enumerate(self.stages): x=stage(x) - print(x[0]) + print(x[0][0][0][0]) return x