barha commited on
Commit
1b04e1b
·
verified ·
1 Parent(s): 15b811d

granite-switch-4.0-350m 3-adapter demo: cti-technique-mapping + text-to-json + genai-attack-vector

Browse files
BUILD.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Granite Switch Composed Model
2
+
3
+ ## Base Model
4
+
5
+ - Identifier: ibm-granite/granite-4.0-350m
6
+ - Model type: granitemoehybrid
7
+ - Architectures: GraniteMoeHybridForCausalLM
8
+ - Hidden size: 1024
9
+ - Hidden layers: 28
10
+ - Attention heads: 16
11
+ - Vocab size: 100352
12
+
13
+ ## Embedded Adapters
14
+
15
+ Total adapters: **3**
16
+
17
+ | # | Name | Technology | Control Token | Token ID | Rank | Alpha | Target Modules | Source |
18
+ |---|------|------------|---------------|----------|------|-------|----------------|--------|
19
+ | 1 | cti-technique-mapping | lora | `<\|cti-technique-mapping\|>` | 100352 | 16 | 32 | input_linear, k_proj, o_proj, output_linear, q_proj, v_proj | cti-technique-mapping |
20
+ | 2 | text-to-json | lora | `<\|text-to-json\|>` | 100353 | 16 | 32 | input_linear, k_proj, o_proj, output_linear, q_proj, v_proj | text-to-json |
21
+ | 3 | genai-attack-vector | lora | `<\|genai-attack-vector\|>` | 100354 | 16 | 32 | input_linear, k_proj, o_proj, output_linear, q_proj, v_proj | genai-attack-vector |
22
+
23
+ ## Composition Details
24
+
25
+ - base_param_count: 352,379,904
26
+ - composed_param_count: 373,714,944
27
+ - Param delta: +6.05%
28
+ - compose_settings:
29
+ - technology: "lora"
30
+ - adapter_substitute_token_ids:
31
+ - 100264
32
+ - 100264
33
+ - 100264
34
+ - target_model: "granite-4.0-350m"
adapter_index.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_info": {
3
+ "num_adapters": 3,
4
+ "base_model": "granite-4.0-350m"
5
+ },
6
+ "adapters": [
7
+ {
8
+ "adapter_index": 1,
9
+ "adapter_name": "cti-technique-mapping",
10
+ "technology": "lora",
11
+ "control_token": {
12
+ "token": "<|cti-technique-mapping|>",
13
+ "id": 100352
14
+ },
15
+ "io_config": "io_configs/cti-technique-mapping/io.yaml"
16
+ },
17
+ {
18
+ "adapter_index": 2,
19
+ "adapter_name": "text-to-json",
20
+ "technology": "lora",
21
+ "control_token": {
22
+ "token": "<|text-to-json|>",
23
+ "id": 100353
24
+ },
25
+ "io_config": "io_configs/text-to-json/io.yaml"
26
+ },
27
+ {
28
+ "adapter_index": 3,
29
+ "adapter_name": "genai-attack-vector",
30
+ "technology": "lora",
31
+ "control_token": {
32
+ "token": "<|genai-attack-vector|>",
33
+ "id": 100354
34
+ },
35
+ "io_config": "io_configs/genai-attack-vector/io.yaml"
36
+ }
37
+ ]
38
+ }
chat_template.jinja ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set adapter_map = {
2
+ 'cti-technique-mapping': {'token': '<|cti-technique-mapping|>', 'type': 'lora'},
3
+ 'text-to-json': {'token': '<|text-to-json|>', 'type': 'lora'},
4
+ 'genai-attack-vector': {'token': '<|genai-attack-vector|>', 'type': 'lora'}
5
+ } %}
6
+ {#- Look up adapter token, type, and invocation text from adapter_name -#}
7
+ {%- set adapter_token = '' %}
8
+ {%- set adapter_type = '' %}
9
+ {%- set adapter_invocation_text = '' %}
10
+ {%- if adapter_name is defined and adapter_name in adapter_map %}
11
+ {%- set adapter_token = adapter_map[adapter_name]['token'] %}
12
+ {%- set adapter_type = adapter_map[adapter_name]['type'] %}
13
+ {%- if adapter_map[adapter_name]['type'] == 'alora' %}
14
+ {%- set adapter_invocation_text = adapter_map[adapter_name]['invocation_text'] %}
15
+ {%- endif %}
16
+ {%- endif %}
17
+
18
+ {%- set tools_system_message_prefix = 'You are a helpful assistant with access to the following tools. You may call one or more tools to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>' %}
19
+ {%- set tools_system_message_suffix = '\n</tools>\n\nFor each tool 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>. If a tool does not exist in the provided list of tools, notify the user that you do not have the ability to fulfill the request.' %}
20
+ {%- set documents_system_message_prefix = 'You are a helpful assistant with access to the following documents. You may use one or more documents to assist with the user query.\n\nYou are given a list of documents within <documents></documents> XML tags:\n<documents>' %}
21
+ {%- set documents_system_message_suffix = '\n</documents>\n\nWrite the response to the user\'s input by strictly aligning with the facts in the provided documents. If the information needed to answer the question is not available in the documents, inform the user that the question cannot be answered based on the available data.' %}
22
+ {%- set g4_default_system_message = 'You are a helpful assistant. Please ensure responses are professional, accurate, and safe.' %}
23
+ {%- if available_tools is defined and available_tools %}
24
+ {%- set tools = available_tools %}
25
+ {%- endif %}
26
+ {%- set ns = namespace(tools_system_message=tools_system_message_prefix,
27
+ documents_system_message=documents_system_message_prefix,
28
+ default_system_message=g4_default_system_message,
29
+ system_message=''
30
+ ,
31
+ adapter_token=adapter_token,
32
+ adapter_type=adapter_type,
33
+ adapter_invocation_text=adapter_invocation_text,
34
+ alora_target_idx=-1,
35
+ skip_next_start_of_role=false
36
+ ) %}
37
+ {%- if tools %}
38
+ {%- for tool in tools %}
39
+ {%- set ns.tools_system_message = ns.tools_system_message + '\n' + (tool | tojson) %}
40
+ {%- endfor %}
41
+ {%- set ns.tools_system_message = ns.tools_system_message + tools_system_message_suffix %}
42
+ {%- else %}
43
+ {%- set ns.tools_system_message = '' %}
44
+ {%- endif %}
45
+ {%- if documents %}
46
+ {%- for document in documents %}
47
+ {%- set ns.documents_system_message = ns.documents_system_message + '\n' + (document | tojson) %}
48
+ {%- endfor %}
49
+ {%- set ns.documents_system_message = ns.documents_system_message + documents_system_message_suffix %}
50
+ {%- else %}
51
+ {%- set ns.documents_system_message = '' %}
52
+ {%- endif %}
53
+ {#- For lora adapters: insert activation token at the very beginning -#}
54
+ {%- if ns.adapter_token and ns.adapter_type == 'lora' %}
55
+ {{- ns.adapter_token }}
56
+ {%- set ns.skip_next_start_of_role = true %}
57
+ {%- endif %}
58
+
59
+ {%- if messages[0].role == 'system' %}
60
+ {%- if messages[0].content is string %}
61
+ {%- set ns.system_message = messages[0].content %}
62
+ {%- elif messages[0].content is iterable %}
63
+ {%- for entry in messages[0].content %}
64
+ {%- if entry.type== 'text' %}
65
+ {%- if ns.system_message != '' %}
66
+ {%- set ns.system_message = ns.system_message + '\n' %}
67
+ {%- endif %}
68
+ {%- set ns.system_message = ns.system_message + entry.text %}
69
+ {%- endif %}
70
+ {%- endfor %}
71
+ {%- endif %}
72
+ {%- if tools and documents %}
73
+ {%- set ns.system_message = ns.system_message + '\n\n' + ns.tools_system_message + '\n\n' + ns.documents_system_message %}
74
+ {%- elif tools %}
75
+ {%- set ns.system_message = ns.system_message + '\n\n' + ns.tools_system_message %}
76
+ {%- elif documents %}
77
+ {%- set ns.system_message = ns.system_message + '\n\n' + ns.documents_system_message %}
78
+ {%- endif %}
79
+ {%- else %}
80
+ {%- if tools and documents %}
81
+ {%- set ns.system_message = ns.tools_system_message + '\n\n' + ns.documents_system_message %}
82
+ {%- elif tools %}
83
+ {%- set ns.system_message = ns.tools_system_message %}
84
+ {%- elif documents %}
85
+ {%- set ns.system_message = ns.documents_system_message %}
86
+ {%- endif %}
87
+ {%- endif %}
88
+ {%- if ns.system_message %}
89
+ {%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{{- '<|start_of_role|>' }}{%- endif %}
90
+ {{- 'system<|end_of_role|>' + ns.system_message + '<|end_of_text|>\n' }}
91
+ {%- else %}
92
+ {%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{{- '<|start_of_role|>' }}{%- endif %}
93
+ {{- 'system<|end_of_role|>' + ns.default_system_message + '<|end_of_text|>\n' }}
94
+ {%- endif %}
95
+ {#- ALoRA Pass 1: find the last user message containing the invocation text.
96
+ ns.alora_target_idx stays -1 when the invocation sequence is the assistant role
97
+ token sequence (not present in any user message); the fallback insertion below
98
+ handles that case. -#}
99
+ {%- if ns.adapter_type == 'alora' and ns.adapter_invocation_text %}
100
+ {%- for _msg in messages %}
101
+ {%- if _msg.role == 'user' %}
102
+ {%- if _msg.content is string and ns.adapter_invocation_text in _msg.content %}
103
+ {%- set ns.alora_target_idx = loop.index0 %}
104
+ {%- elif _msg.content is not string and _msg.content is iterable %}
105
+ {%- set _msg_idx = loop.index0 %}
106
+ {%- for _entry in _msg.content %}
107
+ {%- if _entry.type == 'text' and ns.adapter_invocation_text in _entry.text %}
108
+ {%- set ns.alora_target_idx = _msg_idx %}
109
+ {%- endif %}
110
+ {%- endfor %}
111
+ {%- endif %}
112
+ {%- endif %}
113
+ {%- endfor %}
114
+ {%- endif %}
115
+ {%- for message in messages %}
116
+ {%- set content = namespace(val='') %}
117
+ {%- if message.content is string %}
118
+ {%- set content.val = message.content %}
119
+ {%- else %}
120
+ {%- if message.content is iterable %}
121
+ {%- for entry in message.content %}
122
+ {%- if entry.type== 'text' %}
123
+ {%- if content.val != '' %}
124
+ {%- set content.val = content.val + '\n' %}
125
+ {%- endif %}
126
+ {%- set content.val = content.val + entry.text %}
127
+ {%- endif %}
128
+ {%- endfor %}
129
+ {%- endif %}
130
+ {%- endif %}
131
+ {#- ALoRA Pass 2: inject activation token AND drop the first char of
132
+ the invocation text so the runtime-swapped embedding doesn't duplicate. -#}
133
+ {%- if loop.index0 == ns.alora_target_idx %}
134
+ {%- set _parts = content.val.rsplit(ns.adapter_invocation_text, 1) %}
135
+ {%- if _parts | length > 1 %}
136
+ {%- set content.val = _parts[0] + ns.adapter_token + ns.adapter_invocation_text[1:] + _parts[1] %}
137
+ {%- endif %}
138
+ {%- endif %}
139
+ {%- if (message.role == 'user') or (message.role == 'system' and not loop.first) %}
140
+ {%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{{- '<|start_of_role|>' }}{%- endif %}
141
+ {{- '' }}{%- endif %}
142
+ {{- message.role + '<|end_of_role|>' + content.val + '<|end_of_text|>\n' }}
143
+ {%- elif message.role == 'assistant' %}
144
+ {%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{{- '<|start_of_role|>' }}{%- endif %}
145
+ {{- '' }}{%- endif %}
146
+ {{- message.role + '<|end_of_role|>' + content.val }}
147
+ {%- if message.tool_calls %}
148
+ {%- for tool_call in message.tool_calls %}
149
+ {%- if (loop.first and content.val) or (not loop.first) %}
150
+ {{- '\n' }}
151
+ {%- endif %}
152
+ {%- if tool_call.function %}
153
+ {%- set tool_call = tool_call.function %}
154
+ {%- endif %}
155
+ {{- '<tool_call>\n{"name": "' }}
156
+ {{- tool_call.name }}
157
+ {{- '", "arguments": ' }}
158
+ {%- if tool_call.arguments is string %}
159
+ {{- tool_call.arguments }}
160
+ {%- else %}
161
+ {{- tool_call.arguments | tojson }}
162
+ {%- endif %}
163
+ {{- '}\n</tool_call>' }}
164
+ {%- endfor %}
165
+ {%- endif %}
166
+ {{- '<|end_of_text|>\n' }}
167
+ {%- elif message.role == 'tool' %}
168
+ {%- if loop.first or (messages[loop.index0 - 1].role != 'tool') %}
169
+ {%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{{- '<|start_of_role|>' }}{%- endif %}
170
+ {{- 'user<|end_of_role|>' }}
171
+ {%- endif %}
172
+ {{- '\n<tool_response>\n' }}
173
+ {{- content.val }}
174
+ {{- '\n</tool_response>' }}
175
+ {%- if loop.last or (messages[loop.index0 + 1].role != 'tool') %}
176
+ {{- '<|end_of_text|>\n' }}
177
+ {%- endif %}
178
+ {%- endif %}
179
+ {%- endfor %}
180
+ {#- ALoRA fallback: insert activation token right before generation prompt.
181
+ Only fires when Pass 1 found no user message with the invocation text
182
+ (alora_target_idx == -1), meaning the adapter activates at the assistant
183
+ role token boundary rather than inside a user message. -#}
184
+ {%- if ns.adapter_token and ns.adapter_type == 'alora' and ns.alora_target_idx == -1 %}
185
+ {{- ns.adapter_token }}
186
+ {%- set ns.skip_next_start_of_role = true %}
187
+ {%- endif %}
188
+ {%- if add_generation_prompt %}
189
+ {%- if ns.skip_next_start_of_role %}{%- set ns.skip_next_start_of_role = false %}{%- else %}{{- '<|start_of_role|>' }}{%- endif %}
190
+ {{- 'assistant<|end_of_role|>' }}
191
+ {%- endif %}
compose_report.json ADDED
The diff for this file is too large to render. See raw diff
 
config.json ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "adapter_names": [
3
+ "cti-technique-mapping",
4
+ "text-to-json",
5
+ "genai-attack-vector"
6
+ ],
7
+ "adapter_ranks": [
8
+ 16,
9
+ 16,
10
+ 16
11
+ ],
12
+ "adapter_substitute_token_ids": [
13
+ 100264,
14
+ 100264,
15
+ 100264
16
+ ],
17
+ "adapter_token_ids": [
18
+ 100352,
19
+ 100353,
20
+ 100354
21
+ ],
22
+ "architectures": [
23
+ "GraniteSwitchForCausalLM"
24
+ ],
25
+ "attention_bias": false,
26
+ "attention_dropout": 0.0,
27
+ "attention_multiplier": 0.015625,
28
+ "bos_token_id": 100257,
29
+ "control_token_gain": 15.0,
30
+ "dtype": "bfloat16",
31
+ "embedding_multiplier": 12,
32
+ "eos_token_id": 100257,
33
+ "fused_add_norm": false,
34
+ "hidden_act": "silu",
35
+ "hidden_size": 1024,
36
+ "initializer_range": 0.1,
37
+ "intermediate_size": 2048,
38
+ "layer_types": [
39
+ "attention",
40
+ "attention",
41
+ "attention",
42
+ "attention",
43
+ "attention",
44
+ "attention",
45
+ "attention",
46
+ "attention",
47
+ "attention",
48
+ "attention",
49
+ "attention",
50
+ "attention",
51
+ "attention",
52
+ "attention",
53
+ "attention",
54
+ "attention",
55
+ "attention",
56
+ "attention",
57
+ "attention",
58
+ "attention",
59
+ "attention",
60
+ "attention",
61
+ "attention",
62
+ "attention",
63
+ "attention",
64
+ "attention",
65
+ "attention",
66
+ "attention",
67
+ "attention"
68
+ ],
69
+ "logits_scaling": 4,
70
+ "lora_target_modules": [
71
+ "o_proj",
72
+ "qkv_proj",
73
+ "shared_input_linear",
74
+ "shared_output_linear"
75
+ ],
76
+ "mamba_chunk_size": 256,
77
+ "mamba_conv_bias": true,
78
+ "mamba_d_conv": 4,
79
+ "mamba_d_head": 16,
80
+ "mamba_d_state": 256,
81
+ "mamba_expand": 2,
82
+ "mamba_n_groups": 1,
83
+ "mamba_n_heads": 128,
84
+ "mamba_proj_bias": false,
85
+ "max_lora_rank": 16,
86
+ "max_position_embeddings": 32768,
87
+ "model_type": "granite_switch",
88
+ "num_adapters": 3,
89
+ "num_attention_heads": 16,
90
+ "num_experts_per_tok": 0,
91
+ "num_hidden_layers": 29,
92
+ "num_key_value_heads": 4,
93
+ "num_local_experts": 0,
94
+ "output_router_logits": false,
95
+ "pad_token_id": 100256,
96
+ "position_embedding_type": "rope",
97
+ "projection_head_dim": 64,
98
+ "residual_multiplier": 0.263,
99
+ "rms_norm_eps": 1e-05,
100
+ "rope_parameters": {
101
+ "rope_theta": 10000000,
102
+ "rope_type": "default"
103
+ },
104
+ "router_aux_loss_coef": 0.001,
105
+ "shared_intermediate_size": 2048,
106
+ "switch_head_dim": 32,
107
+ "tie_word_embeddings": true,
108
+ "time_step_limit": [
109
+ 0.0,
110
+ {
111
+ "__float__": "Infinity"
112
+ }
113
+ ],
114
+ "time_step_max": 0.1,
115
+ "time_step_min": 0.001,
116
+ "transformers_version": "5.9.0",
117
+ "use_cache": true,
118
+ "vocab_size": 100355
119
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 100257,
4
+ "eos_token_id": 100257,
5
+ "output_attentions": false,
6
+ "output_hidden_states": false,
7
+ "pad_token_id": 100256,
8
+ "transformers_version": "5.9.0",
9
+ "use_cache": true
10
+ }
io_configs/cti-technique-mapping/io.yaml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ name: cti-technique-mapping
2
+ response_format:
3
+ type: string
4
+ pattern: ^T[0-9]{4}([.][0-9]{3})?$
5
+ transformations:
6
+ - wrap: technique_id
7
+ parameters:
8
+ temperature: 0.0
9
+ max_completion_tokens: 16
io_configs/genai-attack-vector/io.yaml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ name: genai-attack-vector
2
+ response_format:
3
+ type: string
4
+ parameters:
5
+ temperature: 0.0
6
+ max_completion_tokens: 32
io_configs/text-to-json/io.yaml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ name: text-to-json
2
+ response_format:
3
+ type: json_object
4
+ parameters:
5
+ temperature: 0.0
6
+ max_completion_tokens: 1024
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3018762a225cdb75cbc184ef19b7dc143e2dcd7d4c7a1b704188fb4b3d1a0c75
3
+ size 748304360
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|end_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end_of_text|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|pad|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<|unk|>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": "<|end_of_text|>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|end_of_text|>",
7
+ "extra_special_tokens": [
8
+ "<|cti-technique-mapping|>",
9
+ "<|text-to-json|>",
10
+ "<|genai-attack-vector|>"
11
+ ],
12
+ "is_local": true,
13
+ "local_files_only": false,
14
+ "model_max_length": 1000000000000000019884624838656,
15
+ "pad_token": "<|pad|>",
16
+ "padding_side": "left",
17
+ "tokenizer_class": "TokenizersBackend",
18
+ "unk_token": "<|unk|>"
19
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff