thesunshine36
commited on
Commit
•
e79a145
1
Parent(s):
43e474e
Add model
Browse files- README.md +8 -0
- merges.txt +0 -0
- open_clip_config.json +44 -0
- open_clip_model.safetensors +3 -0
- open_clip_pytorch_model.bin +3 -0
- special_tokens_map.json +24 -0
- tokenizer.json +0 -0
- tokenizer_config.json +33 -0
- vocab.json +0 -0
README.md
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- clip
|
4 |
+
library_name: open_clip
|
5 |
+
pipeline_tag: zero-shot-image-classification
|
6 |
+
license: mit
|
7 |
+
---
|
8 |
+
# Model card for aaaa
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
open_clip_config.json
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_cfg": {
|
3 |
+
"embed_dim": 768,
|
4 |
+
"vision_cfg": {
|
5 |
+
"image_size": 224,
|
6 |
+
"layers": 24,
|
7 |
+
"width": 1024,
|
8 |
+
"patch_size": 14,
|
9 |
+
"attentional_pool": true,
|
10 |
+
"attn_pooler_heads": 8,
|
11 |
+
"output_tokens": true
|
12 |
+
},
|
13 |
+
"text_cfg": {
|
14 |
+
"context_length": 76,
|
15 |
+
"vocab_size": 49408,
|
16 |
+
"width": 768,
|
17 |
+
"heads": 12,
|
18 |
+
"layers": 12,
|
19 |
+
"embed_cls": true,
|
20 |
+
"output_tokens": true
|
21 |
+
},
|
22 |
+
"multimodal_cfg": {
|
23 |
+
"context_length": 76,
|
24 |
+
"vocab_size": 49408,
|
25 |
+
"width": 768,
|
26 |
+
"heads": 12,
|
27 |
+
"layers": 12,
|
28 |
+
"attn_pooler_heads": 12
|
29 |
+
},
|
30 |
+
"custom_text": true
|
31 |
+
},
|
32 |
+
"preprocess_cfg": {
|
33 |
+
"mean": [
|
34 |
+
0.48145466,
|
35 |
+
0.4578275,
|
36 |
+
0.40821073
|
37 |
+
],
|
38 |
+
"std": [
|
39 |
+
0.26862954,
|
40 |
+
0.26130258,
|
41 |
+
0.27577711
|
42 |
+
]
|
43 |
+
}
|
44 |
+
}
|
open_clip_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e1938dbfdb5da3f3bb12b5e51c866b30a4151e0ecf009cb3b05b95e0a2cd2f5c
|
3 |
+
size 2553889892
|
open_clip_pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f070e3509f913e71f371921f0e9b170aad993839fd9bd2a5f8eb459f92f7a1e
|
3 |
+
size 2554099431
|
special_tokens_map.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<|startoftext|>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": true,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "<|endoftext|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": true,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": "<|endoftext|>",
|
17 |
+
"unk_token": {
|
18 |
+
"content": "<|endoftext|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": true,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
}
|
24 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"bos_token": {
|
4 |
+
"__type": "AddedToken",
|
5 |
+
"content": "<|startoftext|>",
|
6 |
+
"lstrip": false,
|
7 |
+
"normalized": true,
|
8 |
+
"rstrip": false,
|
9 |
+
"single_word": false
|
10 |
+
},
|
11 |
+
"clean_up_tokenization_spaces": true,
|
12 |
+
"do_lower_case": true,
|
13 |
+
"eos_token": {
|
14 |
+
"__type": "AddedToken",
|
15 |
+
"content": "<|endoftext|>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": true,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false
|
20 |
+
},
|
21 |
+
"errors": "replace",
|
22 |
+
"model_max_length": 77,
|
23 |
+
"pad_token": "<|endoftext|>",
|
24 |
+
"tokenizer_class": "CLIPTokenizer",
|
25 |
+
"unk_token": {
|
26 |
+
"__type": "AddedToken",
|
27 |
+
"content": "<|endoftext|>",
|
28 |
+
"lstrip": false,
|
29 |
+
"normalized": true,
|
30 |
+
"rstrip": false,
|
31 |
+
"single_word": false
|
32 |
+
}
|
33 |
+
}
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|