AlphaGaO commited on
Commit
0ab2b87
·
verified ·
1 Parent(s): da20470

Add files using upload-large-folder tool

Browse files
.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
README.md ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - Qwen/Qwen3-14B
4
+ tags:
5
+ - text-generation-inference
6
+ - transformers
7
+ - qwen3
8
+ - ui-generation
9
+ - peft
10
+ - lora
11
+ - tailwind-css
12
+ - html
13
+ language:
14
+ - en
15
+ ---
16
+
17
+ # UIGEN-T3 — Advanced UI Generation with Hybrid Reasoning
18
+
19
+ > Tesslate’s next-gen UI model, built for thoughtful design.
20
+
21
+ ---
22
+
23
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/fqZE717ubrgSpAOHeMEeQ.png" alt="UIGEN-T3 UI Screenshot 1" width="500">
24
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/N5gfKRD-j9JAeMoGy7O3K.png" alt="UIGEN-T3 UI Screenshot 2" width="500">
25
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/PDGXycDkVsxFRxqHc6TKD.png" alt="UIGEN-T3 UI Screenshot 2" width="500">
26
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/Q4CHYYcDAN60NFjIPVQnH.png" alt="UIGEN-T3 UI Screenshot 3" width="500">
27
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/ePZoCA8lS4Y1KdkchrTlQ.png" alt="UIGEN-T3 UI Screenshot 4" width="500">
28
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/BU-Pk2moNsTOGuYF1XuRx.png" alt="UIGEN-T3 UI Screenshot 5" width="500">
29
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/gz5ub0lDpS-hhw1MB7e07.png" alt="UIGEN-T3 UI Screenshot 6" width="500">
30
+
31
+ ## Demos
32
+
33
+ Explore New UI generations:
34
+ 📂 [https://uigenoutput.tesslate.com](https://uigenoutput.tesslate.com)
35
+
36
+ ---
37
+
38
+ **Join our Discord:** [https://discord.gg/GNbWAeJ4](https://discord.gg/GNbWAeJ4)
39
+ **Our Website:** [https://tesslate.com](https://tesslate.com)
40
+
41
+ ## Quick Information
42
+
43
+ * **UI generation model** built on **Qwen3 architecture**
44
+ * Supports both **components** and **full web pages**
45
+ * **Hybrid reasoning system**: Use `/think` or `/no_think` modes
46
+ * Powered by **UIGenEval**, a first-of-its-kind benchmark for UI generation
47
+ * Released for **research, non-commercial use.** If you want to use it commercially, please contact us for a pilot program.
48
+
49
+ ---
50
+
51
+ ## Model Details
52
+
53
+ * **Base Model**: Qwen/Qwen3-14B
54
+ * **Reasoning Style**: Hybrid (`/think` and `/no_think`)
55
+ * **Tokenizer**: Qwen default, with design token headers
56
+ * **Output**: Components + Full pages (with `<html>`, `<head>`)
57
+ * **Images**: User-supplied or placehold.co – no images in the dataset due to licensing concerns.
58
+ * **License**: Research only (non-commercial). Contact us for enterprise use cases.
59
+
60
+ ---
61
+
62
+ ## Reasoning System
63
+
64
+ UIGEN-T3 was trained using a **pre/post reasoning model architecture**.
65
+
66
+ You can explicitly control the reasoning mode:
67
+
68
+ * `/think` → Enables guided reasoning with layout analysis and heuristics.
69
+ * `/no_think` → Faster, raw code generation.
70
+
71
+ Outputs also include **design tokens** at the top of each generation for easier site-wide customization.
72
+
73
+ ---
74
+
75
+ ## Inference Parameters
76
+
77
+ Please use 20k context length to get the best results if using reasoning.
78
+
79
+ | Parameter | Value |
80
+ | :---------- | :---- |
81
+ | Temperature | 0.6 |
82
+ | Top P | 0.95 |
83
+ | Top K | 20 |
84
+ | Max Tokens | 40k+ |
85
+
86
+ ---
87
+
88
+ ## Evaluation: UIGenEval Framework
89
+
90
+ **UIGenEval** is our internal evaluation suite, designed to **bridge the gap** between creative output and quality assurance.
91
+ *(Learn more in our upcoming paper: "UIGenEval: Bridging the Evaluation Gap in AI-Driven UI Generation" - August, 2025)*
92
+
93
+ UIGenEval evaluates models across four pillars:
94
+
95
+ 1. **Technical Quality** — Clean HTML, CSS structure, semantic accuracy.
96
+ 2. **Prompt Adherence** — Feature completeness and fidelity to instructions.
97
+ 3. **Interaction Behavior** — Dynamic logic hooks and functional interactivity.
98
+ 4. **Responsive Design** — Multi-viewport performance via Lighthouse, Axe-core, and custom scripts.
99
+
100
+ This comprehensive framework directly informs our **GRPO reward functions** for the next release.
101
+
102
+ ---
103
+
104
+ ## Example Prompts to Try
105
+
106
+ * `make a google drive clone`
107
+ * `build a figma-style canvas with toolbar`
108
+ * `create a modern pricing page with three plans`
109
+ * `generate a mobile-first recipe sharing app layout`
110
+
111
+ ---
112
+
113
+ ## Use Cases
114
+
115
+ | Use Case | Description |
116
+ | :---------------------- | :-------------------------------------------------------------------------- |
117
+ | **Startup MVPs** | Quickly scaffold UIs from scratch with clean code. |
118
+ | **Design-to-Code Transfer** | Figma (coming soon) → Code generation. |
119
+ | **Component Libraries** | Build buttons, cards, navbars, and export at scale. |
120
+ | **Internal Tool Builders** | Create admin panels, dashboards, and layout templates. |
121
+ | **Rapid Client Prototypes** | Save time on mockups with production-ready HTML+Tailwind outputs. |
122
+
123
+ ---
124
+
125
+ ## Limitations
126
+
127
+ * No Bootstrap support (planned).
128
+ * Not suited for production use — **research-only license**.
129
+ * Responsive tuning varies across output complexity.
130
+
131
+ ---
132
+
133
+ ## Roadmap
134
+
135
+ | Milestone | Status |
136
+ | :-------------------------- | :----- |
137
+ | Launch Tesslate Designer | 2 days |
138
+ | Figma convert | |
139
+ | Bootstrap & JS logic | |
140
+ | GRPO fine-tuning | |
141
+ | 4B draft model release | Now |
142
+
143
+ ---
144
+
145
+ ## Technical Requirements
146
+
147
+ * **GPU**: ≥16GB VRAM for 14B inference on GGUF.
148
+ * **Libraries**: `transformers`, `torch`, `peft`.
149
+ * Compatible with Hugging Face inference APIs and local generation pipelines.
150
+
151
+ ---
152
+
153
+ ## Community & Contribution
154
+
155
+ * **Join our Discord:** [https://discord.gg/GNbWAeJ4](https://discord.gg/GNbWAeJ4)
156
+ * Chat about AI, design, or model training.
157
+ * Want to contribute UIs or feedback? Let’s talk!
158
+
159
+ ---
160
+
161
+ ## Citation
162
+
163
+ ```bibtex
164
+ @misc{tesslate_UIGEN-T3,
165
+ title={UIGEN-T3: Hybrid Reasoning for Robust UI Generation on Qwen3},
166
+ author={Tesslate Team},
167
+ year={2025},
168
+ publisher={Tesslate},
169
+ note={Non-commercial Research License},
170
+ url={https://huggingface.co/tesslate/UIGEN-T3}
171
+ }
added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
chat_template.jinja ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for forward_message in messages %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- set message = messages[index] %}
21
+ {%- set current_content = message.content if message.content is not none else '' %}
22
+ {%- set tool_start = '<tool_response>' %}
23
+ {%- set tool_start_length = tool_start|length %}
24
+ {%- set start_of_message = current_content[:tool_start_length] %}
25
+ {%- set tool_end = '</tool_response>' %}
26
+ {%- set tool_end_length = tool_end|length %}
27
+ {%- set start_pos = (current_content|length) - tool_end_length %}
28
+ {%- if start_pos < 0 %}
29
+ {%- set start_pos = 0 %}
30
+ {%- endif %}
31
+ {%- set end_of_message = current_content[start_pos:] %}
32
+ {%- if ns.multi_step_tool and message.role == "user" and not(start_of_message == tool_start and end_of_message == tool_end) %}
33
+ {%- set ns.multi_step_tool = false %}
34
+ {%- set ns.last_query_index = index %}
35
+ {%- endif %}
36
+ {%- endfor %}
37
+ {%- for message in messages %}
38
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
39
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
40
+ {%- elif message.role == "assistant" %}
41
+ {%- set content = message.content %}
42
+ {%- set reasoning_content = '' %}
43
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
44
+ {%- set reasoning_content = message.reasoning_content %}
45
+ {%- else %}
46
+ {%- if '</think>' in message.content %}
47
+ {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}
48
+ {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}
49
+ {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}
50
+ {%- endif %}
51
+ {%- endif %}
52
+ {%- if loop.index0 > ns.last_query_index %}
53
+ {%- if loop.last or (not loop.last and reasoning_content) %}
54
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
55
+ {%- else %}
56
+ {{- '<|im_start|>' + message.role + '\n' + content }}
57
+ {%- endif %}
58
+ {%- else %}
59
+ {{- '<|im_start|>' + message.role + '\n' + content }}
60
+ {%- endif %}
61
+ {%- if message.tool_calls %}
62
+ {%- for tool_call in message.tool_calls %}
63
+ {%- if (loop.first and content) or (not loop.first) %}
64
+ {{- '\n' }}
65
+ {%- endif %}
66
+ {%- if tool_call.function %}
67
+ {%- set tool_call = tool_call.function %}
68
+ {%- endif %}
69
+ {{- '<tool_call>\n{"name": "' }}
70
+ {{- tool_call.name }}
71
+ {{- '", "arguments": ' }}
72
+ {%- if tool_call.arguments is string %}
73
+ {{- tool_call.arguments }}
74
+ {%- else %}
75
+ {{- tool_call.arguments | tojson }}
76
+ {%- endif %}
77
+ {{- '}\n</tool_call>' }}
78
+ {%- endfor %}
79
+ {%- endif %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- elif message.role == "tool" %}
82
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
83
+ {{- '<|im_start|>user' }}
84
+ {%- endif %}
85
+ {{- '\n<tool_response>\n' }}
86
+ {{- message.content }}
87
+ {{- '\n</tool_response>' }}
88
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
89
+ {{- '<|im_end|>\n' }}
90
+ {%- endif %}
91
+ {%- endif %}
92
+ {%- endfor %}
93
+ {%- if add_generation_prompt %}
94
+ {{- '<|im_start|>assistant\n' }}
95
+ {%- if enable_thinking is defined and enable_thinking is false %}
96
+ {{- '<think>\n\n</think>\n\n' }}
97
+ {%- endif %}
98
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "eos_token_id": 151645,
8
+ "head_dim": 128,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 5120,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 17408,
13
+ "max_position_embeddings": 40960,
14
+ "max_window_layers": 40,
15
+ "model_type": "qwen3",
16
+ "num_attention_heads": 40,
17
+ "num_hidden_layers": 40,
18
+ "num_key_value_heads": 8,
19
+ "pad_token_id": 151654,
20
+ "quantization_config": {
21
+ "bits": 4,
22
+ "checkpoint_format": "gptq",
23
+ "desc_act": true,
24
+ "group_size": 128,
25
+ "lm_head": false,
26
+ "meta": {
27
+ "damp_auto_increment": 0.0025,
28
+ "damp_percent": 0.01,
29
+ "mse": 0.0,
30
+ "quantizer": [
31
+ "gptqmodel:2.2.0"
32
+ ],
33
+ "static_groups": false,
34
+ "true_sequential": true,
35
+ "uri": "https://github.com/modelcloud/gptqmodel"
36
+ },
37
+ "pack_dtype": "int32",
38
+ "quant_method": "gptq",
39
+ "sym": true
40
+ },
41
+ "rms_norm_eps": 1e-06,
42
+ "rope_scaling": null,
43
+ "rope_theta": 1000000,
44
+ "sliding_window": null,
45
+ "tie_word_embeddings": false,
46
+ "torch_dtype": "bfloat16",
47
+ "transformers_version": "4.52.4",
48
+ "unsloth_fixed": true,
49
+ "unsloth_version": "2025.5.9",
50
+ "use_cache": true,
51
+ "use_sliding_window": false,
52
+ "vocab_size": 151936
53
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "max_length": 40960,
9
+ "pad_token_id": 151654,
10
+ "temperature": 0.6,
11
+ "top_k": 20,
12
+ "top_p": 0.95,
13
+ "transformers_version": "4.52.4"
14
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e67b7c3248ef444fbf501fbdb7b3e9e6f85aef53e38646dd3640c7165e267035
3
+ size 3994061392
model-00002-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce085b375df3802e6f7cd2eadb5e17d3d5bc2a6650685f36801345ca7928b324
3
+ size 3998164048
model-00003-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06525bfafedd7bc6cf036b17ff2488f6abba8ee230e0883d7f4419ffff360382
3
+ size 1992195352
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
quant_log.csv ADDED
@@ -0,0 +1,281 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ layer,module,loss,samples,damp,time
2
+ 0,self_attn.k_proj,0.00070691,0.01000,1.432
3
+ 0,self_attn.v_proj,0.00059318,0.01000,1.071
4
+ 0,self_attn.q_proj,0.00259039,0.01000,1.131
5
+ 0,self_attn.o_proj,0.01872325,0.01000,1.265
6
+ 0,mlp.up_proj,0.13378978,0.01000,1.312
7
+ 0,mlp.gate_proj,0.20375231,0.01000,1.255
8
+ 0,mlp.down_proj,0.10015747,0.01000,5.321
9
+ 1,self_attn.k_proj,0.00169902,0.01000,1.261
10
+ 1,self_attn.v_proj,0.00176455,0.01000,1.207
11
+ 1,self_attn.q_proj,0.00715574,0.01000,1.230
12
+ 1,self_attn.o_proj,0.01774971,0.01000,1.265
13
+ 1,mlp.up_proj,1.87754011,0.01000,1.298
14
+ 1,mlp.gate_proj,6.26215172,0.01000,1.256
15
+ 1,mlp.down_proj,0.23886812,0.01000,5.342
16
+ 2,self_attn.k_proj,0.00389131,0.01000,1.255
17
+ 2,self_attn.v_proj,0.00406967,0.01000,1.210
18
+ 2,self_attn.q_proj,0.01501170,0.01000,1.239
19
+ 2,self_attn.o_proj,0.03605750,0.01000,1.265
20
+ 2,mlp.up_proj,3.97210836,0.01000,1.324
21
+ 2,mlp.gate_proj,8.70841980,0.01000,1.272
22
+ 2,mlp.down_proj,0.23816061,0.01000,5.355
23
+ 3,self_attn.k_proj,0.00815293,0.01000,1.256
24
+ 3,self_attn.v_proj,0.00853108,0.01000,1.205
25
+ 3,self_attn.q_proj,0.03172233,0.01000,1.235
26
+ 3,self_attn.o_proj,0.04524668,0.01000,1.268
27
+ 3,mlp.up_proj,6.54533100,0.01000,1.322
28
+ 3,mlp.gate_proj,14.77986145,0.01000,1.279
29
+ 3,mlp.down_proj,0.37597522,0.01000,5.353
30
+ 4,self_attn.k_proj,0.01413451,0.01000,1.259
31
+ 4,self_attn.v_proj,0.01470964,0.01000,1.208
32
+ 4,self_attn.q_proj,0.05791626,0.01000,1.237
33
+ 4,self_attn.o_proj,0.06184003,0.01000,1.259
34
+ 4,mlp.up_proj,13.34243965,0.01000,1.319
35
+ 4,mlp.gate_proj,22.78504181,0.01000,1.278
36
+ 4,mlp.down_proj,0.41737747,0.01000,5.333
37
+ 5,self_attn.k_proj,0.01564825,0.01000,1.198
38
+ 5,self_attn.v_proj,0.01523696,0.01000,1.207
39
+ 5,self_attn.q_proj,0.06512326,0.01000,1.232
40
+ 5,self_attn.o_proj,0.07203308,0.01000,1.261
41
+ 5,mlp.up_proj,9.74938202,0.01000,1.334
42
+ 5,mlp.gate_proj,24.67286491,0.01000,1.288
43
+ 5,mlp.down_proj,0.70431685,0.01000,5.366
44
+ 6,self_attn.k_proj,0.02744503,0.01000,1.253
45
+ 6,self_attn.v_proj,0.02941702,0.01000,1.200
46
+ 6,self_attn.q_proj,0.11530104,0.01000,1.225
47
+ 6,self_attn.o_proj,0.09900515,0.01000,1.250
48
+ 6,mlp.up_proj,22.07820129,0.01000,1.324
49
+ 6,mlp.gate_proj,42.23360825,0.01000,1.274
50
+ 6,mlp.down_proj,36.56550598,0.01000,5.427
51
+ 7,self_attn.k_proj,0.11009024,0.01000,1.256
52
+ 7,self_attn.v_proj,0.12083898,0.01000,1.205
53
+ 7,self_attn.q_proj,0.48473150,0.01000,1.228
54
+ 7,self_attn.o_proj,0.21330884,0.01000,1.267
55
+ 7,mlp.up_proj,19.00367928,0.01000,1.326
56
+ 7,mlp.gate_proj,40.35453033,0.01000,1.284
57
+ 7,mlp.down_proj,1.01973176,0.01000,5.351
58
+ 8,self_attn.k_proj,0.12112961,0.01000,1.260
59
+ 8,self_attn.v_proj,0.13909948,0.01000,1.211
60
+ 8,self_attn.q_proj,0.51785636,0.01000,1.233
61
+ 8,self_attn.o_proj,0.23820072,0.01000,1.246
62
+ 8,mlp.up_proj,7.41920280,0.01000,1.321
63
+ 8,mlp.gate_proj,12.94360542,0.01000,1.273
64
+ 8,mlp.down_proj,1.39439631,0.01000,5.409
65
+ 9,self_attn.k_proj,0.08409639,0.01000,1.260
66
+ 9,self_attn.v_proj,0.07808492,0.01000,1.217
67
+ 9,self_attn.q_proj,0.34646398,0.01000,1.237
68
+ 9,self_attn.o_proj,0.21907786,0.01000,1.254
69
+ 9,mlp.up_proj,7.39851189,0.01000,1.319
70
+ 9,mlp.gate_proj,8.18926239,0.01000,1.260
71
+ 9,mlp.down_proj,1.94643378,0.01000,5.393
72
+ 10,self_attn.k_proj,0.13818432,0.01000,1.269
73
+ 10,self_attn.v_proj,0.15041357,0.01000,1.217
74
+ 10,self_attn.q_proj,0.59162092,0.01000,1.233
75
+ 10,self_attn.o_proj,0.35141155,0.01000,1.270
76
+ 10,mlp.up_proj,8.58759117,0.01000,1.316
77
+ 10,mlp.gate_proj,9.27396202,0.01000,1.280
78
+ 10,mlp.down_proj,1.90882754,0.01000,5.004
79
+ 11,self_attn.k_proj,0.22031164,0.01000,1.165
80
+ 11,self_attn.v_proj,0.23452374,0.01000,1.086
81
+ 11,self_attn.q_proj,0.94158274,0.01000,1.112
82
+ 11,self_attn.o_proj,0.64426076,0.01000,1.192
83
+ 11,mlp.up_proj,10.57266903,0.01000,1.205
84
+ 11,mlp.gate_proj,11.31605530,0.01000,1.159
85
+ 11,mlp.down_proj,2.49773169,0.01000,5.220
86
+ 12,self_attn.k_proj,0.18946378,0.01000,1.137
87
+ 12,self_attn.v_proj,0.18944678,0.01000,1.085
88
+ 12,self_attn.q_proj,0.79821730,0.01000,1.108
89
+ 12,self_attn.o_proj,0.60696584,0.01000,1.144
90
+ 12,mlp.up_proj,12.56937885,0.01000,1.203
91
+ 12,mlp.gate_proj,13.53184891,0.01000,1.158
92
+ 12,mlp.down_proj,3.26138687,0.01000,4.992
93
+ 13,self_attn.k_proj,0.41855329,0.01000,1.131
94
+ 13,self_attn.v_proj,0.45423627,0.01000,1.081
95
+ 13,self_attn.q_proj,1.83529305,0.01000,1.108
96
+ 13,self_attn.o_proj,1.04172182,0.01000,1.142
97
+ 13,mlp.up_proj,14.25735474,0.01000,1.206
98
+ 13,mlp.gate_proj,16.45092010,0.01000,1.161
99
+ 13,mlp.down_proj,3.83712721,0.01000,5.036
100
+ 14,self_attn.k_proj,0.30206871,0.01000,1.151
101
+ 14,self_attn.v_proj,0.31481010,0.01000,1.082
102
+ 14,self_attn.q_proj,1.28473377,0.01000,1.107
103
+ 14,self_attn.o_proj,1.00593269,0.01000,1.140
104
+ 14,mlp.up_proj,14.68998814,0.01000,1.203
105
+ 14,mlp.gate_proj,16.29914665,0.01000,1.158
106
+ 14,mlp.down_proj,4.08327484,0.01000,4.999
107
+ 15,self_attn.k_proj,0.29286253,0.01000,1.133
108
+ 15,self_attn.v_proj,0.29624963,0.01000,1.081
109
+ 15,self_attn.q_proj,1.24898148,0.01000,1.107
110
+ 15,self_attn.o_proj,0.94168097,0.01000,1.143
111
+ 15,mlp.up_proj,15.44438839,0.01000,1.208
112
+ 15,mlp.gate_proj,16.09203911,0.01000,1.160
113
+ 15,mlp.down_proj,4.34994030,0.01000,5.222
114
+ 16,self_attn.k_proj,0.37170666,0.01000,1.140
115
+ 16,self_attn.v_proj,0.39827538,0.01000,1.091
116
+ 16,self_attn.q_proj,1.55861425,0.01000,1.118
117
+ 16,self_attn.o_proj,1.24285769,0.01000,1.150
118
+ 16,mlp.up_proj,14.82378101,0.01000,1.211
119
+ 16,mlp.gate_proj,14.50064278,0.01000,1.166
120
+ 16,mlp.down_proj,4.47918606,0.01000,5.239
121
+ 17,self_attn.k_proj,0.39052096,0.01000,1.138
122
+ 17,self_attn.v_proj,0.40798220,0.01000,1.089
123
+ 17,self_attn.q_proj,1.74031353,0.01000,1.115
124
+ 17,self_attn.o_proj,1.37823784,0.01000,1.151
125
+ 17,mlp.up_proj,16.17243195,0.01000,1.211
126
+ 17,mlp.gate_proj,15.60438156,0.01000,1.168
127
+ 17,mlp.down_proj,4.64399624,0.01000,5.047
128
+ 18,self_attn.k_proj,0.56799269,0.01000,1.138
129
+ 18,self_attn.v_proj,0.58997786,0.01000,1.090
130
+ 18,self_attn.q_proj,2.52048039,0.01000,1.115
131
+ 18,self_attn.o_proj,1.32625484,0.01000,1.150
132
+ 18,mlp.up_proj,17.34894753,0.01000,1.213
133
+ 18,mlp.gate_proj,16.16296387,0.01000,1.166
134
+ 18,mlp.down_proj,5.24123001,0.01000,5.028
135
+ 19,self_attn.k_proj,0.78765279,0.01000,1.139
136
+ 19,self_attn.v_proj,0.82200253,0.01000,1.090
137
+ 19,self_attn.q_proj,3.36882591,0.01000,1.115
138
+ 19,self_attn.o_proj,1.56877732,0.01000,1.150
139
+ 19,mlp.up_proj,19.31034660,0.01000,1.214
140
+ 19,mlp.gate_proj,18.24939346,0.01000,1.171
141
+ 19,mlp.down_proj,19.38244438,0.01000,5.262
142
+ 20,self_attn.k_proj,1.45878661,0.01000,1.140
143
+ 20,self_attn.v_proj,1.65540659,0.01000,1.089
144
+ 20,self_attn.q_proj,6.76156139,0.01000,1.172
145
+ 20,self_attn.o_proj,2.54323125,0.01000,1.148
146
+ 20,mlp.up_proj,20.89072037,0.01000,1.210
147
+ 20,mlp.gate_proj,19.40013504,0.01000,1.200
148
+ 20,mlp.down_proj,7.72142410,0.01000,5.028
149
+ 21,self_attn.k_proj,1.53237510,0.01000,1.164
150
+ 21,self_attn.v_proj,1.50878608,0.01000,1.111
151
+ 21,self_attn.q_proj,6.41003466,0.01000,1.137
152
+ 21,self_attn.o_proj,3.52649236,0.01000,1.175
153
+ 21,mlp.up_proj,22.51968193,0.01000,1.235
154
+ 21,mlp.gate_proj,21.30210114,0.01000,1.188
155
+ 21,mlp.down_proj,9.00376606,0.01000,5.328
156
+ 22,self_attn.k_proj,1.50288391,0.01000,1.163
157
+ 22,self_attn.v_proj,1.69944835,0.01000,1.112
158
+ 22,self_attn.q_proj,6.75498009,0.01000,1.140
159
+ 22,self_attn.o_proj,3.26820421,0.01000,1.171
160
+ 22,mlp.up_proj,25.29592514,0.01000,1.233
161
+ 22,mlp.gate_proj,23.66239738,0.01000,1.188
162
+ 22,mlp.down_proj,10.19321442,0.01000,5.648
163
+ 23,self_attn.k_proj,2.24442339,0.01000,1.268
164
+ 23,self_attn.v_proj,2.68446589,0.01000,1.216
165
+ 23,self_attn.q_proj,10.67938042,0.01000,1.242
166
+ 23,self_attn.o_proj,3.14105654,0.01000,1.276
167
+ 23,mlp.up_proj,26.03298187,0.01000,1.334
168
+ 23,mlp.gate_proj,23.97613907,0.01000,1.284
169
+ 23,mlp.down_proj,11.99122715,0.01000,5.401
170
+ 24,self_attn.k_proj,2.86726427,0.01000,1.267
171
+ 24,self_attn.v_proj,3.32556772,0.01000,1.217
172
+ 24,self_attn.q_proj,14.12276649,0.01000,1.241
173
+ 24,self_attn.o_proj,5.11100626,0.01000,1.274
174
+ 24,mlp.up_proj,28.37653542,0.01000,1.260
175
+ 24,mlp.gate_proj,26.66292572,0.01000,1.229
176
+ 24,mlp.down_proj,13.03630733,0.01000,5.630
177
+ 25,self_attn.k_proj,2.84071159,0.01000,1.262
178
+ 25,self_attn.v_proj,3.18226862,0.01000,1.213
179
+ 25,self_attn.q_proj,13.24620533,0.01000,1.240
180
+ 25,self_attn.o_proj,4.53262854,0.01000,1.269
181
+ 25,mlp.up_proj,31.11689377,0.01000,1.325
182
+ 25,mlp.gate_proj,29.45091438,0.01000,1.286
183
+ 25,mlp.down_proj,16.67062569,0.01000,5.422
184
+ 26,self_attn.k_proj,3.04549980,0.01000,1.268
185
+ 26,self_attn.v_proj,3.58924627,0.01000,1.216
186
+ 26,self_attn.q_proj,14.70914555,0.01000,1.238
187
+ 26,self_attn.o_proj,5.08626604,0.01000,1.265
188
+ 26,mlp.up_proj,35.11465454,0.01000,1.316
189
+ 26,mlp.gate_proj,34.20375061,0.01000,1.288
190
+ 26,mlp.down_proj,25.85625839,0.01000,5.677
191
+ 27,self_attn.k_proj,4.69784307,0.01000,1.265
192
+ 27,self_attn.v_proj,5.43581915,0.01000,1.213
193
+ 27,self_attn.q_proj,21.46455383,0.01000,1.243
194
+ 27,self_attn.o_proj,8.64262867,0.01000,1.257
195
+ 27,mlp.up_proj,43.07937622,0.01000,1.329
196
+ 27,mlp.gate_proj,42.03904724,0.01000,1.287
197
+ 27,mlp.down_proj,38.25311279,0.01000,5.469
198
+ 28,self_attn.k_proj,7.11673689,0.01000,1.148
199
+ 28,self_attn.v_proj,8.83921146,0.01000,1.116
200
+ 28,self_attn.q_proj,34.02442169,0.01000,1.141
201
+ 28,self_attn.o_proj,11.82533550,0.01000,1.174
202
+ 28,mlp.up_proj,54.42869568,0.01000,1.232
203
+ 28,mlp.gate_proj,52.42176819,0.01000,1.188
204
+ 28,mlp.down_proj,49.26332855,0.01000,5.177
205
+ 29,self_attn.k_proj,10.84047508,0.01000,1.163
206
+ 29,self_attn.v_proj,12.13834381,0.01000,1.111
207
+ 29,self_attn.q_proj,49.52957916,0.01000,1.138
208
+ 29,self_attn.o_proj,10.24733162,0.01000,1.170
209
+ 29,mlp.up_proj,60.64951324,0.01000,1.234
210
+ 29,mlp.gate_proj,58.13564301,0.01000,1.186
211
+ 29,mlp.down_proj,71.04278564,0.01000,5.106
212
+ 30,self_attn.k_proj,16.40185928,0.01000,1.220
213
+ 30,self_attn.v_proj,20.49968338,0.01000,1.166
214
+ 30,self_attn.q_proj,73.70677185,0.01000,1.200
215
+ 30,self_attn.o_proj,19.58269501,0.01000,1.223
216
+ 30,mlp.up_proj,78.38506317,0.01000,1.234
217
+ 30,mlp.gate_proj,75.07140350,0.01000,1.212
218
+ 30,mlp.down_proj,87.20764160,0.01000,5.132
219
+ 31,self_attn.k_proj,16.42351151,0.01000,1.163
220
+ 31,self_attn.v_proj,17.66336060,0.01000,1.111
221
+ 31,self_attn.q_proj,73.27272034,0.01000,1.137
222
+ 31,self_attn.o_proj,16.64413071,0.01000,1.171
223
+ 31,mlp.up_proj,85.86994171,0.01000,1.233
224
+ 31,mlp.gate_proj,80.61709595,0.01000,1.188
225
+ 31,mlp.down_proj,109.44659424,0.01000,5.097
226
+ 32,self_attn.k_proj,30.33241653,0.01000,1.254
227
+ 32,self_attn.v_proj,39.78414536,0.01000,1.202
228
+ 32,self_attn.q_proj,133.13043213,0.01000,1.228
229
+ 32,self_attn.o_proj,18.90437317,0.01000,1.255
230
+ 32,mlp.up_proj,98.08085632,0.01000,1.335
231
+ 32,mlp.gate_proj,90.71247101,0.01000,1.292
232
+ 32,mlp.down_proj,127.88627625,0.01000,5.394
233
+ 33,self_attn.k_proj,37.90292740,0.01000,1.187
234
+ 33,self_attn.v_proj,55.42217255,0.01000,1.170
235
+ 33,self_attn.q_proj,166.64010620,0.01000,1.141
236
+ 33,self_attn.o_proj,22.74843788,0.01000,1.206
237
+ 33,mlp.up_proj,105.96579742,0.01000,1.242
238
+ 33,mlp.gate_proj,95.90925598,0.01000,1.193
239
+ 33,mlp.down_proj,149.81369019,0.01000,5.191
240
+ 34,self_attn.k_proj,68.69132233,0.01000,1.170
241
+ 34,self_attn.v_proj,90.13403320,0.01000,1.119
242
+ 34,self_attn.q_proj,302.74011230,0.01000,1.143
243
+ 34,self_attn.o_proj,28.94225502,0.01000,1.177
244
+ 34,mlp.up_proj,120.51785278,0.01000,1.239
245
+ 34,mlp.gate_proj,107.01783752,0.01000,1.195
246
+ 34,mlp.down_proj,177.52862549,0.01000,5.115
247
+ 35,self_attn.k_proj,90.71392822,0.01000,1.167
248
+ 35,self_attn.v_proj,136.07887268,0.01000,1.114
249
+ 35,self_attn.q_proj,415.88043213,0.01000,1.140
250
+ 35,self_attn.o_proj,31.15754509,0.01000,1.175
251
+ 35,mlp.up_proj,130.15463257,0.01000,1.252
252
+ 35,mlp.gate_proj,113.93470764,0.01000,1.190
253
+ 35,mlp.down_proj,216.24749756,0.01000,5.104
254
+ 36,self_attn.k_proj,84.99306488,0.01000,1.165
255
+ 36,self_attn.v_proj,107.49351501,0.01000,1.111
256
+ 36,self_attn.q_proj,390.38854980,0.01000,1.140
257
+ 36,self_attn.o_proj,58.52774811,0.01000,1.173
258
+ 36,mlp.up_proj,140.36920166,0.01000,1.232
259
+ 36,mlp.gate_proj,119.18859863,0.01000,1.187
260
+ 36,mlp.down_proj,287.48580933,0.01000,5.318
261
+ 37,self_attn.k_proj,108.47268677,0.01000,1.135
262
+ 37,self_attn.v_proj,184.89364624,0.01000,1.086
263
+ 37,self_attn.q_proj,520.99499512,0.01000,1.109
264
+ 37,self_attn.o_proj,69.65980530,0.01000,1.144
265
+ 37,mlp.up_proj,146.33651733,0.01000,1.207
266
+ 37,mlp.gate_proj,122.30540466,0.01000,1.159
267
+ 37,mlp.down_proj,395.49780273,0.01000,5.252
268
+ 38,self_attn.k_proj,118.53613281,0.01000,1.264
269
+ 38,self_attn.v_proj,180.38798523,0.01000,1.214
270
+ 38,self_attn.q_proj,537.27764893,0.01000,1.240
271
+ 38,self_attn.o_proj,139.20002747,0.01000,1.269
272
+ 38,mlp.up_proj,169.68232727,0.01000,1.326
273
+ 38,mlp.gate_proj,149.87057495,0.01000,1.278
274
+ 38,mlp.down_proj,664.65612793,0.01000,5.627
275
+ 39,self_attn.k_proj,53.54238510,0.01000,1.252
276
+ 39,self_attn.v_proj,72.11396790,0.01000,1.200
277
+ 39,self_attn.q_proj,237.48791504,0.01000,1.229
278
+ 39,self_attn.o_proj,106.63746643,0.01000,1.275
279
+ 39,mlp.up_proj,189.89593506,0.01000,1.318
280
+ 39,mlp.gate_proj,172.65310669,0.01000,1.279
281
+ 39,mlp.down_proj,2550.65991211,0.01000,5.655
quantize_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "desc_act": true,
5
+ "sym": true,
6
+ "lm_head": false,
7
+ "quant_method": "gptq",
8
+ "checkpoint_format": "gptq",
9
+ "pack_dtype": "int32",
10
+ "meta": {
11
+ "quantizer": [
12
+ "gptqmodel:2.2.0"
13
+ ],
14
+ "uri": "https://github.com/modelcloud/gptqmodel",
15
+ "damp_percent": 0.01,
16
+ "damp_auto_increment": 0.0025,
17
+ "static_groups": false,
18
+ "true_sequential": true,
19
+ "mse": 0.0
20
+ }
21
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": "<|vision_pad|>"
25
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
tokenizer_config.json ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 40960,
235
+ "pad_token": "<|vision_pad|>",
236
+ "padding_side": "left",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2TokenizerFast",
239
+ "unk_token": null,
240
+ "_commit_hash": null
241
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff