model
Browse files- .gitattributes +1 -0
- added_tokens.json +3 -0
- chat_template.jinja +40 -0
- config.json +122 -0
- generation_config.json +9 -0
- model-00001-of-00012.safetensors +3 -0
- model-00002-of-00012.safetensors +3 -0
- model-00003-of-00012.safetensors +3 -0
- model-00004-of-00012.safetensors +3 -0
- model-00005-of-00012.safetensors +3 -0
- model-00006-of-00012.safetensors +3 -0
- model-00007-of-00012.safetensors +3 -0
- model-00008-of-00012.safetensors +3 -0
- model-00009-of-00012.safetensors +3 -0
- model-00010-of-00012.safetensors +3 -0
- model-00011-of-00012.safetensors +3 -0
- model-00012-of-00012.safetensors +3 -0
- model.safetensors.index.json +0 -0
- preprocessor_config.json +29 -0
- processor_config.json +4 -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,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{{ bos_token }}
|
2 |
+
{%- if messages[0]['role'] == 'system' -%}
|
3 |
+
{%- if messages[0]['content'] is string -%}
|
4 |
+
{%- set first_user_prefix = messages[0]['content'] + '\n\n' -%}
|
5 |
+
{%- else -%}
|
6 |
+
{%- set first_user_prefix = messages[0]['content'][0]['text'] + '\n\n' -%}
|
7 |
+
{%- endif -%}
|
8 |
+
{%- set loop_messages = messages[1:] -%}
|
9 |
+
{%- else -%}
|
10 |
+
{%- set first_user_prefix = "" -%}
|
11 |
+
{%- set loop_messages = messages -%}
|
12 |
+
{%- endif -%}
|
13 |
+
{%- for message in loop_messages -%}
|
14 |
+
{%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
|
15 |
+
{{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
|
16 |
+
{%- endif -%}
|
17 |
+
{%- if (message['role'] == 'assistant') -%}
|
18 |
+
{%- set role = "model" -%}
|
19 |
+
{%- else -%}
|
20 |
+
{%- set role = message['role'] -%}
|
21 |
+
{%- endif -%}
|
22 |
+
{{ '<start_of_turn>' + role + '\n' + (first_user_prefix if loop.first else "") }}
|
23 |
+
{%- if message['content'] is string -%}
|
24 |
+
{{ message['content'] | trim }}
|
25 |
+
{%- elif message['content'] is iterable -%}
|
26 |
+
{%- for item in message['content'] -%}
|
27 |
+
{%- if item['type'] == 'image' -%}
|
28 |
+
{{ '<start_of_image>' }}
|
29 |
+
{%- elif item['type'] == 'text' -%}
|
30 |
+
{{ item['text'] | trim }}
|
31 |
+
{%- endif -%}
|
32 |
+
{%- endfor -%}
|
33 |
+
{%- else -%}
|
34 |
+
{{ raise_exception("Invalid content type") }}
|
35 |
+
{%- endif -%}
|
36 |
+
{{ '<end_of_turn>\n' }}
|
37 |
+
{%- endfor -%}
|
38 |
+
{%- if add_generation_prompt -%}
|
39 |
+
{{'<start_of_turn>model\n'}}
|
40 |
+
{%- endif -%}
|
config.json
ADDED
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Gemma3ForConditionalGeneration"
|
4 |
+
],
|
5 |
+
"boi_token_index": 255999,
|
6 |
+
"dtype": "bfloat16",
|
7 |
+
"eoi_token_index": 256000,
|
8 |
+
"image_token_index": 262144,
|
9 |
+
"initializer_range": 0.02,
|
10 |
+
"mm_tokens_per_image": 256,
|
11 |
+
"model_type": "gemma3",
|
12 |
+
"text_config": {
|
13 |
+
"_sliding_window_pattern": 6,
|
14 |
+
"attention_bias": false,
|
15 |
+
"attention_dropout": 0.0,
|
16 |
+
"attn_logit_softcapping": null,
|
17 |
+
"dtype": "bfloat16",
|
18 |
+
"final_logit_softcapping": null,
|
19 |
+
"head_dim": 128,
|
20 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
21 |
+
"hidden_size": 5376,
|
22 |
+
"initializer_range": 0.02,
|
23 |
+
"intermediate_size": 21504,
|
24 |
+
"layer_types": [
|
25 |
+
"sliding_attention",
|
26 |
+
"sliding_attention",
|
27 |
+
"sliding_attention",
|
28 |
+
"sliding_attention",
|
29 |
+
"sliding_attention",
|
30 |
+
"full_attention",
|
31 |
+
"sliding_attention",
|
32 |
+
"sliding_attention",
|
33 |
+
"sliding_attention",
|
34 |
+
"sliding_attention",
|
35 |
+
"sliding_attention",
|
36 |
+
"full_attention",
|
37 |
+
"sliding_attention",
|
38 |
+
"sliding_attention",
|
39 |
+
"sliding_attention",
|
40 |
+
"sliding_attention",
|
41 |
+
"sliding_attention",
|
42 |
+
"full_attention",
|
43 |
+
"sliding_attention",
|
44 |
+
"sliding_attention",
|
45 |
+
"sliding_attention",
|
46 |
+
"sliding_attention",
|
47 |
+
"sliding_attention",
|
48 |
+
"full_attention",
|
49 |
+
"sliding_attention",
|
50 |
+
"sliding_attention",
|
51 |
+
"sliding_attention",
|
52 |
+
"sliding_attention",
|
53 |
+
"sliding_attention",
|
54 |
+
"full_attention",
|
55 |
+
"sliding_attention",
|
56 |
+
"sliding_attention",
|
57 |
+
"sliding_attention",
|
58 |
+
"sliding_attention",
|
59 |
+
"sliding_attention",
|
60 |
+
"full_attention",
|
61 |
+
"sliding_attention",
|
62 |
+
"sliding_attention",
|
63 |
+
"sliding_attention",
|
64 |
+
"sliding_attention",
|
65 |
+
"sliding_attention",
|
66 |
+
"full_attention",
|
67 |
+
"sliding_attention",
|
68 |
+
"sliding_attention",
|
69 |
+
"sliding_attention",
|
70 |
+
"sliding_attention",
|
71 |
+
"sliding_attention",
|
72 |
+
"full_attention",
|
73 |
+
"sliding_attention",
|
74 |
+
"sliding_attention",
|
75 |
+
"sliding_attention",
|
76 |
+
"sliding_attention",
|
77 |
+
"sliding_attention",
|
78 |
+
"full_attention",
|
79 |
+
"sliding_attention",
|
80 |
+
"sliding_attention",
|
81 |
+
"sliding_attention",
|
82 |
+
"sliding_attention",
|
83 |
+
"sliding_attention",
|
84 |
+
"full_attention",
|
85 |
+
"sliding_attention",
|
86 |
+
"sliding_attention"
|
87 |
+
],
|
88 |
+
"max_position_embeddings": 131072,
|
89 |
+
"model_type": "gemma3_text",
|
90 |
+
"num_attention_heads": 32,
|
91 |
+
"num_hidden_layers": 62,
|
92 |
+
"num_key_value_heads": 16,
|
93 |
+
"query_pre_attn_scalar": 168,
|
94 |
+
"rms_norm_eps": 1e-06,
|
95 |
+
"rope_local_base_freq": 10000.0,
|
96 |
+
"rope_scaling": {
|
97 |
+
"factor": 8.0,
|
98 |
+
"rope_type": "linear"
|
99 |
+
},
|
100 |
+
"rope_theta": 1000000.0,
|
101 |
+
"sliding_window": 1024,
|
102 |
+
"use_cache": false,
|
103 |
+
"vocab_size": 262145
|
104 |
+
},
|
105 |
+
"transformers_version": "4.56.1",
|
106 |
+
"use_cache": true,
|
107 |
+
"vision_config": {
|
108 |
+
"attention_dropout": 0.0,
|
109 |
+
"dtype": "bfloat16",
|
110 |
+
"hidden_act": "gelu_pytorch_tanh",
|
111 |
+
"hidden_size": 1152,
|
112 |
+
"image_size": 896,
|
113 |
+
"intermediate_size": 4304,
|
114 |
+
"layer_norm_eps": 1e-06,
|
115 |
+
"model_type": "siglip_vision_model",
|
116 |
+
"num_attention_heads": 16,
|
117 |
+
"num_channels": 3,
|
118 |
+
"num_hidden_layers": 27,
|
119 |
+
"patch_size": 14,
|
120 |
+
"vision_use_head": false
|
121 |
+
}
|
122 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 2,
|
4 |
+
"do_sample": true,
|
5 |
+
"eos_token_id": 1,
|
6 |
+
"pad_token_id": 0,
|
7 |
+
"transformers_version": "4.56.1",
|
8 |
+
"use_cache": false
|
9 |
+
}
|
model-00001-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f1e037dee4f63f0ee3a0e8358cebe31ca84ee07f434475b4cc534ca7ec7074c5
|
3 |
+
size 4853896320
|
model-00002-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:764e87a5792de9072c64ea23e5e79c911a0adf8c719ee1cfe79d70fcf5f414a1
|
3 |
+
size 4954792944
|
model-00003-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bb3b2de25aafbf15c4e5081c1cc8094548749741cef32337846bde56cafdd5e6
|
3 |
+
size 4954792976
|
model-00004-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:94741d7bc962cce552d3583f5cb5ee593aa7a55c896cf5bc9759b706b43bfa22
|
3 |
+
size 4954793016
|
model-00005-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32eac7cfec1790cbc225ccef161d2fc3204a21112b4001dfde64419b4f762f4b
|
3 |
+
size 4954793016
|
model-00006-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1907309eabec1e9c7110f6e8efca3b82ea8e8fff58af5bd948c44f3201217e1
|
3 |
+
size 4954793016
|
model-00007-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5a40f617c4aea1ec53036dc27a077bb3a5633a396d5d929665c1cd1254e637f8
|
3 |
+
size 4954793016
|
model-00008-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a671f0548e509cafb61c45e9d0f651a215fe46c38c5330db9e5e23991019ac8e
|
3 |
+
size 4954793016
|
model-00009-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a4b235c1a1dc8ef6c3434aa85d861ae98b412c48f1618d4a120e31a9d7727b7e
|
3 |
+
size 4954793016
|
model-00010-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5abc2cb40fc4728101b6b0086ed152c36364bceff0c0d1a56ecba32e0506b4ef
|
3 |
+
size 4954793016
|
model-00011-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4a9ba37b76e4af649ec5dd2c6c78d93b3ae1002eeba9264034d9a50283f79920
|
3 |
+
size 4954793016
|
model-00012-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d554d668dbeb57439fd28b7f995bfb2cd8482ad8339a5854438f413baa7da21
|
3 |
+
size 462476696
|
model.safetensors.index.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
preprocessor_config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_convert_rgb": null,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_pan_and_scan": null,
|
5 |
+
"do_rescale": true,
|
6 |
+
"do_resize": true,
|
7 |
+
"image_mean": [
|
8 |
+
0.5,
|
9 |
+
0.5,
|
10 |
+
0.5
|
11 |
+
],
|
12 |
+
"image_processor_type": "Gemma3ImageProcessor",
|
13 |
+
"image_seq_length": 256,
|
14 |
+
"image_std": [
|
15 |
+
0.5,
|
16 |
+
0.5,
|
17 |
+
0.5
|
18 |
+
],
|
19 |
+
"pan_and_scan_max_num_crops": null,
|
20 |
+
"pan_and_scan_min_crop_size": null,
|
21 |
+
"pan_and_scan_min_ratio_to_activate": null,
|
22 |
+
"processor_class": "Gemma3Processor",
|
23 |
+
"resample": 2,
|
24 |
+
"rescale_factor": 0.00392156862745098,
|
25 |
+
"size": {
|
26 |
+
"height": 896,
|
27 |
+
"width": 896
|
28 |
+
}
|
29 |
+
}
|
processor_config.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"image_seq_length": 256,
|
3 |
+
"processor_class": "Gemma3Processor"
|
4 |
+
}
|
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
|
|