Skip to content

Commit d3e83a1

Browse files
committed
Add in12k fine-tuned convnext_xxlarge
1 parent 855719f commit d3e83a1

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* DINOv2 'register' ViT model weights added
3232
* Add `quickgelu` ViT variants for OpenAI, DFN, MetaCLIP weights that use it (less efficient)
3333
* Improved typing added to ResNet, MobileNet-v3 thanks to [Aryan](https://github.com/a-r-r-o-w)
34+
* ImageNet-12k fine-tuned (from LAION-2B CLIP) `convnext_xxlarge`
3435
* 0.9.9 release
3536

3637
### Oct 20, 2023

timm/models/convnext.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,10 @@ def _cfgv2(url='', **kwargs):
828828
hf_hub_id='timm/',
829829
mean=OPENAI_CLIP_MEAN, std=OPENAI_CLIP_STD, num_classes=11821,
830830
input_size=(3, 384, 384), pool_size=(12, 12), crop_pct=1.0, crop_mode='squash'),
831+
'convnext_xxlarge.clip_laion2b_soup_ft_in12k': _cfg(
832+
hf_hub_id='timm/',
833+
mean=OPENAI_CLIP_MEAN, std=OPENAI_CLIP_STD, num_classes=11821,
834+
input_size=(3, 256, 256), pool_size=(8, 8), crop_pct=1.0),
831835

832836
# CLIP original image tower weights
833837
'convnext_base.clip_laion2b': _cfg(

0 commit comments

Comments
 (0)