Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
open_clip_pytorch
Commits
6f43e8fa
Commit
6f43e8fa
authored
Sep 14, 2024
by
mashun1
Browse files
open_clip
parents
Pipeline
#1689
canceled with stages
Changes
217
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
371 additions
and
0 deletions
+371
-0
src/open_clip/model_configs/convnext_base.json
src/open_clip/model_configs/convnext_base.json
+20
-0
src/open_clip/model_configs/convnext_base_w.json
src/open_clip/model_configs/convnext_base_w.json
+20
-0
src/open_clip/model_configs/convnext_base_w_320.json
src/open_clip/model_configs/convnext_base_w_320.json
+20
-0
src/open_clip/model_configs/convnext_large.json
src/open_clip/model_configs/convnext_large.json
+20
-0
src/open_clip/model_configs/convnext_large_d.json
src/open_clip/model_configs/convnext_large_d.json
+20
-0
src/open_clip/model_configs/convnext_large_d_320.json
src/open_clip/model_configs/convnext_large_d_320.json
+20
-0
src/open_clip/model_configs/convnext_small.json
src/open_clip/model_configs/convnext_small.json
+20
-0
src/open_clip/model_configs/convnext_tiny.json
src/open_clip/model_configs/convnext_tiny.json
+20
-0
src/open_clip/model_configs/convnext_xlarge.json
src/open_clip/model_configs/convnext_xlarge.json
+20
-0
src/open_clip/model_configs/convnext_xxlarge.json
src/open_clip/model_configs/convnext_xxlarge.json
+20
-0
src/open_clip/model_configs/convnext_xxlarge_320.json
src/open_clip/model_configs/convnext_xxlarge_320.json
+20
-0
src/open_clip/model_configs/mt5-base-ViT-B-32.json
src/open_clip/model_configs/mt5-base-ViT-B-32.json
+14
-0
src/open_clip/model_configs/mt5-xl-ViT-H-14.json
src/open_clip/model_configs/mt5-xl-ViT-H-14.json
+15
-0
src/open_clip/model_configs/nllb-clip-base-siglip.json
src/open_clip/model_configs/nllb-clip-base-siglip.json
+19
-0
src/open_clip/model_configs/nllb-clip-base.json
src/open_clip/model_configs/nllb-clip-base.json
+16
-0
src/open_clip/model_configs/nllb-clip-large-siglip.json
src/open_clip/model_configs/nllb-clip-large-siglip.json
+19
-0
src/open_clip/model_configs/nllb-clip-large.json
src/open_clip/model_configs/nllb-clip-large.json
+17
-0
src/open_clip/model_configs/roberta-ViT-B-32.json
src/open_clip/model_configs/roberta-ViT-B-32.json
+15
-0
src/open_clip/model_configs/swin_base_patch4_window7_224.json
...open_clip/model_configs/swin_base_patch4_window7_224.json
+18
-0
src/open_clip/model_configs/vit_medium_patch16_gap_256.json
src/open_clip/model_configs/vit_medium_patch16_gap_256.json
+18
-0
No files found.
src/open_clip/model_configs/convnext_base.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
512
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_base"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
224
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
512
,
"heads"
:
8
,
"layers"
:
12
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_base_w.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
640
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_base"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
256
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
640
,
"heads"
:
10
,
"layers"
:
12
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_base_w_320.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
640
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_base"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
320
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
640
,
"heads"
:
10
,
"layers"
:
12
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_large.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
768
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_large"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
224
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
768
,
"heads"
:
12
,
"layers"
:
12
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_large_d.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
768
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_large"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"mlp"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
256
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
768
,
"heads"
:
12
,
"layers"
:
16
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_large_d_320.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
768
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_large"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"mlp"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
320
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
768
,
"heads"
:
12
,
"layers"
:
16
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_small.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
512
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_small"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
224
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
512
,
"heads"
:
8
,
"layers"
:
12
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_tiny.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
1024
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_tiny"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
224
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
512
,
"heads"
:
8
,
"layers"
:
12
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_xlarge.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
1024
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_xlarge"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
256
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
1024
,
"heads"
:
16
,
"layers"
:
20
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_xxlarge.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
1024
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_xxlarge"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
256
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
1024
,
"heads"
:
16
,
"layers"
:
24
}
}
\ No newline at end of file
src/open_clip/model_configs/convnext_xxlarge_320.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
1024
,
"vision_cfg"
:
{
"timm_model_name"
:
"convnext_xxlarge"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"timm_drop"
:
0.0
,
"timm_drop_path"
:
0.1
,
"image_size"
:
320
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
1024
,
"heads"
:
16
,
"layers"
:
24
}
}
\ No newline at end of file
src/open_clip/model_configs/mt5-base-ViT-B-32.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
512
,
"vision_cfg"
:
{
"image_size"
:
224
,
"layers"
:
12
,
"width"
:
768
,
"patch_size"
:
32
},
"text_cfg"
:
{
"hf_model_name"
:
"google/mt5-base"
,
"hf_tokenizer_name"
:
"google/mt5-base"
,
"hf_pooler_type"
:
"mean_pooler"
}
}
src/open_clip/model_configs/mt5-xl-ViT-H-14.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
1024
,
"vision_cfg"
:
{
"image_size"
:
224
,
"layers"
:
32
,
"width"
:
1280
,
"head_width"
:
80
,
"patch_size"
:
14
},
"text_cfg"
:
{
"hf_model_name"
:
"google/mt5-xl"
,
"hf_tokenizer_name"
:
"google/mt5-xl"
,
"hf_pooler_type"
:
"mean_pooler"
}
}
src/open_clip/model_configs/nllb-clip-base-siglip.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
768
,
"custom_text"
:
true
,
"init_logit_bias"
:
-10
,
"vision_cfg"
:
{
"image_size"
:
384
,
"timm_model_name"
:
"vit_base_patch16_siglip_384"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
"map"
,
"timm_proj"
:
"none"
},
"text_cfg"
:
{
"hf_model_name"
:
"facebook/nllb-200-distilled-600M"
,
"hf_tokenizer_name"
:
"facebook/nllb-200-distilled-600M"
,
"hf_proj_type"
:
"linear"
,
"hf_pooler_type"
:
"cls_pooler"
}
}
\ No newline at end of file
src/open_clip/model_configs/nllb-clip-base.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
512
,
"vision_cfg"
:
{
"image_size"
:
224
,
"layers"
:
12
,
"width"
:
768
,
"patch_size"
:
32
},
"text_cfg"
:
{
"hf_model_name"
:
"facebook/nllb-200-distilled-600M"
,
"hf_tokenizer_name"
:
"facebook/nllb-200-distilled-600M"
,
"hf_proj_type"
:
"linear"
,
"hf_pooler_type"
:
"cls_pooler"
}
}
\ No newline at end of file
src/open_clip/model_configs/nllb-clip-large-siglip.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
1152
,
"custom_text"
:
true
,
"init_logit_bias"
:
-10
,
"vision_cfg"
:
{
"image_size"
:
384
,
"timm_model_name"
:
"vit_so400m_patch14_siglip_384"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
"map"
,
"timm_proj"
:
"none"
},
"text_cfg"
:
{
"hf_model_name"
:
"facebook/nllb-200-distilled-1.3B"
,
"hf_tokenizer_name"
:
"facebook/nllb-200-distilled-1.3B"
,
"hf_proj_type"
:
"linear"
,
"hf_pooler_type"
:
"cls_pooler"
}
}
\ No newline at end of file
src/open_clip/model_configs/nllb-clip-large.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
1024
,
"vision_cfg"
:
{
"image_size"
:
224
,
"layers"
:
32
,
"width"
:
1280
,
"head_width"
:
80
,
"patch_size"
:
14
},
"text_cfg"
:
{
"hf_model_name"
:
"facebook/nllb-200-distilled-1.3B"
,
"hf_tokenizer_name"
:
"facebook/nllb-200-distilled-1.3B"
,
"hf_proj_type"
:
"linear"
,
"hf_pooler_type"
:
"cls_pooler"
}
}
\ No newline at end of file
src/open_clip/model_configs/roberta-ViT-B-32.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
512
,
"quick_gelu"
:
true
,
"vision_cfg"
:
{
"image_size"
:
224
,
"layers"
:
12
,
"width"
:
768
,
"patch_size"
:
32
},
"text_cfg"
:
{
"hf_model_name"
:
"roberta-base"
,
"hf_tokenizer_name"
:
"roberta-base"
,
"hf_pooler_type"
:
"mean_pooler"
}
}
src/open_clip/model_configs/swin_base_patch4_window7_224.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
640
,
"vision_cfg"
:
{
"timm_model_name"
:
"swin_base_patch4_window7_224"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"image_size"
:
224
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
640
,
"heads"
:
10
,
"layers"
:
12
}
}
\ No newline at end of file
src/open_clip/model_configs/vit_medium_patch16_gap_256.json
0 → 100755
View file @
6f43e8fa
{
"embed_dim"
:
512
,
"vision_cfg"
:
{
"timm_model_name"
:
"vit_medium_patch16_gap_256"
,
"timm_model_pretrained"
:
false
,
"timm_pool"
:
""
,
"timm_proj"
:
"linear"
,
"image_size"
:
256
},
"text_cfg"
:
{
"context_length"
:
77
,
"vocab_size"
:
49408
,
"width"
:
512
,
"heads"
:
8
,
"layers"
:
12
}
}
\ No newline at end of file
Prev
1
…
5
6
7
8
9
10
11
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment