From eca6f0a25c439014ad80e2d5cb776e27b9f4a494 Mon Sep 17 00:00:00 2001 From: Ross Wightman Date: Fri, 26 Aug 2022 11:29:09 -0700 Subject: [PATCH] Fix syntax error (extra dataclass comma) in maxxvit.py --- timm/models/maxxvit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timm/models/maxxvit.py b/timm/models/maxxvit.py index 82840523..2475e809 100644 --- a/timm/models/maxxvit.py +++ b/timm/models/maxxvit.py @@ -129,7 +129,7 @@ class MaxxVitTransformerCfg: dim_head: int = 32 expand_ratio: float = 4.0 expand_first: bool = True - shortcut_bias: bool = True, + shortcut_bias: bool = True attn_bias: bool = True attn_drop: float = 0. proj_drop: float = 0.