-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All default pretrained weights pushed to HF hub, stragglers uploaded …
…to timm org for simplicity. * OpenAI models no longer use special path that loads from torchscript archive, use same path as other models * Handling of QuickGELU consistent btw openai and non, made a bit more safe, warn on mismatch * safetensors is default weight load if available
- Loading branch information
Showing
8 changed files
with
413 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"embed_dim": 768, | ||
"quick_gelu": true, | ||
"vision_cfg": { | ||
"image_size": 384, | ||
"layers": [ | ||
6, | ||
8, | ||
18, | ||
8 | ||
], | ||
"width": 96, | ||
"patch_size": null | ||
}, | ||
"text_cfg": { | ||
"context_length": 77, | ||
"vocab_size": 49408, | ||
"width": 768, | ||
"heads": 12, | ||
"layers": 12 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"embed_dim": 640, | ||
"quick_gelu": true, | ||
"vision_cfg": { | ||
"image_size": 288, | ||
"layers": [ | ||
4, | ||
6, | ||
10, | ||
6 | ||
], | ||
"width": 80, | ||
"patch_size": null | ||
}, | ||
"text_cfg": { | ||
"context_length": 77, | ||
"vocab_size": 49408, | ||
"width": 640, | ||
"heads": 10, | ||
"layers": 12 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"embed_dim": 1024, | ||
"quick_gelu": true, | ||
"vision_cfg": { | ||
"image_size": 448, | ||
"layers": [ | ||
3, | ||
15, | ||
36, | ||
10 | ||
], | ||
"width": 128, | ||
"patch_size": null | ||
}, | ||
"text_cfg": { | ||
"context_length": 77, | ||
"vocab_size": 49408, | ||
"width": 1024, | ||
"heads": 16, | ||
"layers": 12 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"embed_dim": 1024, | ||
"vision_cfg": { | ||
"image_size": 378, | ||
"layers": 32, | ||
"width": 1280, | ||
"head_width": 80, | ||
"patch_size": 14 | ||
}, | ||
"text_cfg": { | ||
"context_length": 77, | ||
"vocab_size": 49408, | ||
"width": 1024, | ||
"heads": 16, | ||
"layers": 24 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"embed_dim": 768, | ||
"quick_gelu": true, | ||
"vision_cfg": { | ||
"image_size": 336, | ||
"layers": 24, | ||
"width": 1024, | ||
"patch_size": 14 | ||
}, | ||
"text_cfg": { | ||
"context_length": 77, | ||
"vocab_size": 49408, | ||
"width": 768, | ||
"heads": 12, | ||
"layers": 12 | ||
} | ||
} |
Oops, something went wrong.