Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- added_tokens.json +3 -0
- chat_template.jinja +47 -0
- config.json +110 -0
- generation_config.json +13 -0
- model-00001-of-00027.safetensors +3 -0
- model-00002-of-00027.safetensors +3 -0
- model-00003-of-00027.safetensors +3 -0
- model-00004-of-00027.safetensors +3 -0
- model-00005-of-00027.safetensors +3 -0
- model-00006-of-00027.safetensors +3 -0
- model-00007-of-00027.safetensors +3 -0
- model-00008-of-00027.safetensors +3 -0
- model-00009-of-00027.safetensors +3 -0
- model-00010-of-00027.safetensors +3 -0
- model-00011-of-00027.safetensors +3 -0
- model-00012-of-00027.safetensors +3 -0
- model-00013-of-00027.safetensors +3 -0
- model-00014-of-00027.safetensors +3 -0
- model-00015-of-00027.safetensors +3 -0
- model-00016-of-00027.safetensors +3 -0
- model-00017-of-00027.safetensors +3 -0
- model-00018-of-00027.safetensors +3 -0
- model-00019-of-00027.safetensors +3 -0
- model-00020-of-00027.safetensors +3 -0
- model-00021-of-00027.safetensors +3 -0
- model-00022-of-00027.safetensors +3 -0
- model-00023-of-00027.safetensors +3 -0
- model-00024-of-00027.safetensors +3 -0
- model-00025-of-00027.safetensors +3 -0
- model-00026-of-00027.safetensors +3 -0
- model-00027-of-00027.safetensors +3 -0
- model.safetensors.index.json +0 -0
- special_tokens_map.json +33 -0
- tokenizer.json +3 -0
- tokenizer.model +3 -0
- tokenizer_config.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
added_tokens.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"<image_soft_token>": 262144
|
3 |
+
}
|
chat_template.jinja
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{{ bos_token }}
|
2 |
+
{%- if messages[0]['role'] == 'system' -%}
|
3 |
+
{%- if messages[0]['content'] is string -%}
|
4 |
+
{%- set first_user_prefix = messages[0]['content'] + '
|
5 |
+
|
6 |
+
' -%}
|
7 |
+
{%- else -%}
|
8 |
+
{%- set first_user_prefix = messages[0]['content'][0]['text'] + '
|
9 |
+
|
10 |
+
' -%}
|
11 |
+
{%- endif -%}
|
12 |
+
{%- set loop_messages = messages[1:] -%}
|
13 |
+
{%- else -%}
|
14 |
+
{%- set first_user_prefix = "" -%}
|
15 |
+
{%- set loop_messages = messages -%}
|
16 |
+
{%- endif -%}
|
17 |
+
{%- for message in loop_messages -%}
|
18 |
+
{%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
|
19 |
+
{{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
|
20 |
+
{%- endif -%}
|
21 |
+
{%- if (message['role'] == 'assistant') -%}
|
22 |
+
{%- set role = "model" -%}
|
23 |
+
{%- else -%}
|
24 |
+
{%- set role = message['role'] -%}
|
25 |
+
{%- endif -%}
|
26 |
+
{{ '<start_of_turn>' + role + '
|
27 |
+
' + (first_user_prefix if loop.first else "") }}
|
28 |
+
{%- if message['content'] is string -%}
|
29 |
+
{{ message['content'] | trim }}
|
30 |
+
{%- elif message['content'] is iterable -%}
|
31 |
+
{%- for item in message['content'] -%}
|
32 |
+
{%- if item['type'] == 'image' -%}
|
33 |
+
{{ '<start_of_image>' }}
|
34 |
+
{%- elif item['type'] == 'text' -%}
|
35 |
+
{{ item['text'] | trim }}
|
36 |
+
{%- endif -%}
|
37 |
+
{%- endfor -%}
|
38 |
+
{%- else -%}
|
39 |
+
{{ raise_exception("Invalid content type") }}
|
40 |
+
{%- endif -%}
|
41 |
+
{{ '<end_of_turn>
|
42 |
+
' }}
|
43 |
+
{%- endfor -%}
|
44 |
+
{%- if add_generation_prompt -%}
|
45 |
+
{{'<start_of_turn>model
|
46 |
+
'}}
|
47 |
+
{%- endif -%}
|
config.json
ADDED
@@ -0,0 +1,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Gemma3ForConditionalGeneration"
|
4 |
+
],
|
5 |
+
"boi_token_index": 255999,
|
6 |
+
"eoi_token_index": 256000,
|
7 |
+
"eos_token_id": [
|
8 |
+
1,
|
9 |
+
106
|
10 |
+
],
|
11 |
+
"image_token_index": 262144,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"mm_tokens_per_image": 256,
|
14 |
+
"model_type": "gemma3",
|
15 |
+
"text_config": {
|
16 |
+
"attention_bias": false,
|
17 |
+
"attention_dropout": 0.0,
|
18 |
+
"attn_logit_softcapping": null,
|
19 |
+
"final_logit_softcapping": null,
|
20 |
+
"head_dim": 256,
|
21 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
22 |
+
"hidden_size": 3840,
|
23 |
+
"initializer_range": 0.02,
|
24 |
+
"intermediate_size": 15360,
|
25 |
+
"layer_types": [
|
26 |
+
"sliding_attention",
|
27 |
+
"sliding_attention",
|
28 |
+
"sliding_attention",
|
29 |
+
"sliding_attention",
|
30 |
+
"sliding_attention",
|
31 |
+
"full_attention",
|
32 |
+
"sliding_attention",
|
33 |
+
"sliding_attention",
|
34 |
+
"sliding_attention",
|
35 |
+
"sliding_attention",
|
36 |
+
"sliding_attention",
|
37 |
+
"full_attention",
|
38 |
+
"sliding_attention",
|
39 |
+
"sliding_attention",
|
40 |
+
"sliding_attention",
|
41 |
+
"sliding_attention",
|
42 |
+
"sliding_attention",
|
43 |
+
"full_attention",
|
44 |
+
"sliding_attention",
|
45 |
+
"sliding_attention",
|
46 |
+
"sliding_attention",
|
47 |
+
"sliding_attention",
|
48 |
+
"sliding_attention",
|
49 |
+
"full_attention",
|
50 |
+
"sliding_attention",
|
51 |
+
"sliding_attention",
|
52 |
+
"sliding_attention",
|
53 |
+
"sliding_attention",
|
54 |
+
"sliding_attention",
|
55 |
+
"full_attention",
|
56 |
+
"sliding_attention",
|
57 |
+
"sliding_attention",
|
58 |
+
"sliding_attention",
|
59 |
+
"sliding_attention",
|
60 |
+
"sliding_attention",
|
61 |
+
"full_attention",
|
62 |
+
"sliding_attention",
|
63 |
+
"sliding_attention",
|
64 |
+
"sliding_attention",
|
65 |
+
"sliding_attention",
|
66 |
+
"sliding_attention",
|
67 |
+
"full_attention",
|
68 |
+
"sliding_attention",
|
69 |
+
"sliding_attention",
|
70 |
+
"sliding_attention",
|
71 |
+
"sliding_attention",
|
72 |
+
"sliding_attention",
|
73 |
+
"full_attention"
|
74 |
+
],
|
75 |
+
"max_position_embeddings": 131072,
|
76 |
+
"model_type": "gemma3_text",
|
77 |
+
"num_attention_heads": 16,
|
78 |
+
"num_hidden_layers": 48,
|
79 |
+
"num_key_value_heads": 8,
|
80 |
+
"query_pre_attn_scalar": 256,
|
81 |
+
"rms_norm_eps": 1e-06,
|
82 |
+
"rope_local_base_freq": 10000.0,
|
83 |
+
"rope_scaling": {
|
84 |
+
"factor": 8.0,
|
85 |
+
"rope_type": "linear"
|
86 |
+
},
|
87 |
+
"rope_theta": 1000000.0,
|
88 |
+
"sliding_window": 1024,
|
89 |
+
"torch_dtype": "float32",
|
90 |
+
"use_cache": true,
|
91 |
+
"vocab_size": 262208
|
92 |
+
},
|
93 |
+
"torch_dtype": "float32",
|
94 |
+
"transformers_version": "4.53.0",
|
95 |
+
"vision_config": {
|
96 |
+
"attention_dropout": 0.0,
|
97 |
+
"hidden_act": "gelu_pytorch_tanh",
|
98 |
+
"hidden_size": 1152,
|
99 |
+
"image_size": 896,
|
100 |
+
"intermediate_size": 4304,
|
101 |
+
"layer_norm_eps": 1e-06,
|
102 |
+
"model_type": "siglip_vision_model",
|
103 |
+
"num_attention_heads": 16,
|
104 |
+
"num_channels": 3,
|
105 |
+
"num_hidden_layers": 27,
|
106 |
+
"patch_size": 14,
|
107 |
+
"torch_dtype": "float32",
|
108 |
+
"vision_use_head": false
|
109 |
+
}
|
110 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 2,
|
3 |
+
"cache_implementation": "hybrid",
|
4 |
+
"do_sample": true,
|
5 |
+
"eos_token_id": [
|
6 |
+
1,
|
7 |
+
106
|
8 |
+
],
|
9 |
+
"pad_token_id": 0,
|
10 |
+
"top_k": 64,
|
11 |
+
"top_p": 0.95,
|
12 |
+
"transformers_version": "4.53.0"
|
13 |
+
}
|
model-00001-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:835da21d96433ecaabf17ede2d5c85cbb0bdc9f923aeb0fe9fd629369e9c7ab8
|
3 |
+
size 4027515032
|
model-00002-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05fb4bb6615fe63e36c84b18b993d9025fe9930f7004c075c6a2b555e7413ecb
|
3 |
+
size 1873969736
|
model-00003-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d4050487b032367a14f7a196e162c62806af24d460f2b0e6215ce6e92ec8220
|
3 |
+
size 1793195320
|
model-00004-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a7bdaae4db34997e0580b710842a511bfedda801c3aee3b2152ae5401095f187
|
3 |
+
size 1793195320
|
model-00005-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:201a467ae8b482b1f0b0fb77edca9f5e5fbbaf42a15c56505e5b3e714680f29d
|
3 |
+
size 1793195320
|
model-00006-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b37f5b7040c1bdab87f600c830648f91dd90ab3578c8d1900e8a4a3caa11602
|
3 |
+
size 1793195320
|
model-00007-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9bccacc4213e378b4310f051a0700adca7641e7abf2873aac6c0c20579f685f4
|
3 |
+
size 1793195312
|
model-00008-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1776220b3df8d8303af023ee160dba8b9959a0b019d85c4ba1ce76d6449b0e44
|
3 |
+
size 1793195352
|
model-00009-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:36c2d96f0d8734755a6b21b9edcb858e329784db20d2c1f8a714d6808971150b
|
3 |
+
size 1793195352
|
model-00010-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29da7200941b2bdc59e5a3ab4257c517a17b0414cd4e18e5eb7aafd55434a235
|
3 |
+
size 1793195352
|
model-00011-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ddb7d8c506608d0c0dd60bb0be0832a4e24e47a8b3aee718f33e727eb084634
|
3 |
+
size 1793195352
|
model-00012-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d113679f45a2e49b4779c2331b99c47efccfb79395c3be30d35affd77beaef4
|
3 |
+
size 1793195352
|
model-00013-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:01e2286db2cf20e61e6efcf8b5f42b2aa101297dd95a6c04bbe7f216c4a79df0
|
3 |
+
size 1793195352
|
model-00014-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:de8455d0ab2883710ed99292c870ff024f16e08d91b5fc0126a31129012acc09
|
3 |
+
size 1793195352
|
model-00015-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:00a7c8c9bcb7b77e6137907f43ee7b591f1aede9de52685e85901d783eb7deb9
|
3 |
+
size 1793195352
|
model-00016-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a899e9e5423a00b1ec998c0459268d68362d7a95ccec035b5d815e1544285531
|
3 |
+
size 1793195352
|
model-00017-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dfc83302678e0e1d159237fbc22736583649dd0f52e0fb70507a6f8d63ab0593
|
3 |
+
size 1793195352
|
model-00018-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4ef6885958bd7f5c1db04f5e7ab79276cafed28c362824ab4c3683927b5b522d
|
3 |
+
size 1793195352
|
model-00019-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d253e7851ed89b1b995d554ed60a3cd8b57b930fffd09db714db8f28e61b482
|
3 |
+
size 1793195352
|
model-00020-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ff39faf2df323eae02696c1a1a05dcf93fc01dc679471696ae748b55b6575ea
|
3 |
+
size 1793195352
|
model-00021-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f43d36ed3317a29a62cdbc12d0b5198b75d84ac57e46dbff44cb22f4688612a
|
3 |
+
size 1793195352
|
model-00022-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0e430713209e43547837de7a4eecd1cc86b3f70cb12cd5bfdd2f5806c4449000
|
3 |
+
size 1793195352
|
model-00023-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:433c9919c954b196f9378a261a0ccaab7c1f5e00aea5a0583278f25299b1e985
|
3 |
+
size 1793195352
|
model-00024-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32b1dffa5fc966ed843fbcf45c566a2e8bccc3a863b2f5179aa093a90b63559a
|
3 |
+
size 1793195352
|
model-00025-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:588e8c97b4f832df808c4908b3c38125e0b46d40fab9407d01e10f96f96280d8
|
3 |
+
size 1793195352
|
model-00026-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5427107a99a02beb4c264ed9f406edbbd9a1e9da0a7cfefc6f13792de8a6c3ef
|
3 |
+
size 4027515024
|
model-00027-of-00027.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6fa0d024ec2766e0f67c20e704f032c807d93b6d922a439ee6fd62d1d95aedc1
|
3 |
+
size 1604464304
|
model.safetensors.index.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
special_tokens_map.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"boi_token": "<start_of_image>",
|
3 |
+
"bos_token": {
|
4 |
+
"content": "<bos>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false
|
9 |
+
},
|
10 |
+
"eoi_token": "<end_of_image>",
|
11 |
+
"eos_token": {
|
12 |
+
"content": "<eos>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false
|
17 |
+
},
|
18 |
+
"image_token": "<image_soft_token>",
|
19 |
+
"pad_token": {
|
20 |
+
"content": "<pad>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false
|
25 |
+
},
|
26 |
+
"unk_token": {
|
27 |
+
"content": "<unk>",
|
28 |
+
"lstrip": false,
|
29 |
+
"normalized": false,
|
30 |
+
"rstrip": false,
|
31 |
+
"single_word": false
|
32 |
+
}
|
33 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
3 |
+
size 33384568
|
tokenizer.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
3 |
+
size 4689074
|
tokenizer_config.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|