Training in progress, step 742
Browse files- .gitattributes +1 -0
- chat_template.json +3 -0
- config.json +98 -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 +32 -0
- processor_config.json +4 -0
- special_tokens_map.json +33 -0
- tokenizer.json +3 -0
- tokenizer_config.json +0 -0
- training_args.bin +3 -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
|
chat_template.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chat_template": "{{ bos_token }}\n{%- if messages[0]['role'] == 'system' -%}\n {%- if messages[0]['content'] is string -%}\n {%- set first_user_prefix = messages[0]['content'] + '\n\n' -%}\n {%- else -%}\n {%- set first_user_prefix = messages[0]['content'][0]['text'] + '\n\n' -%}\n {%- endif -%}\n {%- set loop_messages = messages[1:] -%}\n{%- else -%}\n {%- set first_user_prefix = \"\" -%}\n {%- set loop_messages = messages -%}\n{%- endif -%}\n{%- for message in loop_messages -%}\n {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}\n {{ raise_exception(\"Conversation roles must alternate user/assistant/user/assistant/...\") }}\n {%- endif -%}\n {%- if (message['role'] == 'assistant') -%}\n {%- set role = \"model\" -%}\n {%- else -%}\n {%- set role = message['role'] -%}\n {%- endif -%}\n {{ '<start_of_turn>' + role + '\n' + (first_user_prefix if loop.first else \"\") }}\n {%- if message['content'] is string -%}\n {{ message['content'] | trim }}\n {%- elif message['content'] is iterable -%}\n {%- for item in message['content'] -%}\n {%- if item['type'] == 'image' -%}\n {{ '<start_of_image>' }}\n {%- elif item['type'] == 'text' -%}\n {{ item['text'] | trim }}\n {%- endif -%}\n {%- endfor -%}\n {%- else -%}\n {{ raise_exception(\"Invalid content type\") }}\n {%- endif -%}\n {{ '<end_of_turn>\n' }}\n{%- endfor -%}\n{%- if add_generation_prompt -%}\n {{'<start_of_turn>model\n'}}\n{%- endif -%}\n"
|
3 |
+
}
|
config.json
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"id2label": {
|
12 |
+
"0": "LABEL_0",
|
13 |
+
"1": "LABEL_1",
|
14 |
+
"2": "LABEL_2",
|
15 |
+
"3": "LABEL_3",
|
16 |
+
"4": "LABEL_4",
|
17 |
+
"5": "LABEL_5",
|
18 |
+
"6": "LABEL_6",
|
19 |
+
"7": "LABEL_7",
|
20 |
+
"8": "LABEL_8",
|
21 |
+
"9": "LABEL_9",
|
22 |
+
"10": "LABEL_10",
|
23 |
+
"11": "LABEL_11",
|
24 |
+
"12": "LABEL_12",
|
25 |
+
"13": "LABEL_13",
|
26 |
+
"14": "LABEL_14",
|
27 |
+
"15": "LABEL_15",
|
28 |
+
"16": "LABEL_16"
|
29 |
+
},
|
30 |
+
"image_token_index": 262144,
|
31 |
+
"initializer_range": 0.02,
|
32 |
+
"label2id": {
|
33 |
+
"LABEL_0": 0,
|
34 |
+
"LABEL_1": 1,
|
35 |
+
"LABEL_10": 10,
|
36 |
+
"LABEL_11": 11,
|
37 |
+
"LABEL_12": 12,
|
38 |
+
"LABEL_13": 13,
|
39 |
+
"LABEL_14": 14,
|
40 |
+
"LABEL_15": 15,
|
41 |
+
"LABEL_16": 16,
|
42 |
+
"LABEL_2": 2,
|
43 |
+
"LABEL_3": 3,
|
44 |
+
"LABEL_4": 4,
|
45 |
+
"LABEL_5": 5,
|
46 |
+
"LABEL_6": 6,
|
47 |
+
"LABEL_7": 7,
|
48 |
+
"LABEL_8": 8,
|
49 |
+
"LABEL_9": 9
|
50 |
+
},
|
51 |
+
"mm_tokens_per_image": 256,
|
52 |
+
"model_type": "gemma3",
|
53 |
+
"text_config": {
|
54 |
+
"attention_bias": false,
|
55 |
+
"attention_dropout": 0.0,
|
56 |
+
"attn_logit_softcapping": null,
|
57 |
+
"cache_implementation": "hybrid",
|
58 |
+
"final_logit_softcapping": null,
|
59 |
+
"head_dim": 128,
|
60 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
61 |
+
"hidden_size": 5376,
|
62 |
+
"initializer_range": 0.02,
|
63 |
+
"intermediate_size": 21504,
|
64 |
+
"max_position_embeddings": 131072,
|
65 |
+
"model_type": "gemma3_text",
|
66 |
+
"num_attention_heads": 32,
|
67 |
+
"num_hidden_layers": 62,
|
68 |
+
"num_key_value_heads": 16,
|
69 |
+
"query_pre_attn_scalar": 168,
|
70 |
+
"rms_norm_eps": 1e-06,
|
71 |
+
"rope_local_base_freq": 10000.0,
|
72 |
+
"rope_scaling": {
|
73 |
+
"factor": 8.0,
|
74 |
+
"rope_type": "linear"
|
75 |
+
},
|
76 |
+
"rope_theta": 1000000.0,
|
77 |
+
"sliding_window": 1024,
|
78 |
+
"sliding_window_pattern": 6,
|
79 |
+
"use_cache": true,
|
80 |
+
"vocab_size": 262208
|
81 |
+
},
|
82 |
+
"torch_dtype": "bfloat16",
|
83 |
+
"transformers_version": "4.50.0.dev0",
|
84 |
+
"vision_config": {
|
85 |
+
"attention_dropout": 0.0,
|
86 |
+
"hidden_act": "gelu_pytorch_tanh",
|
87 |
+
"hidden_size": 1152,
|
88 |
+
"image_size": 896,
|
89 |
+
"intermediate_size": 4304,
|
90 |
+
"layer_norm_eps": 1e-06,
|
91 |
+
"model_type": "siglip_vision_model",
|
92 |
+
"num_attention_heads": 16,
|
93 |
+
"num_channels": 3,
|
94 |
+
"num_hidden_layers": 27,
|
95 |
+
"patch_size": 14,
|
96 |
+
"vision_use_head": false
|
97 |
+
}
|
98 |
+
}
|
model-00001-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3296ed487e5ccf04bc842b7d98e945c76b1a656827774d1ae664b7737c410eef
|
3 |
+
size 4854573696
|
model-00002-of-00012.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2305f80d2b240d7c2d614998f74a1babc47e24d83b51ac7bb3a95006578e8aad
|
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:9c84c39489dcfceae64b1667a26b8f37551f0a4e671dda7f9c689a404a8dadd5
|
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:e3898a3a2b1fcf41925baed9c2942c00bbb66795784b6c929530511ae86d2a29
|
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:d4db75f97578bc845fd21466c6f18ca47d97ef088eacb7e3305468a79f8f8f1c
|
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:075201f2615f815f97e82f9c228ae53e03812b0b5fca83088f179b8635b2b696
|
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:51e136d3280a7b9811ac65c28bdb4fe9fcce26a66da0d1d83581df8ac501c051
|
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:340c8492090583e69b11739b0b8df7c7bdfe2b7e6de2c7a8ae33f1bf17a4e969
|
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:d945403dc67430a5f5b7a5ce110ea67cfa5a5d639590f1c20a1b468d9920b758
|
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:85e4f6c7f9f5040fef8edb69abed6473b437f2d10b0964d3511f8a0cb297cab7
|
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:ddf621a67bf868992b5a69734f0a995e6aa0ca6f3e5852bdbc4b126daed669c5
|
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:5cdd08d75587043dba9d46274bde9f38304120652f348f8d0256f8b0b834b44f
|
3 |
+
size 3281737240
|
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,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": null,
|
3 |
+
"default_to_square": true,
|
4 |
+
"do_center_crop": null,
|
5 |
+
"do_convert_rgb": null,
|
6 |
+
"do_normalize": true,
|
7 |
+
"do_pan_and_scan": null,
|
8 |
+
"do_rescale": true,
|
9 |
+
"do_resize": true,
|
10 |
+
"image_mean": [
|
11 |
+
0.5,
|
12 |
+
0.5,
|
13 |
+
0.5
|
14 |
+
],
|
15 |
+
"image_processor_type": "Gemma3ImageProcessorFast",
|
16 |
+
"image_seq_length": 256,
|
17 |
+
"image_std": [
|
18 |
+
0.5,
|
19 |
+
0.5,
|
20 |
+
0.5
|
21 |
+
],
|
22 |
+
"pan_and_scan_max_num_crops": null,
|
23 |
+
"pan_and_scan_min_crop_size": null,
|
24 |
+
"pan_and_scan_min_ratio_to_activate": null,
|
25 |
+
"processor_class": "Gemma3Processor",
|
26 |
+
"resample": 2,
|
27 |
+
"rescale_factor": 0.00392156862745098,
|
28 |
+
"size": {
|
29 |
+
"height": 896,
|
30 |
+
"width": 896
|
31 |
+
}
|
32 |
+
}
|
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_config.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:534a0d80ad18977c0f79b716996b2d8821419312d2f98d325655053a815d855c
|
3 |
+
size 7224
|