WasLab commited on
Commit
9782d4e
·
verified ·
1 Parent(s): 1da9c62

SFT (completion-only)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. added_tokens.json +3 -0
  3. chat_template.jinja +47 -0
  4. config.json +125 -0
  5. generation_config.json +13 -0
  6. model-00001-of-00042.safetensors +3 -0
  7. model-00002-of-00042.safetensors +3 -0
  8. model-00003-of-00042.safetensors +3 -0
  9. model-00004-of-00042.safetensors +3 -0
  10. model-00005-of-00042.safetensors +3 -0
  11. model-00006-of-00042.safetensors +3 -0
  12. model-00007-of-00042.safetensors +3 -0
  13. model-00008-of-00042.safetensors +3 -0
  14. model-00009-of-00042.safetensors +3 -0
  15. model-00010-of-00042.safetensors +3 -0
  16. model-00011-of-00042.safetensors +3 -0
  17. model-00012-of-00042.safetensors +3 -0
  18. model-00013-of-00042.safetensors +3 -0
  19. model-00014-of-00042.safetensors +3 -0
  20. model-00015-of-00042.safetensors +3 -0
  21. model-00016-of-00042.safetensors +3 -0
  22. model-00017-of-00042.safetensors +3 -0
  23. model-00018-of-00042.safetensors +3 -0
  24. model-00019-of-00042.safetensors +3 -0
  25. model-00020-of-00042.safetensors +3 -0
  26. model-00021-of-00042.safetensors +3 -0
  27. model-00022-of-00042.safetensors +3 -0
  28. model-00023-of-00042.safetensors +3 -0
  29. model-00024-of-00042.safetensors +3 -0
  30. model-00025-of-00042.safetensors +3 -0
  31. model-00026-of-00042.safetensors +3 -0
  32. model-00027-of-00042.safetensors +3 -0
  33. model-00028-of-00042.safetensors +3 -0
  34. model-00029-of-00042.safetensors +3 -0
  35. model-00030-of-00042.safetensors +3 -0
  36. model-00031-of-00042.safetensors +3 -0
  37. model-00032-of-00042.safetensors +3 -0
  38. model-00033-of-00042.safetensors +3 -0
  39. model-00034-of-00042.safetensors +3 -0
  40. model-00035-of-00042.safetensors +3 -0
  41. model-00036-of-00042.safetensors +3 -0
  42. model-00037-of-00042.safetensors +3 -0
  43. model-00038-of-00042.safetensors +3 -0
  44. model-00039-of-00042.safetensors +3 -0
  45. model-00040-of-00042.safetensors +3 -0
  46. model-00041-of-00042.safetensors +3 -0
  47. model-00042-of-00042.safetensors +3 -0
  48. model.safetensors.index.json +0 -0
  49. special_tokens_map.json +27 -0
  50. tokenizer.json +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
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,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "_sliding_window_pattern": 6,
17
+ "attention_bias": false,
18
+ "attention_dropout": 0.0,
19
+ "attn_logit_softcapping": null,
20
+ "final_logit_softcapping": null,
21
+ "head_dim": 128,
22
+ "hidden_activation": "gelu_pytorch_tanh",
23
+ "hidden_size": 5376,
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 21504,
26
+ "layer_types": [
27
+ "sliding_attention",
28
+ "sliding_attention",
29
+ "sliding_attention",
30
+ "sliding_attention",
31
+ "sliding_attention",
32
+ "full_attention",
33
+ "sliding_attention",
34
+ "sliding_attention",
35
+ "sliding_attention",
36
+ "sliding_attention",
37
+ "sliding_attention",
38
+ "full_attention",
39
+ "sliding_attention",
40
+ "sliding_attention",
41
+ "sliding_attention",
42
+ "sliding_attention",
43
+ "sliding_attention",
44
+ "full_attention",
45
+ "sliding_attention",
46
+ "sliding_attention",
47
+ "sliding_attention",
48
+ "sliding_attention",
49
+ "sliding_attention",
50
+ "full_attention",
51
+ "sliding_attention",
52
+ "sliding_attention",
53
+ "sliding_attention",
54
+ "sliding_attention",
55
+ "sliding_attention",
56
+ "full_attention",
57
+ "sliding_attention",
58
+ "sliding_attention",
59
+ "sliding_attention",
60
+ "sliding_attention",
61
+ "sliding_attention",
62
+ "full_attention",
63
+ "sliding_attention",
64
+ "sliding_attention",
65
+ "sliding_attention",
66
+ "sliding_attention",
67
+ "sliding_attention",
68
+ "full_attention",
69
+ "sliding_attention",
70
+ "sliding_attention",
71
+ "sliding_attention",
72
+ "sliding_attention",
73
+ "sliding_attention",
74
+ "full_attention",
75
+ "sliding_attention",
76
+ "sliding_attention",
77
+ "sliding_attention",
78
+ "sliding_attention",
79
+ "sliding_attention",
80
+ "full_attention",
81
+ "sliding_attention",
82
+ "sliding_attention",
83
+ "sliding_attention",
84
+ "sliding_attention",
85
+ "sliding_attention",
86
+ "full_attention",
87
+ "sliding_attention",
88
+ "sliding_attention"
89
+ ],
90
+ "max_position_embeddings": 131072,
91
+ "model_type": "gemma3_text",
92
+ "num_attention_heads": 32,
93
+ "num_hidden_layers": 62,
94
+ "num_key_value_heads": 16,
95
+ "query_pre_attn_scalar": 168,
96
+ "rms_norm_eps": 1e-06,
97
+ "rope_local_base_freq": 10000.0,
98
+ "rope_scaling": {
99
+ "factor": 8.0,
100
+ "rope_type": "linear"
101
+ },
102
+ "rope_theta": 1000000.0,
103
+ "sliding_window": 1024,
104
+ "torch_dtype": "bfloat16",
105
+ "use_cache": true,
106
+ "vocab_size": 262208
107
+ },
108
+ "torch_dtype": "float32",
109
+ "transformers_version": "4.53.3",
110
+ "vision_config": {
111
+ "attention_dropout": 0.0,
112
+ "hidden_act": "gelu_pytorch_tanh",
113
+ "hidden_size": 1152,
114
+ "image_size": 896,
115
+ "intermediate_size": 4304,
116
+ "layer_norm_eps": 1e-06,
117
+ "model_type": "siglip_vision_model",
118
+ "num_attention_heads": 16,
119
+ "num_channels": 3,
120
+ "num_hidden_layers": 27,
121
+ "patch_size": 14,
122
+ "torch_dtype": "bfloat16",
123
+ "vision_use_head": false
124
+ }
125
+ }
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.3"
13
+ }
model-00001-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:853b68df815f472d82b73d38304d6b7f19af3393b9464d43c27ed46c890ddb21
3
+ size 5638520984
model-00002-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b09fc93584a73b81b280ffdfe1cccce05c6110ec8a8b47a9342e5795f05dd18b
3
+ size 1956544120
model-00003-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e88982b595ce6bee9dac83f8a09a8520e4b19c6319969fea4abaa9a4686cd71
3
+ size 1651595952
model-00004-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:148242df884c166e1eaf9a061907667bb6c54cd4cfbba425bdb6f015f65bd2e7
3
+ size 1651595952
model-00005-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6018d123429525b1145bb2b0b97a4df7c969a9849f92d12d82c89db8bb962a8
3
+ size 1651595952
model-00006-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81eac5c16aa8fc34d1f9a408a39ce188b347a41e1939058327b141221e0ca1da
3
+ size 1651595952
model-00007-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:640399aa2057647120f68bb877b721434c9c008aa8bcf05110f05e91255c229a
3
+ size 1651595952
model-00008-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7acdb845a423453615602b5ac79d3ec1131666c4c6ef0ae7c5498929a037ea7
3
+ size 1651595952
model-00009-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cda122ab4ab90e1490daf5e6584aa0286810e515ba5df0e316b6098cc07aa75b
3
+ size 1651595952
model-00010-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dba277dddc4460c3a2c19205bf9889c113fc63c5381ba9d0c05d79e95e67ac45
3
+ size 1651595952
model-00011-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e03d7c2460049c7f9d30c488b47bbfa2dbc38236541fa73014931aaae6e6778f
3
+ size 1651595952
model-00012-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aff9b4681ef36f28f6119743072f6ae736993eae1037783bf4e2fdff42aa17c0
3
+ size 1651595936
model-00013-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ea287b2c43d58705f104cba4744ed8d1c55e6e358f2ca64ccd8a23d1f39b072
3
+ size 1651595960
model-00014-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4115c6a7f8d9013cfe9474ff8611c5dcc3320dc24d23741c3358ff25dd8db10c
3
+ size 1651595960
model-00015-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75dc0f7ca77aae43ccbc555d7fba579578d492df051295c438d402ca894ece7a
3
+ size 1651595960
model-00016-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cc687e76ecec6d4a68d967531d0864071948d91d8874df92ef3297ef9dba935
3
+ size 1651595960
model-00017-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f78de029630d6e28151129294a9be087b83ce329a65d8451362eacdc127aeb3
3
+ size 1651595960
model-00018-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d255edbbd070b5e4729bea7fd58c588d87df951d8b92a061f9d3e9c523713eb3
3
+ size 1651595960
model-00019-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d84741b8a5d988d3ee625c0251c7814b5339205fb13ec589eb922f26d546c027
3
+ size 1651595960
model-00020-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3defdf1f8a442b3bb82e7ae1122036cc9fb11c1a82190b2c66512cb091e7b4e
3
+ size 1651595960
model-00021-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5647412c355dddd44c1935f32793cf13dec28a0ff063f754fe02912c5ffbb0d
3
+ size 1651595960
model-00022-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01851aca3e40dd84ed24260048eb897e71cc8d20da358469151e417cf2d477f2
3
+ size 1651595960
model-00023-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8eead629a4d33d22b334aa13a54331e3046505dc1016cf3741d99179ad616826
3
+ size 1651595960
model-00024-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c19a18539acf4d907735dbf3300db710539d75e068821949159989e58b18307e
3
+ size 1651595960
model-00025-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f60f6972a556727d918962a2de33a41de832224387fa6d35c2d67096fb2b1b15
3
+ size 1651595960
model-00026-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a79e6ed876a24a0a3cb041341fdcc7d584dfe5ad2c99ae622b42c9482fd34a6c
3
+ size 1882808696
model-00027-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7f2b5fbb5e0bc2aeb3e3ad18bab3838ff670ed802e073bcabaa0c0757a43507
3
+ size 1882808816
model-00028-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c6644993ab12e6cccc1786865ab78146b616cbec03352580b06d4c5a10ccc85
3
+ size 1882808816
model-00029-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73ca796d7726f65950a520a2ee2fb993ebbe055d4d658a72d23effbf38487329
3
+ size 1970933136
model-00030-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98d03d86148cc881fc2489dde861403270cf87b6c32a84851c39777203914540
3
+ size 1926849904
model-00031-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fbe9636690657490a437e7c6a9c86d1a4f726a4a6a7313112700b921cce13f6
3
+ size 1882808816
model-00032-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:362e5e7ecba82c31933841497fbac13487a950a53316936070ec352f004167e0
3
+ size 1970933136
model-00033-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2df163472f43f86d7e89bf3dfb7bb4a6e6be1f2869db007e1bb35a989db95da2
3
+ size 1926849904
model-00034-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4267573fd2279ed94c934733d73850856dd4d3ce8a5116c61921e7f9339796f9
3
+ size 1882808816
model-00035-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23a22849b22caf50888c39dfb3a3bbf8a2750492597699ba161a0ce8efa14a49
3
+ size 1970933136
model-00036-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd7ad0d22b50f66c15bad02c1f92c62b91e15ba82c4eb067f51a2ab5b5db7fc8
3
+ size 1926849904
model-00037-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb293c745f634074580c47cf265909cf65ca582dab3a6191eee35b74530ae0e9
3
+ size 1882808816
model-00038-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccc6fb4ec11dcb7061a06c45f8b311909ee57db8f0b8edd81a472cad06c18365
3
+ size 1970933136
model-00039-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8568d335c6643aef036791c8b4c76faadfd8fdf16067c84a9034dde3db83cb27
3
+ size 1926849904
model-00040-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89550ff9a68e881736cdfab3008906743dce7f400516b3f882d6c2c692b2d073
3
+ size 1882808816
model-00041-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb6a05c2a7789d38c13b8da33af5247ae3d4945bf83f41d3b0bf7063f05d40be
3
+ size 1970933136
model-00042-of-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6799cd428961e160819758899c5ab1c541f898255743593c54170640686fa55c
3
+ size 1563527744
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,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<pad>",
20
+ "unk_token": {
21
+ "content": "<unk>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false
26
+ }
27
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568