Skip to content

Commit

Permalink
Mismatch pretrained_cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
rwightman committed Sep 30, 2024
1 parent 5d7bd29 commit c6e5557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timm/models/convnext.py
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ def convnext_zepto_rms_ols(pretrained=False, **kwargs) -> ConvNeXt:
# timm femto variant (NOTE: still tweaking depths, will vary between 3-4M param, current is 3.7M
model_args = dict(
depths=(2, 2, 4, 2), dims=(32, 64, 128, 256), conv_mlp=True, norm_layer='rmsnorm2d', stem_type='overlap_act')
model = _create_convnext('convnext_zepto_rms_oas', pretrained=pretrained, **dict(model_args, **kwargs))
model = _create_convnext('convnext_zepto_rms_ols', pretrained=pretrained, **dict(model_args, **kwargs))
return model


Expand Down

0 comments on commit c6e5557

Please sign in to comment.