charles2530 commited on
Commit
a4f53ea
·
verified ·
1 Parent(s): 50e598f

Add files using upload-large-folder tool

Browse files
added_tokens.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 75873,
3
+ "</tool_call>": 75877,
4
+ "</tool_response>": 75879,
5
+ "</tools>": 75875,
6
+ "<CLS>": 75858,
7
+ "<EOD>": 75860,
8
+ "<MASK>": 75861,
9
+ "<PAD>": 75862,
10
+ "<SEP>": 75859,
11
+ "<think>": 75872,
12
+ "<tool_call>": 75876,
13
+ "<tool_response>": 75878,
14
+ "<tools>": 75874,
15
+ "<|CLS|>": 75880,
16
+ "<|EOD|>": 75882,
17
+ "<|MASK|>": 75883,
18
+ "<|PAD|>": 75884,
19
+ "<|SEP|>": 75881,
20
+ "<|endoftext|>": 75869,
21
+ "<|file_sep|>": 75871,
22
+ "<|fim_middle|>": 75866,
23
+ "<|fim_pad|>": 75868,
24
+ "<|fim_prefix|>": 75865,
25
+ "<|fim_suffix|>": 75867,
26
+ "<|im_end|>": 75864,
27
+ "<|im_start|>": 75863,
28
+ "<|repo_name|>": 75870
29
+ }
chat_template.jinja ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- else %}
6
+ {{- 'You are IndustrialCoder, a helpful assistant developed by Beihang University.' }}
7
+ {%- endif %}
8
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
9
+ {%- for tool in tools %}
10
+ {%- if tool.type == 'function' and tool.function %}
11
+ {%- set func = tool.function %}
12
+ {%- else %}
13
+ {%- set func = tool %}
14
+ {%- endif %}
15
+ {{- "\n<function>\n<name>" + func.name + "</name>" }}
16
+ {%- if func.description %}
17
+ {{- "\n<description>" + func.description + "</description>" }}
18
+ {%- endif %}
19
+ {{- "\n<parameters>" }}
20
+ {%- if func.parameters and func.parameters.properties %}
21
+ {%- for param_name, param_fields in func.parameters.properties.items() %}
22
+ {{- "\n<parameter>" }}
23
+ {{- "\n<name>" + param_name + "</name>" }}
24
+ {%- if param_fields.type %}
25
+ {{- "\n<type>" + param_fields.type + "</type>" }}
26
+ {%- endif %}
27
+ {%- if param_fields.description %}
28
+ {{- "\n<description>" + param_fields.description + "</description>" }}
29
+ {%- endif %}
30
+ {{- "\n</parameter>" }}
31
+ {%- endfor %}
32
+ {%- endif %}
33
+ {{- "\n</parameters>\n</function>" }}
34
+ {%- endfor %}
35
+ {{- "\n</tools>\n\nIf you choose to call a function ONLY reply in the following format:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n</function>\n</tool_call><|im_end|>\n" }}
36
+ {%- else %}
37
+ {%- if messages[0].role == 'system' %}
38
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
39
+ {%- else %}
40
+ {{- '<|im_start|>system\nYou are IndustrialCoder, a helpful assistant developed by Beihang University.<|im_end|>\n' }}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
44
+ {%- for message in messages[::-1] %}
45
+ {%- set index = (messages|length - 1) - loop.index0 %}
46
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
47
+ {%- set ns.multi_step_tool = false %}
48
+ {%- set ns.last_query_index = index %}
49
+ {%- endif %}
50
+ {%- endfor %}
51
+ {%- for message in messages %}
52
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
53
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
54
+ {%- elif message.role == "assistant" %}
55
+ {%- set content = message.content %}
56
+ {{- '<|im_start|>' + message.role + '\n' + content }}
57
+ {%- if message.tool_calls %}
58
+ {%- for tool_call in message.tool_calls %}
59
+ {%- if (loop.first and content) or (not loop.first) %}
60
+ {{- '\n' }}
61
+ {%- endif %}
62
+ {%- if tool_call.function %}
63
+ {%- set tc = tool_call.function %}
64
+ {%- else %}
65
+ {%- set tc = tool_call %}
66
+ {%- endif %}
67
+ {{- '<tool_call>\n<function=' + tc.name + '>\n' }}
68
+ {%- if tc.arguments is string %}
69
+ {%- set args = tc.arguments | fromjson %}
70
+ {%- else %}
71
+ {%- set args = tc.arguments %}
72
+ {%- endif %}
73
+ {%- for arg_name, arg_value in args.items() %}
74
+ {{- '<parameter=' + arg_name + '>\n' }}
75
+ {%- if arg_value is string %}
76
+ {{- arg_value }}
77
+ {%- else %}
78
+ {{- arg_value | tojson }}
79
+ {%- endif %}
80
+ {{- '\n</parameter>\n' }}
81
+ {%- endfor %}
82
+ {{- '</function>\n</tool_call>' }}
83
+ {%- endfor %}
84
+ {%- endif %}
85
+ {{- '<|im_end|>\n' }}
86
+ {%- elif message.role == "tool" %}
87
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
88
+ {{- '<|im_start|>user' }}
89
+ {%- endif %}
90
+ {{- '\n<tool_response>\n' }}
91
+ {{- message.content }}
92
+ {{- '\n</tool_response>' }}
93
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
94
+ {{- '<|im_end|>\n' }}
95
+ {%- endif %}
96
+ {%- endif %}
97
+ {%- endfor %}
98
+ {%- if add_generation_prompt %}
99
+ {{- '<|im_start|>assistant\n' }}
100
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "IQuestCoderForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "auto_map": {
8
+ "AutoConfig": "configuration_iquestcoder.IQuestCoderConfig",
9
+ "AutoModel": "modeling_iquestcoder.IQuestCoderModel",
10
+ "AutoModelForCausalLM": "modeling_iquestcoder.IQuestCoderForCausalLM",
11
+ "AutoModelForQuestionAnswering": "modeling_iquestcoder.IQuestCoderForQuestionAnswering",
12
+ "AutoModelForSequenceClassification": "modeling_iquestcoder.IQuestCoderForSequenceClassification",
13
+ "AutoModelForTokenClassification": "modeling_iquestcoder.IQuestCoderForTokenClassification"
14
+ },
15
+ "bos_token_id": 1,
16
+ "clip_qkv": null,
17
+ "eos_token_id": [
18
+ 2,
19
+ 75864,
20
+ 75869
21
+ ],
22
+ "head_dim": 128,
23
+ "hidden_act": "silu",
24
+ "hidden_size": 5120,
25
+ "initializer_range": 0.02,
26
+ "intermediate_size": 27648,
27
+ "max_position_embeddings": 131072,
28
+ "max_window_layers": 0,
29
+ "mlp_bias": false,
30
+ "model_type": "iquestcoder",
31
+ "num_attention_heads": 40,
32
+ "num_hidden_layers": 64,
33
+ "num_key_value_heads": 8,
34
+ "pretraining_tp": 1,
35
+ "rms_norm_eps": 1e-05,
36
+ "rope_scaling": null,
37
+ "rope_theta": 500000.0,
38
+ "sliding_window": null,
39
+ "tie_word_embeddings": false,
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.52.0",
42
+ "use_cache": false,
43
+ "use_sliding_window": false,
44
+ "vocab_size": 76800,
45
+ "compression_config": {
46
+ "config_groups": {
47
+ "group_0": {
48
+ "targets": [
49
+ "Linear"
50
+ ],
51
+ "input_activations": null,
52
+ "weights": {
53
+ "dynamic": false,
54
+ "group_size": 128,
55
+ "num_bits": 4,
56
+ "observer": "minmax",
57
+ "observer_kwargs": {},
58
+ "strategy": "group",
59
+ "symmetric": true,
60
+ "type": "int"
61
+ }
62
+ }
63
+ },
64
+ "format": "pack-quantized",
65
+ "ignore": [
66
+ "lm_head"
67
+ ],
68
+ "quant_method": "compressed-tensors"
69
+ }
70
+ }
configuration_iquestcoder.py ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """IQuestCoder model configuration."""
2
+
3
+ from transformers.configuration_utils import PretrainedConfig
4
+ from transformers.utils import logging
5
+
6
+
7
+ logger = logging.get_logger(__name__)
8
+
9
+
10
+ class IQuestCoderConfig(PretrainedConfig):
11
+ r"""
12
+ This is the configuration class to store the configuration of a [`IQuestCoderModel`]. It is used to instantiate
13
+ an IQuestCoder model according to the specified arguments, defining the model architecture.
14
+
15
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
16
+ documentation from [`PretrainedConfig`] for more information.
17
+
18
+ Args:
19
+ vocab_size (`int`, *optional*, defaults to 76800):
20
+ Vocabulary size of the IQuestCoder model. Defines the number of different tokens that can be represented
21
+ by the `inputs_ids` passed when calling [`IQuestCoderModel`].
22
+ hidden_size (`int`, *optional*, defaults to 5120):
23
+ Dimension of the hidden representations.
24
+ intermediate_size (`int`, *optional*, defaults to 27648):
25
+ Dimension of the MLP representations.
26
+ num_hidden_layers (`int`, *optional*, defaults to 80):
27
+ Number of hidden layers in the Transformer decoder.
28
+ num_attention_heads (`int`, *optional*, defaults to 40):
29
+ Number of attention heads for each attention layer in the Transformer decoder.
30
+ num_key_value_heads (`int`, *optional*, defaults to 8):
31
+ This is the number of key_value heads that should be used to implement Grouped Query Attention (GQA).
32
+ If `num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA).
33
+ If `num_key_value_heads=1`, the model will use Multi Query Attention (MQA).
34
+ head_dim (`int`, *optional*, defaults to 128):
35
+ The dimension of each attention head. If not specified, defaults to `hidden_size // num_attention_heads`.
36
+ hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
37
+ The non-linear activation function (function or string) in the decoder.
38
+ max_position_embeddings (`int`, *optional*, defaults to 16384):
39
+ The maximum sequence length that this model might ever be used with.
40
+ initializer_range (`float`, *optional*, defaults to 0.02):
41
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
42
+ rms_norm_eps (`float`, *optional*, defaults to 1e-05):
43
+ The epsilon used by the rms normalization layers.
44
+ use_cache (`bool`, *optional*, defaults to `True`):
45
+ Whether or not the model should return the last key/values attentions (not used by all models).
46
+ pad_token_id (`int`, *optional*):
47
+ Padding token id.
48
+ bos_token_id (`int`, *optional*, defaults to 1):
49
+ Beginning of stream token id.
50
+ eos_token_id (`int`, *optional*, defaults to 2):
51
+ End of stream token id.
52
+ tie_word_embeddings (`bool`, *optional*, defaults to `False`):
53
+ Whether to tie weight embeddings.
54
+ rope_theta (`float`, *optional*, defaults to 500000.0):
55
+ The base period of the RoPE embeddings.
56
+ rope_scaling (`Dict`, *optional*):
57
+ Dictionary containing the scaling configuration for the RoPE embeddings. Supports various RoPE scaling
58
+ types including "linear", "dynamic", "yarn", "longrope", etc.
59
+ attention_bias (`bool`, *optional*, defaults to `False`):
60
+ Whether to use a bias in the query, key, value and output projection layers during self-attention.
61
+ attention_dropout (`float`, *optional*, defaults to 0.0):
62
+ The dropout ratio for the attention probabilities.
63
+ mlp_bias (`bool`, *optional*, defaults to `False`):
64
+ Whether to use a bias in up_proj, down_proj and gate_proj layers in the MLP layers.
65
+ clip_qkv (`float`, *optional*):
66
+ If set, clip the query, key, and value tensors to this value. Borrowed from OLMo for training stability.
67
+ use_sliding_window (`bool`, *optional*, defaults to `False`):
68
+ Whether to use sliding window attention. Borrowed from Qwen2.
69
+ sliding_window (`int`, *optional*):
70
+ The sliding window size. Only effective when `use_sliding_window=True`.
71
+ max_window_layers (`int`, *optional*, defaults to 0):
72
+ The number of layers that don't use sliding window attention. Borrowed from Qwen2.
73
+
74
+ Example:
75
+ ```python
76
+ >>> from configuration_iquestcoder import IQuestCoderConfig
77
+ >>> from modeling_iquestcoder import IQuestCoderModel
78
+
79
+ >>> # Initializing a IQuestCoder configuration
80
+ >>> configuration = IQuestCoderConfig()
81
+
82
+ >>> # Initializing a model from the configuration
83
+ >>> model = IQuestCoderModel(configuration)
84
+
85
+ >>> # Accessing the model configuration
86
+ >>> configuration = model.config
87
+ ```
88
+ """
89
+
90
+ model_type = "iquestcoder"
91
+ keys_to_ignore_at_inference = ["past_key_values"]
92
+
93
+ def __init__(
94
+ self,
95
+ vocab_size=76800,
96
+ hidden_size=5120,
97
+ intermediate_size=27648,
98
+ num_hidden_layers=80,
99
+ num_attention_heads=40,
100
+ num_key_value_heads=8,
101
+ head_dim=128,
102
+ hidden_act="silu",
103
+ max_position_embeddings=16384,
104
+ initializer_range=0.02,
105
+ rms_norm_eps=1e-5,
106
+ use_cache=True,
107
+ pad_token_id=None,
108
+ bos_token_id=1,
109
+ eos_token_id=2,
110
+ tie_word_embeddings=False,
111
+ rope_theta=500000.0,
112
+ rope_scaling=None,
113
+ attention_bias=False,
114
+ attention_dropout=0.0,
115
+ mlp_bias=False,
116
+ # IQuestCoder specific (borrowed from OLMo)
117
+ clip_qkv=None,
118
+ # IQuestCoder specific (borrowed from Qwen2)
119
+ use_sliding_window=False,
120
+ sliding_window=None,
121
+ max_window_layers=0,
122
+ **kwargs,
123
+ ):
124
+ self.vocab_size = vocab_size
125
+ self.max_position_embeddings = max_position_embeddings
126
+ self.hidden_size = hidden_size
127
+ self.intermediate_size = intermediate_size
128
+ self.num_hidden_layers = num_hidden_layers
129
+ self.num_attention_heads = num_attention_heads
130
+ self.num_key_value_heads = num_key_value_heads
131
+ self.head_dim = head_dim
132
+ self.hidden_act = hidden_act
133
+ self.initializer_range = initializer_range
134
+ self.rms_norm_eps = rms_norm_eps
135
+ self.use_cache = use_cache
136
+ self.rope_theta = rope_theta
137
+ self.rope_scaling = rope_scaling
138
+ self.attention_bias = attention_bias
139
+ self.attention_dropout = attention_dropout
140
+ self.mlp_bias = mlp_bias
141
+ # IQuestCoder specific
142
+ self.clip_qkv = clip_qkv
143
+ self.use_sliding_window = use_sliding_window
144
+ self.sliding_window = sliding_window
145
+ self.max_window_layers = max_window_layers
146
+
147
+ # Validate rope_scaling configuration
148
+ self._rope_scaling_validation()
149
+
150
+ super().__init__(
151
+ pad_token_id=pad_token_id,
152
+ bos_token_id=bos_token_id,
153
+ eos_token_id=eos_token_id,
154
+ tie_word_embeddings=tie_word_embeddings,
155
+ **kwargs,
156
+ )
157
+
158
+ def _rope_scaling_validation(self):
159
+ """Validate the `rope_scaling` configuration."""
160
+ if self.rope_scaling is None:
161
+ return
162
+
163
+ if not isinstance(self.rope_scaling, dict) or len(self.rope_scaling) < 1:
164
+ raise ValueError(
165
+ "`rope_scaling` must be a dictionary with a minimum of one field, `type` or `rope_type`."
166
+ )
167
+
168
+ rope_scaling_type = self.rope_scaling.get("type", None) or self.rope_scaling.get("rope_type", None)
169
+ if rope_scaling_type is None:
170
+ raise ValueError(
171
+ "`rope_scaling` must have a `type` or `rope_type` field."
172
+ )
173
+
174
+ valid_rope_types = ["linear", "dynamic", "yarn", "longrope", "llama3"]
175
+ if rope_scaling_type not in valid_rope_types:
176
+ raise ValueError(
177
+ f"`rope_scaling`'s type field must be one of {valid_rope_types}, got {rope_scaling_type}"
178
+ )
179
+
180
+
181
+ __all__ = ["IQuestCoderConfig"]
182
+
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": [
5
+ 2,
6
+ 75864,
7
+ 75869
8
+ ],
9
+ "transformers_version": "4.52.0"
10
+ }
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ecc1d9460e7cd917ee0cd842a2094600f1330b1d53c6d39711997cebdfbf951
3
+ size 4987813296
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88f62c8b1660488ecb98d63077dfef4e8657618c874cb0b72edc3024898efa4e
3
+ size 4955706728
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:075f0b283d3a5fd6723dfb1f43cd31c4dd91288a51cc204ebc985af85e7f2479
3
+ size 4955706728
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2a8fe89b3045b5ba0ce806f0fda2086f7c1b92a3c569803c2e3c8e91a46d50a
3
+ size 2765480192
model.safetensors.index.json ADDED
@@ -0,0 +1,1034 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 17664583680
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00004-of-00004.safetensors",
7
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.0.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
17
+ "model.layers.0.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
18
+ "model.layers.0.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
19
+ "model.layers.0.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
20
+ "model.layers.0.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
21
+ "model.layers.0.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
22
+ "model.layers.0.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
23
+ "model.layers.0.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
24
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
25
+ "model.layers.1.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
26
+ "model.layers.1.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
27
+ "model.layers.1.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
28
+ "model.layers.1.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
29
+ "model.layers.1.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
30
+ "model.layers.1.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
31
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
32
+ "model.layers.1.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
33
+ "model.layers.1.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
34
+ "model.layers.1.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
35
+ "model.layers.1.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
36
+ "model.layers.1.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
37
+ "model.layers.1.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
38
+ "model.layers.1.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
39
+ "model.layers.1.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
40
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00004.safetensors",
41
+ "model.layers.10.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
42
+ "model.layers.10.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
43
+ "model.layers.10.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
44
+ "model.layers.10.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
45
+ "model.layers.10.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
46
+ "model.layers.10.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
47
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
48
+ "model.layers.10.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
49
+ "model.layers.10.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
50
+ "model.layers.10.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
51
+ "model.layers.10.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
52
+ "model.layers.10.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
53
+ "model.layers.10.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
54
+ "model.layers.10.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
55
+ "model.layers.10.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
56
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00004.safetensors",
57
+ "model.layers.11.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
58
+ "model.layers.11.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
59
+ "model.layers.11.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
60
+ "model.layers.11.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
61
+ "model.layers.11.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
62
+ "model.layers.11.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
63
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
64
+ "model.layers.11.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
65
+ "model.layers.11.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
66
+ "model.layers.11.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
67
+ "model.layers.11.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
68
+ "model.layers.11.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
69
+ "model.layers.11.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
70
+ "model.layers.11.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
71
+ "model.layers.11.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
72
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00004.safetensors",
73
+ "model.layers.12.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
74
+ "model.layers.12.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
75
+ "model.layers.12.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
76
+ "model.layers.12.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
77
+ "model.layers.12.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
78
+ "model.layers.12.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
79
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
80
+ "model.layers.12.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
81
+ "model.layers.12.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
82
+ "model.layers.12.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
83
+ "model.layers.12.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
84
+ "model.layers.12.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
85
+ "model.layers.12.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
86
+ "model.layers.12.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
87
+ "model.layers.12.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
88
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00004.safetensors",
89
+ "model.layers.13.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
90
+ "model.layers.13.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
91
+ "model.layers.13.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
92
+ "model.layers.13.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
93
+ "model.layers.13.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
94
+ "model.layers.13.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
95
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
96
+ "model.layers.13.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
97
+ "model.layers.13.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
98
+ "model.layers.13.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
99
+ "model.layers.13.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
100
+ "model.layers.13.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
101
+ "model.layers.13.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
102
+ "model.layers.13.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
103
+ "model.layers.13.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
104
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00004.safetensors",
105
+ "model.layers.14.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
106
+ "model.layers.14.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
107
+ "model.layers.14.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
108
+ "model.layers.14.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
109
+ "model.layers.14.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
110
+ "model.layers.14.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
111
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
112
+ "model.layers.14.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
113
+ "model.layers.14.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
114
+ "model.layers.14.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
115
+ "model.layers.14.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
116
+ "model.layers.14.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
117
+ "model.layers.14.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
118
+ "model.layers.14.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
119
+ "model.layers.14.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
120
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00004.safetensors",
121
+ "model.layers.15.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
122
+ "model.layers.15.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
123
+ "model.layers.15.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
124
+ "model.layers.15.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
125
+ "model.layers.15.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
126
+ "model.layers.15.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
127
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
128
+ "model.layers.15.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
129
+ "model.layers.15.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
130
+ "model.layers.15.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
131
+ "model.layers.15.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
132
+ "model.layers.15.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
133
+ "model.layers.15.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
134
+ "model.layers.15.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
135
+ "model.layers.15.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
136
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
137
+ "model.layers.16.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
138
+ "model.layers.16.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
139
+ "model.layers.16.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
140
+ "model.layers.16.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
141
+ "model.layers.16.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
142
+ "model.layers.16.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
143
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
144
+ "model.layers.16.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
145
+ "model.layers.16.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
146
+ "model.layers.16.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
147
+ "model.layers.16.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
148
+ "model.layers.16.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
149
+ "model.layers.16.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
150
+ "model.layers.16.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
151
+ "model.layers.16.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
152
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
153
+ "model.layers.17.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
154
+ "model.layers.17.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
155
+ "model.layers.17.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
156
+ "model.layers.17.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
157
+ "model.layers.17.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
158
+ "model.layers.17.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
159
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
160
+ "model.layers.17.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
161
+ "model.layers.17.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
162
+ "model.layers.17.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
163
+ "model.layers.17.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
164
+ "model.layers.17.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
165
+ "model.layers.17.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
166
+ "model.layers.17.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
167
+ "model.layers.17.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
168
+ "model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
169
+ "model.layers.18.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
170
+ "model.layers.18.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
171
+ "model.layers.18.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
172
+ "model.layers.18.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
173
+ "model.layers.18.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
174
+ "model.layers.18.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
175
+ "model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
176
+ "model.layers.18.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
177
+ "model.layers.18.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
178
+ "model.layers.18.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
179
+ "model.layers.18.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
180
+ "model.layers.18.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
181
+ "model.layers.18.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
182
+ "model.layers.18.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
183
+ "model.layers.18.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
184
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
185
+ "model.layers.19.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
186
+ "model.layers.19.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
187
+ "model.layers.19.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
188
+ "model.layers.19.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
189
+ "model.layers.19.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
190
+ "model.layers.19.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
191
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
192
+ "model.layers.19.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
193
+ "model.layers.19.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
194
+ "model.layers.19.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
195
+ "model.layers.19.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
196
+ "model.layers.19.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
197
+ "model.layers.19.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
198
+ "model.layers.19.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
199
+ "model.layers.19.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
200
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
201
+ "model.layers.2.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
202
+ "model.layers.2.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
203
+ "model.layers.2.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
204
+ "model.layers.2.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
205
+ "model.layers.2.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
206
+ "model.layers.2.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
207
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
208
+ "model.layers.2.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
209
+ "model.layers.2.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
210
+ "model.layers.2.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
211
+ "model.layers.2.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
212
+ "model.layers.2.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
213
+ "model.layers.2.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
214
+ "model.layers.2.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
215
+ "model.layers.2.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
216
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00004.safetensors",
217
+ "model.layers.20.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
218
+ "model.layers.20.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
219
+ "model.layers.20.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
220
+ "model.layers.20.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
221
+ "model.layers.20.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
222
+ "model.layers.20.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
223
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
224
+ "model.layers.20.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
225
+ "model.layers.20.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
226
+ "model.layers.20.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
227
+ "model.layers.20.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
228
+ "model.layers.20.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
229
+ "model.layers.20.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
230
+ "model.layers.20.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
231
+ "model.layers.20.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
232
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00004.safetensors",
233
+ "model.layers.21.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
234
+ "model.layers.21.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
235
+ "model.layers.21.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
236
+ "model.layers.21.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
237
+ "model.layers.21.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
238
+ "model.layers.21.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
239
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
240
+ "model.layers.21.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
241
+ "model.layers.21.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
242
+ "model.layers.21.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
243
+ "model.layers.21.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
244
+ "model.layers.21.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
245
+ "model.layers.21.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
246
+ "model.layers.21.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
247
+ "model.layers.21.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
248
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00004.safetensors",
249
+ "model.layers.22.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
250
+ "model.layers.22.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
251
+ "model.layers.22.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
252
+ "model.layers.22.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
253
+ "model.layers.22.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
254
+ "model.layers.22.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
255
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
256
+ "model.layers.22.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
257
+ "model.layers.22.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
258
+ "model.layers.22.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
259
+ "model.layers.22.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
260
+ "model.layers.22.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
261
+ "model.layers.22.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
262
+ "model.layers.22.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
263
+ "model.layers.22.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
264
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00004.safetensors",
265
+ "model.layers.23.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
266
+ "model.layers.23.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
267
+ "model.layers.23.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
268
+ "model.layers.23.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
269
+ "model.layers.23.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
270
+ "model.layers.23.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
271
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
272
+ "model.layers.23.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
273
+ "model.layers.23.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
274
+ "model.layers.23.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
275
+ "model.layers.23.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
276
+ "model.layers.23.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
277
+ "model.layers.23.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
278
+ "model.layers.23.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
279
+ "model.layers.23.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
280
+ "model.layers.24.input_layernorm.weight": "model-00002-of-00004.safetensors",
281
+ "model.layers.24.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
282
+ "model.layers.24.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
283
+ "model.layers.24.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
284
+ "model.layers.24.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
285
+ "model.layers.24.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
286
+ "model.layers.24.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
287
+ "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
288
+ "model.layers.24.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
289
+ "model.layers.24.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
290
+ "model.layers.24.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
291
+ "model.layers.24.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
292
+ "model.layers.24.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
293
+ "model.layers.24.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
294
+ "model.layers.24.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
295
+ "model.layers.24.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
296
+ "model.layers.25.input_layernorm.weight": "model-00002-of-00004.safetensors",
297
+ "model.layers.25.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
298
+ "model.layers.25.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
299
+ "model.layers.25.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
300
+ "model.layers.25.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
301
+ "model.layers.25.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
302
+ "model.layers.25.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
303
+ "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
304
+ "model.layers.25.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
305
+ "model.layers.25.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
306
+ "model.layers.25.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
307
+ "model.layers.25.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
308
+ "model.layers.25.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
309
+ "model.layers.25.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
310
+ "model.layers.25.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
311
+ "model.layers.25.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
312
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00004.safetensors",
313
+ "model.layers.26.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
314
+ "model.layers.26.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
315
+ "model.layers.26.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
316
+ "model.layers.26.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
317
+ "model.layers.26.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
318
+ "model.layers.26.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
319
+ "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
320
+ "model.layers.26.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
321
+ "model.layers.26.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
322
+ "model.layers.26.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
323
+ "model.layers.26.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
324
+ "model.layers.26.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
325
+ "model.layers.26.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
326
+ "model.layers.26.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
327
+ "model.layers.26.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
328
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00004.safetensors",
329
+ "model.layers.27.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
330
+ "model.layers.27.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
331
+ "model.layers.27.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
332
+ "model.layers.27.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
333
+ "model.layers.27.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
334
+ "model.layers.27.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
335
+ "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
336
+ "model.layers.27.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
337
+ "model.layers.27.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
338
+ "model.layers.27.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
339
+ "model.layers.27.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
340
+ "model.layers.27.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
341
+ "model.layers.27.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
342
+ "model.layers.27.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
343
+ "model.layers.27.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
344
+ "model.layers.28.input_layernorm.weight": "model-00002-of-00004.safetensors",
345
+ "model.layers.28.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
346
+ "model.layers.28.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
347
+ "model.layers.28.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
348
+ "model.layers.28.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
349
+ "model.layers.28.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
350
+ "model.layers.28.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
351
+ "model.layers.28.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
352
+ "model.layers.28.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
353
+ "model.layers.28.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
354
+ "model.layers.28.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
355
+ "model.layers.28.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
356
+ "model.layers.28.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
357
+ "model.layers.28.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
358
+ "model.layers.28.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
359
+ "model.layers.28.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
360
+ "model.layers.29.input_layernorm.weight": "model-00002-of-00004.safetensors",
361
+ "model.layers.29.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
362
+ "model.layers.29.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
363
+ "model.layers.29.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
364
+ "model.layers.29.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
365
+ "model.layers.29.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
366
+ "model.layers.29.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
367
+ "model.layers.29.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
368
+ "model.layers.29.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
369
+ "model.layers.29.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
370
+ "model.layers.29.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
371
+ "model.layers.29.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
372
+ "model.layers.29.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
373
+ "model.layers.29.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
374
+ "model.layers.29.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
375
+ "model.layers.29.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
376
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
377
+ "model.layers.3.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
378
+ "model.layers.3.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
379
+ "model.layers.3.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
380
+ "model.layers.3.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
381
+ "model.layers.3.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
382
+ "model.layers.3.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
383
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
384
+ "model.layers.3.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
385
+ "model.layers.3.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
386
+ "model.layers.3.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
387
+ "model.layers.3.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
388
+ "model.layers.3.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
389
+ "model.layers.3.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
390
+ "model.layers.3.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
391
+ "model.layers.3.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
392
+ "model.layers.30.input_layernorm.weight": "model-00002-of-00004.safetensors",
393
+ "model.layers.30.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
394
+ "model.layers.30.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
395
+ "model.layers.30.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
396
+ "model.layers.30.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
397
+ "model.layers.30.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
398
+ "model.layers.30.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
399
+ "model.layers.30.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
400
+ "model.layers.30.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
401
+ "model.layers.30.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
402
+ "model.layers.30.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
403
+ "model.layers.30.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
404
+ "model.layers.30.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
405
+ "model.layers.30.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
406
+ "model.layers.30.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
407
+ "model.layers.30.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
408
+ "model.layers.31.input_layernorm.weight": "model-00002-of-00004.safetensors",
409
+ "model.layers.31.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
410
+ "model.layers.31.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
411
+ "model.layers.31.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
412
+ "model.layers.31.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
413
+ "model.layers.31.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
414
+ "model.layers.31.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
415
+ "model.layers.31.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
416
+ "model.layers.31.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
417
+ "model.layers.31.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
418
+ "model.layers.31.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
419
+ "model.layers.31.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
420
+ "model.layers.31.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
421
+ "model.layers.31.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
422
+ "model.layers.31.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
423
+ "model.layers.31.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
424
+ "model.layers.32.input_layernorm.weight": "model-00002-of-00004.safetensors",
425
+ "model.layers.32.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
426
+ "model.layers.32.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
427
+ "model.layers.32.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
428
+ "model.layers.32.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
429
+ "model.layers.32.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
430
+ "model.layers.32.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
431
+ "model.layers.32.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
432
+ "model.layers.32.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
433
+ "model.layers.32.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
434
+ "model.layers.32.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
435
+ "model.layers.32.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
436
+ "model.layers.32.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
437
+ "model.layers.32.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
438
+ "model.layers.32.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
439
+ "model.layers.32.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
440
+ "model.layers.33.input_layernorm.weight": "model-00002-of-00004.safetensors",
441
+ "model.layers.33.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
442
+ "model.layers.33.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
443
+ "model.layers.33.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
444
+ "model.layers.33.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
445
+ "model.layers.33.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
446
+ "model.layers.33.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
447
+ "model.layers.33.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
448
+ "model.layers.33.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
449
+ "model.layers.33.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
450
+ "model.layers.33.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
451
+ "model.layers.33.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
452
+ "model.layers.33.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
453
+ "model.layers.33.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
454
+ "model.layers.33.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
455
+ "model.layers.33.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
456
+ "model.layers.34.input_layernorm.weight": "model-00002-of-00004.safetensors",
457
+ "model.layers.34.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
458
+ "model.layers.34.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
459
+ "model.layers.34.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
460
+ "model.layers.34.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
461
+ "model.layers.34.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
462
+ "model.layers.34.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
463
+ "model.layers.34.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
464
+ "model.layers.34.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
465
+ "model.layers.34.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
466
+ "model.layers.34.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
467
+ "model.layers.34.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
468
+ "model.layers.34.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
469
+ "model.layers.34.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
470
+ "model.layers.34.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
471
+ "model.layers.34.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
472
+ "model.layers.35.input_layernorm.weight": "model-00002-of-00004.safetensors",
473
+ "model.layers.35.mlp.down_proj.weight_packed": "model-00002-of-00004.safetensors",
474
+ "model.layers.35.mlp.down_proj.weight_scale": "model-00002-of-00004.safetensors",
475
+ "model.layers.35.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
476
+ "model.layers.35.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
477
+ "model.layers.35.mlp.up_proj.weight_packed": "model-00002-of-00004.safetensors",
478
+ "model.layers.35.mlp.up_proj.weight_scale": "model-00002-of-00004.safetensors",
479
+ "model.layers.35.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
480
+ "model.layers.35.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
481
+ "model.layers.35.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
482
+ "model.layers.35.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
483
+ "model.layers.35.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
484
+ "model.layers.35.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
485
+ "model.layers.35.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
486
+ "model.layers.35.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
487
+ "model.layers.35.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
488
+ "model.layers.36.input_layernorm.weight": "model-00003-of-00004.safetensors",
489
+ "model.layers.36.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
490
+ "model.layers.36.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
491
+ "model.layers.36.mlp.gate_proj.weight_packed": "model-00002-of-00004.safetensors",
492
+ "model.layers.36.mlp.gate_proj.weight_scale": "model-00002-of-00004.safetensors",
493
+ "model.layers.36.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
494
+ "model.layers.36.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
495
+ "model.layers.36.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
496
+ "model.layers.36.self_attn.k_proj.weight_packed": "model-00002-of-00004.safetensors",
497
+ "model.layers.36.self_attn.k_proj.weight_scale": "model-00002-of-00004.safetensors",
498
+ "model.layers.36.self_attn.o_proj.weight_packed": "model-00002-of-00004.safetensors",
499
+ "model.layers.36.self_attn.o_proj.weight_scale": "model-00002-of-00004.safetensors",
500
+ "model.layers.36.self_attn.q_proj.weight_packed": "model-00002-of-00004.safetensors",
501
+ "model.layers.36.self_attn.q_proj.weight_scale": "model-00002-of-00004.safetensors",
502
+ "model.layers.36.self_attn.v_proj.weight_packed": "model-00002-of-00004.safetensors",
503
+ "model.layers.36.self_attn.v_proj.weight_scale": "model-00002-of-00004.safetensors",
504
+ "model.layers.37.input_layernorm.weight": "model-00003-of-00004.safetensors",
505
+ "model.layers.37.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
506
+ "model.layers.37.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
507
+ "model.layers.37.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
508
+ "model.layers.37.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
509
+ "model.layers.37.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
510
+ "model.layers.37.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
511
+ "model.layers.37.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
512
+ "model.layers.37.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
513
+ "model.layers.37.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
514
+ "model.layers.37.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
515
+ "model.layers.37.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
516
+ "model.layers.37.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
517
+ "model.layers.37.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
518
+ "model.layers.37.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
519
+ "model.layers.37.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
520
+ "model.layers.38.input_layernorm.weight": "model-00003-of-00004.safetensors",
521
+ "model.layers.38.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
522
+ "model.layers.38.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
523
+ "model.layers.38.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
524
+ "model.layers.38.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
525
+ "model.layers.38.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
526
+ "model.layers.38.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
527
+ "model.layers.38.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
528
+ "model.layers.38.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
529
+ "model.layers.38.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
530
+ "model.layers.38.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
531
+ "model.layers.38.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
532
+ "model.layers.38.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
533
+ "model.layers.38.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
534
+ "model.layers.38.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
535
+ "model.layers.38.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
536
+ "model.layers.39.input_layernorm.weight": "model-00003-of-00004.safetensors",
537
+ "model.layers.39.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
538
+ "model.layers.39.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
539
+ "model.layers.39.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
540
+ "model.layers.39.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
541
+ "model.layers.39.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
542
+ "model.layers.39.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
543
+ "model.layers.39.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
544
+ "model.layers.39.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
545
+ "model.layers.39.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
546
+ "model.layers.39.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
547
+ "model.layers.39.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
548
+ "model.layers.39.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
549
+ "model.layers.39.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
550
+ "model.layers.39.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
551
+ "model.layers.39.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
552
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
553
+ "model.layers.4.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
554
+ "model.layers.4.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
555
+ "model.layers.4.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
556
+ "model.layers.4.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
557
+ "model.layers.4.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
558
+ "model.layers.4.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
559
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
560
+ "model.layers.4.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
561
+ "model.layers.4.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
562
+ "model.layers.4.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
563
+ "model.layers.4.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
564
+ "model.layers.4.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
565
+ "model.layers.4.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
566
+ "model.layers.4.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
567
+ "model.layers.4.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
568
+ "model.layers.40.input_layernorm.weight": "model-00003-of-00004.safetensors",
569
+ "model.layers.40.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
570
+ "model.layers.40.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
571
+ "model.layers.40.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
572
+ "model.layers.40.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
573
+ "model.layers.40.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
574
+ "model.layers.40.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
575
+ "model.layers.40.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
576
+ "model.layers.40.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
577
+ "model.layers.40.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
578
+ "model.layers.40.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
579
+ "model.layers.40.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
580
+ "model.layers.40.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
581
+ "model.layers.40.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
582
+ "model.layers.40.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
583
+ "model.layers.40.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
584
+ "model.layers.41.input_layernorm.weight": "model-00003-of-00004.safetensors",
585
+ "model.layers.41.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
586
+ "model.layers.41.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
587
+ "model.layers.41.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
588
+ "model.layers.41.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
589
+ "model.layers.41.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
590
+ "model.layers.41.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
591
+ "model.layers.41.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
592
+ "model.layers.41.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
593
+ "model.layers.41.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
594
+ "model.layers.41.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
595
+ "model.layers.41.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
596
+ "model.layers.41.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
597
+ "model.layers.41.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
598
+ "model.layers.41.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
599
+ "model.layers.41.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
600
+ "model.layers.42.input_layernorm.weight": "model-00003-of-00004.safetensors",
601
+ "model.layers.42.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
602
+ "model.layers.42.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
603
+ "model.layers.42.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
604
+ "model.layers.42.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
605
+ "model.layers.42.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
606
+ "model.layers.42.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
607
+ "model.layers.42.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
608
+ "model.layers.42.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
609
+ "model.layers.42.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
610
+ "model.layers.42.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
611
+ "model.layers.42.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
612
+ "model.layers.42.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
613
+ "model.layers.42.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
614
+ "model.layers.42.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
615
+ "model.layers.42.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
616
+ "model.layers.43.input_layernorm.weight": "model-00003-of-00004.safetensors",
617
+ "model.layers.43.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
618
+ "model.layers.43.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
619
+ "model.layers.43.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
620
+ "model.layers.43.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
621
+ "model.layers.43.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
622
+ "model.layers.43.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
623
+ "model.layers.43.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
624
+ "model.layers.43.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
625
+ "model.layers.43.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
626
+ "model.layers.43.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
627
+ "model.layers.43.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
628
+ "model.layers.43.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
629
+ "model.layers.43.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
630
+ "model.layers.43.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
631
+ "model.layers.43.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
632
+ "model.layers.44.input_layernorm.weight": "model-00003-of-00004.safetensors",
633
+ "model.layers.44.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
634
+ "model.layers.44.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
635
+ "model.layers.44.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
636
+ "model.layers.44.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
637
+ "model.layers.44.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
638
+ "model.layers.44.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
639
+ "model.layers.44.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
640
+ "model.layers.44.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
641
+ "model.layers.44.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
642
+ "model.layers.44.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
643
+ "model.layers.44.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
644
+ "model.layers.44.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
645
+ "model.layers.44.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
646
+ "model.layers.44.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
647
+ "model.layers.44.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
648
+ "model.layers.45.input_layernorm.weight": "model-00003-of-00004.safetensors",
649
+ "model.layers.45.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
650
+ "model.layers.45.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
651
+ "model.layers.45.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
652
+ "model.layers.45.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
653
+ "model.layers.45.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
654
+ "model.layers.45.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
655
+ "model.layers.45.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
656
+ "model.layers.45.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
657
+ "model.layers.45.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
658
+ "model.layers.45.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
659
+ "model.layers.45.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
660
+ "model.layers.45.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
661
+ "model.layers.45.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
662
+ "model.layers.45.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
663
+ "model.layers.45.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
664
+ "model.layers.46.input_layernorm.weight": "model-00003-of-00004.safetensors",
665
+ "model.layers.46.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
666
+ "model.layers.46.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
667
+ "model.layers.46.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
668
+ "model.layers.46.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
669
+ "model.layers.46.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
670
+ "model.layers.46.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
671
+ "model.layers.46.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
672
+ "model.layers.46.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
673
+ "model.layers.46.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
674
+ "model.layers.46.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
675
+ "model.layers.46.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
676
+ "model.layers.46.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
677
+ "model.layers.46.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
678
+ "model.layers.46.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
679
+ "model.layers.46.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
680
+ "model.layers.47.input_layernorm.weight": "model-00003-of-00004.safetensors",
681
+ "model.layers.47.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
682
+ "model.layers.47.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
683
+ "model.layers.47.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
684
+ "model.layers.47.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
685
+ "model.layers.47.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
686
+ "model.layers.47.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
687
+ "model.layers.47.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
688
+ "model.layers.47.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
689
+ "model.layers.47.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
690
+ "model.layers.47.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
691
+ "model.layers.47.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
692
+ "model.layers.47.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
693
+ "model.layers.47.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
694
+ "model.layers.47.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
695
+ "model.layers.47.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
696
+ "model.layers.48.input_layernorm.weight": "model-00003-of-00004.safetensors",
697
+ "model.layers.48.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
698
+ "model.layers.48.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
699
+ "model.layers.48.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
700
+ "model.layers.48.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
701
+ "model.layers.48.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
702
+ "model.layers.48.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
703
+ "model.layers.48.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
704
+ "model.layers.48.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
705
+ "model.layers.48.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
706
+ "model.layers.48.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
707
+ "model.layers.48.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
708
+ "model.layers.48.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
709
+ "model.layers.48.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
710
+ "model.layers.48.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
711
+ "model.layers.48.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
712
+ "model.layers.49.input_layernorm.weight": "model-00003-of-00004.safetensors",
713
+ "model.layers.49.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
714
+ "model.layers.49.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
715
+ "model.layers.49.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
716
+ "model.layers.49.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
717
+ "model.layers.49.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
718
+ "model.layers.49.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
719
+ "model.layers.49.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
720
+ "model.layers.49.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
721
+ "model.layers.49.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
722
+ "model.layers.49.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
723
+ "model.layers.49.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
724
+ "model.layers.49.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
725
+ "model.layers.49.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
726
+ "model.layers.49.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
727
+ "model.layers.49.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
728
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
729
+ "model.layers.5.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
730
+ "model.layers.5.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
731
+ "model.layers.5.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
732
+ "model.layers.5.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
733
+ "model.layers.5.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
734
+ "model.layers.5.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
735
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
736
+ "model.layers.5.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
737
+ "model.layers.5.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
738
+ "model.layers.5.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
739
+ "model.layers.5.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
740
+ "model.layers.5.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
741
+ "model.layers.5.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
742
+ "model.layers.5.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
743
+ "model.layers.5.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
744
+ "model.layers.50.input_layernorm.weight": "model-00003-of-00004.safetensors",
745
+ "model.layers.50.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
746
+ "model.layers.50.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
747
+ "model.layers.50.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
748
+ "model.layers.50.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
749
+ "model.layers.50.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
750
+ "model.layers.50.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
751
+ "model.layers.50.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
752
+ "model.layers.50.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
753
+ "model.layers.50.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
754
+ "model.layers.50.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
755
+ "model.layers.50.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
756
+ "model.layers.50.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
757
+ "model.layers.50.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
758
+ "model.layers.50.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
759
+ "model.layers.50.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
760
+ "model.layers.51.input_layernorm.weight": "model-00003-of-00004.safetensors",
761
+ "model.layers.51.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
762
+ "model.layers.51.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
763
+ "model.layers.51.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
764
+ "model.layers.51.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
765
+ "model.layers.51.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
766
+ "model.layers.51.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
767
+ "model.layers.51.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
768
+ "model.layers.51.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
769
+ "model.layers.51.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
770
+ "model.layers.51.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
771
+ "model.layers.51.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
772
+ "model.layers.51.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
773
+ "model.layers.51.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
774
+ "model.layers.51.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
775
+ "model.layers.51.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
776
+ "model.layers.52.input_layernorm.weight": "model-00003-of-00004.safetensors",
777
+ "model.layers.52.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
778
+ "model.layers.52.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
779
+ "model.layers.52.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
780
+ "model.layers.52.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
781
+ "model.layers.52.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
782
+ "model.layers.52.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
783
+ "model.layers.52.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
784
+ "model.layers.52.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
785
+ "model.layers.52.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
786
+ "model.layers.52.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
787
+ "model.layers.52.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
788
+ "model.layers.52.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
789
+ "model.layers.52.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
790
+ "model.layers.52.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
791
+ "model.layers.52.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
792
+ "model.layers.53.input_layernorm.weight": "model-00003-of-00004.safetensors",
793
+ "model.layers.53.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
794
+ "model.layers.53.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
795
+ "model.layers.53.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
796
+ "model.layers.53.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
797
+ "model.layers.53.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
798
+ "model.layers.53.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
799
+ "model.layers.53.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
800
+ "model.layers.53.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
801
+ "model.layers.53.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
802
+ "model.layers.53.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
803
+ "model.layers.53.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
804
+ "model.layers.53.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
805
+ "model.layers.53.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
806
+ "model.layers.53.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
807
+ "model.layers.53.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
808
+ "model.layers.54.input_layernorm.weight": "model-00003-of-00004.safetensors",
809
+ "model.layers.54.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
810
+ "model.layers.54.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
811
+ "model.layers.54.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
812
+ "model.layers.54.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
813
+ "model.layers.54.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
814
+ "model.layers.54.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
815
+ "model.layers.54.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
816
+ "model.layers.54.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
817
+ "model.layers.54.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
818
+ "model.layers.54.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
819
+ "model.layers.54.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
820
+ "model.layers.54.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
821
+ "model.layers.54.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
822
+ "model.layers.54.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
823
+ "model.layers.54.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
824
+ "model.layers.55.input_layernorm.weight": "model-00003-of-00004.safetensors",
825
+ "model.layers.55.mlp.down_proj.weight_packed": "model-00003-of-00004.safetensors",
826
+ "model.layers.55.mlp.down_proj.weight_scale": "model-00003-of-00004.safetensors",
827
+ "model.layers.55.mlp.gate_proj.weight_packed": "model-00003-of-00004.safetensors",
828
+ "model.layers.55.mlp.gate_proj.weight_scale": "model-00003-of-00004.safetensors",
829
+ "model.layers.55.mlp.up_proj.weight_packed": "model-00003-of-00004.safetensors",
830
+ "model.layers.55.mlp.up_proj.weight_scale": "model-00003-of-00004.safetensors",
831
+ "model.layers.55.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
832
+ "model.layers.55.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
833
+ "model.layers.55.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
834
+ "model.layers.55.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
835
+ "model.layers.55.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
836
+ "model.layers.55.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
837
+ "model.layers.55.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
838
+ "model.layers.55.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
839
+ "model.layers.55.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
840
+ "model.layers.56.input_layernorm.weight": "model-00004-of-00004.safetensors",
841
+ "model.layers.56.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
842
+ "model.layers.56.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
843
+ "model.layers.56.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
844
+ "model.layers.56.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
845
+ "model.layers.56.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
846
+ "model.layers.56.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
847
+ "model.layers.56.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
848
+ "model.layers.56.self_attn.k_proj.weight_packed": "model-00003-of-00004.safetensors",
849
+ "model.layers.56.self_attn.k_proj.weight_scale": "model-00003-of-00004.safetensors",
850
+ "model.layers.56.self_attn.o_proj.weight_packed": "model-00003-of-00004.safetensors",
851
+ "model.layers.56.self_attn.o_proj.weight_scale": "model-00003-of-00004.safetensors",
852
+ "model.layers.56.self_attn.q_proj.weight_packed": "model-00003-of-00004.safetensors",
853
+ "model.layers.56.self_attn.q_proj.weight_scale": "model-00003-of-00004.safetensors",
854
+ "model.layers.56.self_attn.v_proj.weight_packed": "model-00003-of-00004.safetensors",
855
+ "model.layers.56.self_attn.v_proj.weight_scale": "model-00003-of-00004.safetensors",
856
+ "model.layers.57.input_layernorm.weight": "model-00004-of-00004.safetensors",
857
+ "model.layers.57.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
858
+ "model.layers.57.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
859
+ "model.layers.57.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
860
+ "model.layers.57.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
861
+ "model.layers.57.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
862
+ "model.layers.57.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
863
+ "model.layers.57.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
864
+ "model.layers.57.self_attn.k_proj.weight_packed": "model-00004-of-00004.safetensors",
865
+ "model.layers.57.self_attn.k_proj.weight_scale": "model-00004-of-00004.safetensors",
866
+ "model.layers.57.self_attn.o_proj.weight_packed": "model-00004-of-00004.safetensors",
867
+ "model.layers.57.self_attn.o_proj.weight_scale": "model-00004-of-00004.safetensors",
868
+ "model.layers.57.self_attn.q_proj.weight_packed": "model-00004-of-00004.safetensors",
869
+ "model.layers.57.self_attn.q_proj.weight_scale": "model-00004-of-00004.safetensors",
870
+ "model.layers.57.self_attn.v_proj.weight_packed": "model-00004-of-00004.safetensors",
871
+ "model.layers.57.self_attn.v_proj.weight_scale": "model-00004-of-00004.safetensors",
872
+ "model.layers.58.input_layernorm.weight": "model-00004-of-00004.safetensors",
873
+ "model.layers.58.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
874
+ "model.layers.58.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
875
+ "model.layers.58.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
876
+ "model.layers.58.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
877
+ "model.layers.58.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
878
+ "model.layers.58.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
879
+ "model.layers.58.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
880
+ "model.layers.58.self_attn.k_proj.weight_packed": "model-00004-of-00004.safetensors",
881
+ "model.layers.58.self_attn.k_proj.weight_scale": "model-00004-of-00004.safetensors",
882
+ "model.layers.58.self_attn.o_proj.weight_packed": "model-00004-of-00004.safetensors",
883
+ "model.layers.58.self_attn.o_proj.weight_scale": "model-00004-of-00004.safetensors",
884
+ "model.layers.58.self_attn.q_proj.weight_packed": "model-00004-of-00004.safetensors",
885
+ "model.layers.58.self_attn.q_proj.weight_scale": "model-00004-of-00004.safetensors",
886
+ "model.layers.58.self_attn.v_proj.weight_packed": "model-00004-of-00004.safetensors",
887
+ "model.layers.58.self_attn.v_proj.weight_scale": "model-00004-of-00004.safetensors",
888
+ "model.layers.59.input_layernorm.weight": "model-00004-of-00004.safetensors",
889
+ "model.layers.59.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
890
+ "model.layers.59.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
891
+ "model.layers.59.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
892
+ "model.layers.59.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
893
+ "model.layers.59.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
894
+ "model.layers.59.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
895
+ "model.layers.59.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
896
+ "model.layers.59.self_attn.k_proj.weight_packed": "model-00004-of-00004.safetensors",
897
+ "model.layers.59.self_attn.k_proj.weight_scale": "model-00004-of-00004.safetensors",
898
+ "model.layers.59.self_attn.o_proj.weight_packed": "model-00004-of-00004.safetensors",
899
+ "model.layers.59.self_attn.o_proj.weight_scale": "model-00004-of-00004.safetensors",
900
+ "model.layers.59.self_attn.q_proj.weight_packed": "model-00004-of-00004.safetensors",
901
+ "model.layers.59.self_attn.q_proj.weight_scale": "model-00004-of-00004.safetensors",
902
+ "model.layers.59.self_attn.v_proj.weight_packed": "model-00004-of-00004.safetensors",
903
+ "model.layers.59.self_attn.v_proj.weight_scale": "model-00004-of-00004.safetensors",
904
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
905
+ "model.layers.6.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
906
+ "model.layers.6.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
907
+ "model.layers.6.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
908
+ "model.layers.6.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
909
+ "model.layers.6.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
910
+ "model.layers.6.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
911
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
912
+ "model.layers.6.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
913
+ "model.layers.6.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
914
+ "model.layers.6.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
915
+ "model.layers.6.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
916
+ "model.layers.6.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
917
+ "model.layers.6.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
918
+ "model.layers.6.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
919
+ "model.layers.6.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
920
+ "model.layers.60.input_layernorm.weight": "model-00004-of-00004.safetensors",
921
+ "model.layers.60.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
922
+ "model.layers.60.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
923
+ "model.layers.60.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
924
+ "model.layers.60.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
925
+ "model.layers.60.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
926
+ "model.layers.60.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
927
+ "model.layers.60.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
928
+ "model.layers.60.self_attn.k_proj.weight_packed": "model-00004-of-00004.safetensors",
929
+ "model.layers.60.self_attn.k_proj.weight_scale": "model-00004-of-00004.safetensors",
930
+ "model.layers.60.self_attn.o_proj.weight_packed": "model-00004-of-00004.safetensors",
931
+ "model.layers.60.self_attn.o_proj.weight_scale": "model-00004-of-00004.safetensors",
932
+ "model.layers.60.self_attn.q_proj.weight_packed": "model-00004-of-00004.safetensors",
933
+ "model.layers.60.self_attn.q_proj.weight_scale": "model-00004-of-00004.safetensors",
934
+ "model.layers.60.self_attn.v_proj.weight_packed": "model-00004-of-00004.safetensors",
935
+ "model.layers.60.self_attn.v_proj.weight_scale": "model-00004-of-00004.safetensors",
936
+ "model.layers.61.input_layernorm.weight": "model-00004-of-00004.safetensors",
937
+ "model.layers.61.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
938
+ "model.layers.61.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
939
+ "model.layers.61.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
940
+ "model.layers.61.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
941
+ "model.layers.61.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
942
+ "model.layers.61.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
943
+ "model.layers.61.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
944
+ "model.layers.61.self_attn.k_proj.weight_packed": "model-00004-of-00004.safetensors",
945
+ "model.layers.61.self_attn.k_proj.weight_scale": "model-00004-of-00004.safetensors",
946
+ "model.layers.61.self_attn.o_proj.weight_packed": "model-00004-of-00004.safetensors",
947
+ "model.layers.61.self_attn.o_proj.weight_scale": "model-00004-of-00004.safetensors",
948
+ "model.layers.61.self_attn.q_proj.weight_packed": "model-00004-of-00004.safetensors",
949
+ "model.layers.61.self_attn.q_proj.weight_scale": "model-00004-of-00004.safetensors",
950
+ "model.layers.61.self_attn.v_proj.weight_packed": "model-00004-of-00004.safetensors",
951
+ "model.layers.61.self_attn.v_proj.weight_scale": "model-00004-of-00004.safetensors",
952
+ "model.layers.62.input_layernorm.weight": "model-00004-of-00004.safetensors",
953
+ "model.layers.62.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
954
+ "model.layers.62.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
955
+ "model.layers.62.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
956
+ "model.layers.62.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
957
+ "model.layers.62.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
958
+ "model.layers.62.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
959
+ "model.layers.62.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
960
+ "model.layers.62.self_attn.k_proj.weight_packed": "model-00004-of-00004.safetensors",
961
+ "model.layers.62.self_attn.k_proj.weight_scale": "model-00004-of-00004.safetensors",
962
+ "model.layers.62.self_attn.o_proj.weight_packed": "model-00004-of-00004.safetensors",
963
+ "model.layers.62.self_attn.o_proj.weight_scale": "model-00004-of-00004.safetensors",
964
+ "model.layers.62.self_attn.q_proj.weight_packed": "model-00004-of-00004.safetensors",
965
+ "model.layers.62.self_attn.q_proj.weight_scale": "model-00004-of-00004.safetensors",
966
+ "model.layers.62.self_attn.v_proj.weight_packed": "model-00004-of-00004.safetensors",
967
+ "model.layers.62.self_attn.v_proj.weight_scale": "model-00004-of-00004.safetensors",
968
+ "model.layers.63.input_layernorm.weight": "model-00004-of-00004.safetensors",
969
+ "model.layers.63.mlp.down_proj.weight_packed": "model-00004-of-00004.safetensors",
970
+ "model.layers.63.mlp.down_proj.weight_scale": "model-00004-of-00004.safetensors",
971
+ "model.layers.63.mlp.gate_proj.weight_packed": "model-00004-of-00004.safetensors",
972
+ "model.layers.63.mlp.gate_proj.weight_scale": "model-00004-of-00004.safetensors",
973
+ "model.layers.63.mlp.up_proj.weight_packed": "model-00004-of-00004.safetensors",
974
+ "model.layers.63.mlp.up_proj.weight_scale": "model-00004-of-00004.safetensors",
975
+ "model.layers.63.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
976
+ "model.layers.63.self_attn.k_proj.weight_packed": "model-00004-of-00004.safetensors",
977
+ "model.layers.63.self_attn.k_proj.weight_scale": "model-00004-of-00004.safetensors",
978
+ "model.layers.63.self_attn.o_proj.weight_packed": "model-00004-of-00004.safetensors",
979
+ "model.layers.63.self_attn.o_proj.weight_scale": "model-00004-of-00004.safetensors",
980
+ "model.layers.63.self_attn.q_proj.weight_packed": "model-00004-of-00004.safetensors",
981
+ "model.layers.63.self_attn.q_proj.weight_scale": "model-00004-of-00004.safetensors",
982
+ "model.layers.63.self_attn.v_proj.weight_packed": "model-00004-of-00004.safetensors",
983
+ "model.layers.63.self_attn.v_proj.weight_scale": "model-00004-of-00004.safetensors",
984
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
985
+ "model.layers.7.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
986
+ "model.layers.7.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
987
+ "model.layers.7.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
988
+ "model.layers.7.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
989
+ "model.layers.7.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
990
+ "model.layers.7.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
991
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
992
+ "model.layers.7.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
993
+ "model.layers.7.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
994
+ "model.layers.7.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
995
+ "model.layers.7.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
996
+ "model.layers.7.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
997
+ "model.layers.7.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
998
+ "model.layers.7.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
999
+ "model.layers.7.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
1000
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
1001
+ "model.layers.8.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
1002
+ "model.layers.8.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
1003
+ "model.layers.8.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
1004
+ "model.layers.8.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
1005
+ "model.layers.8.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
1006
+ "model.layers.8.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
1007
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
1008
+ "model.layers.8.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
1009
+ "model.layers.8.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
1010
+ "model.layers.8.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
1011
+ "model.layers.8.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
1012
+ "model.layers.8.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
1013
+ "model.layers.8.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
1014
+ "model.layers.8.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
1015
+ "model.layers.8.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
1016
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00004.safetensors",
1017
+ "model.layers.9.mlp.down_proj.weight_packed": "model-00001-of-00004.safetensors",
1018
+ "model.layers.9.mlp.down_proj.weight_scale": "model-00001-of-00004.safetensors",
1019
+ "model.layers.9.mlp.gate_proj.weight_packed": "model-00001-of-00004.safetensors",
1020
+ "model.layers.9.mlp.gate_proj.weight_scale": "model-00001-of-00004.safetensors",
1021
+ "model.layers.9.mlp.up_proj.weight_packed": "model-00001-of-00004.safetensors",
1022
+ "model.layers.9.mlp.up_proj.weight_scale": "model-00001-of-00004.safetensors",
1023
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
1024
+ "model.layers.9.self_attn.k_proj.weight_packed": "model-00001-of-00004.safetensors",
1025
+ "model.layers.9.self_attn.k_proj.weight_scale": "model-00001-of-00004.safetensors",
1026
+ "model.layers.9.self_attn.o_proj.weight_packed": "model-00001-of-00004.safetensors",
1027
+ "model.layers.9.self_attn.o_proj.weight_scale": "model-00001-of-00004.safetensors",
1028
+ "model.layers.9.self_attn.q_proj.weight_packed": "model-00001-of-00004.safetensors",
1029
+ "model.layers.9.self_attn.q_proj.weight_scale": "model-00001-of-00004.safetensors",
1030
+ "model.layers.9.self_attn.v_proj.weight_packed": "model-00001-of-00004.safetensors",
1031
+ "model.layers.9.self_attn.v_proj.weight_scale": "model-00001-of-00004.safetensors",
1032
+ "model.norm.weight": "model-00004-of-00004.safetensors"
1033
+ }
1034
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|CLS|>",
4
+ "<|SEP|>",
5
+ "<|EOD|>",
6
+ "<|MASK|>",
7
+ "<|PAD|>",
8
+ "<|fim_prefix|>",
9
+ "<|fim_middle|>",
10
+ "<|fim_suffix|>",
11
+ "<|im_start|>",
12
+ "<|im_end|>",
13
+ "<|fim_pad|>",
14
+ "<|endoftext|>",
15
+ "<|repo_name|>",
16
+ "<|file_sep|>"
17
+ ],
18
+ "bos_token": {
19
+ "content": "<s>",
20
+ "lstrip": false,
21
+ "normalized": true,
22
+ "rstrip": false,
23
+ "single_word": false
24
+ },
25
+ "eos_token": {
26
+ "content": "<|im_end|>",
27
+ "lstrip": false,
28
+ "normalized": false,
29
+ "rstrip": false,
30
+ "single_word": false
31
+ },
32
+ "pad_token": {
33
+ "content": "<|endoftext|>",
34
+ "lstrip": false,
35
+ "normalized": false,
36
+ "rstrip": false,
37
+ "single_word": false
38
+ },
39
+ "unk_token": {
40
+ "content": "<unk>",
41
+ "lstrip": false,
42
+ "normalized": true,
43
+ "rstrip": false,
44
+ "single_word": true
45
+ }
46
+ }
tokenization_iquestcoder.py ADDED
@@ -0,0 +1,552 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Tokenization classes for IQuestCoder."""
2
+
3
+ import os
4
+ from shutil import copyfile
5
+ from typing import Any, Dict, List, Optional, Tuple, Union
6
+
7
+ import sentencepiece as spm
8
+
9
+ from transformers.tokenization_utils import AddedToken, PreTrainedTokenizer
10
+ from transformers.utils import logging
11
+
12
+
13
+ logger = logging.get_logger(__name__)
14
+
15
+ VOCAB_FILES_NAMES = {"vocab_file": "tokenizer.model"}
16
+
17
+ PRETRAINED_VOCAB_FILES_MAP = {
18
+ "vocab_file": {},
19
+ "tokenizer_file": {},
20
+ }
21
+ PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES = {}
22
+
23
+
24
+
25
+ class IQuestCoderTokenizer(PreTrainedTokenizer):
26
+
27
+ vocab_files_names = VOCAB_FILES_NAMES
28
+ pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
29
+ max_model_input_sizes = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES
30
+ model_input_names = ["input_ids", "attention_mask"]
31
+
32
+ def __init__(
33
+ self,
34
+ vocab_file,
35
+ unk_token="<unk>",
36
+ bos_token="<s>",
37
+ eos_token="</s>",
38
+ pad_token=None,
39
+ sp_model_kwargs: Optional[Dict[str, Any]] = None,
40
+ add_bos_token=True,
41
+ add_eos_token=False,
42
+ clean_up_tokenization_spaces=False,
43
+ add_prefix_space=False,
44
+ legacy=None,
45
+ use_default_system_prompt=False,
46
+ chat_template=None,
47
+ **kwargs,
48
+ ):
49
+ self.sp_model_kwargs = {} if sp_model_kwargs is None else sp_model_kwargs
50
+ bos_token = AddedToken(bos_token, lstrip=False, rstrip=False) if isinstance(bos_token, str) else bos_token
51
+ eos_token = AddedToken(eos_token, lstrip=False, rstrip=False) if isinstance(eos_token, str) else eos_token
52
+ unk_token = AddedToken(unk_token, lstrip=False, rstrip=False) if isinstance(unk_token, str) else unk_token
53
+ pad_token = AddedToken(pad_token, lstrip=False, rstrip=False) if isinstance(pad_token, str) else pad_token
54
+
55
+ # Legacy behavior handling
56
+ if legacy is None:
57
+ logger.warning_once(
58
+ f"You are using the default legacy behaviour of the {self.__class__.__name__}. This is"
59
+ " expected, and simply means that the `legacy` (previous) behavior will be used so nothing changes for you."
60
+ " If you want to use the new behaviour, set `legacy=False`. This should only be set if you understand what it"
61
+ " means, and thoroughly read the reason why this was added as explained in"
62
+ " https://github.com/huggingface/transformers/pull/24565"
63
+ )
64
+ legacy = True
65
+
66
+ self.legacy = legacy
67
+ self.vocab_file = vocab_file
68
+ self.add_bos_token = add_bos_token
69
+ self.add_eos_token = add_eos_token
70
+ self.add_prefix_space = add_prefix_space
71
+ self.use_default_system_prompt = use_default_system_prompt
72
+ self.sp_model = spm.SentencePieceProcessor(**self.sp_model_kwargs)
73
+ self.sp_model.Load(vocab_file)
74
+
75
+
76
+
77
+ super().__init__(
78
+ bos_token=bos_token,
79
+ eos_token=eos_token,
80
+ unk_token=unk_token,
81
+ pad_token=pad_token,
82
+ add_bos_token=add_bos_token,
83
+ add_eos_token=add_eos_token,
84
+ sp_model_kwargs=self.sp_model_kwargs,
85
+ clean_up_tokenization_spaces=clean_up_tokenization_spaces,
86
+ add_prefix_space=add_prefix_space,
87
+ legacy=legacy,
88
+ use_default_system_prompt=use_default_system_prompt,
89
+ chat_template=chat_template,
90
+ **kwargs,
91
+ )
92
+
93
+ def __getstate__(self):
94
+ state = self.__dict__.copy()
95
+ state["sp_model"] = None
96
+ return state
97
+
98
+ def __setstate__(self, d):
99
+ self.__dict__ = d
100
+ self.sp_model = spm.SentencePieceProcessor(**self.sp_model_kwargs)
101
+ self.sp_model.Load(self.vocab_file)
102
+
103
+ @property
104
+ def vocab_size(self) -> int:
105
+ """Returns the vocabulary size."""
106
+ return self.sp_model.get_piece_size()
107
+
108
+ def get_vocab(self) -> Dict[str, int]:
109
+ """Returns the vocabulary as a dictionary of token to index."""
110
+ vocab = {self.convert_ids_to_tokens(i): i for i in range(self.vocab_size)}
111
+ vocab.update(self.added_tokens_encoder)
112
+ return vocab
113
+
114
+ def _tokenize(self, text: str) -> List[str]:
115
+ """
116
+ Tokenize a string.
117
+
118
+ Args:
119
+ text (`str`): The text to tokenize.
120
+
121
+ Returns:
122
+ `List[str]`: The list of tokens.
123
+ """
124
+ if self.add_prefix_space:
125
+ text = " " + text
126
+
127
+ if self.legacy:
128
+ return self.sp_model.encode(text, out_type=str)
129
+
130
+ # Non-legacy behavior: handle special tokens properly
131
+ return self.sp_model.encode(text, out_type=str)
132
+
133
+ def _convert_token_to_id(self, token: str) -> int:
134
+ """Converts a token (str) to an id using the vocab."""
135
+ return self.sp_model.piece_to_id(token)
136
+
137
+ def _convert_id_to_token(self, index: int) -> str:
138
+ """Converts an index (integer) to a token (str) using the vocab."""
139
+ token = self.sp_model.IdToPiece(index)
140
+ return token
141
+
142
+ def convert_tokens_to_string(self, tokens: List[str]) -> str:
143
+ """
144
+ Converts a sequence of tokens (strings) to a single string.
145
+
146
+ This method handles special tokens separately to ensure they are not
147
+ decoded using the SentencePiece model.
148
+
149
+ Args:
150
+ tokens (`List[str]`): The list of tokens to convert.
151
+
152
+ Returns:
153
+ `str`: The decoded string.
154
+ """
155
+ current_sub_tokens = []
156
+ out_string = ""
157
+ prev_is_special = False
158
+ for i, token in enumerate(tokens):
159
+ # make sure that special tokens are not decoded using sentencepiece model
160
+ if token in self.all_special_tokens:
161
+ if not prev_is_special and i != 0:
162
+ out_string += " "
163
+ out_string += self.sp_model.decode(current_sub_tokens) + token
164
+ prev_is_special = True
165
+ current_sub_tokens = []
166
+ else:
167
+ current_sub_tokens.append(token)
168
+ prev_is_special = False
169
+ out_string += self.sp_model.decode(current_sub_tokens)
170
+ return out_string
171
+
172
+ def save_vocabulary(self, save_directory: str, filename_prefix: Optional[str] = None) -> Tuple[str]:
173
+ """
174
+ Save the vocabulary and special tokens file to a directory.
175
+
176
+ Args:
177
+ save_directory (`str`):
178
+ The directory in which to save the vocabulary.
179
+ filename_prefix (`str`, *optional*):
180
+ An optional prefix to add to the named of the saved files.
181
+
182
+ Returns:
183
+ `Tuple(str)`: Paths to the files saved.
184
+ """
185
+ if not os.path.isdir(save_directory):
186
+ logger.error(f"Vocabulary path ({save_directory}) should be a directory")
187
+ return
188
+ out_vocab_file = os.path.join(
189
+ save_directory, (filename_prefix + "-" if filename_prefix else "") + VOCAB_FILES_NAMES["vocab_file"]
190
+ )
191
+
192
+ if os.path.abspath(self.vocab_file) != os.path.abspath(out_vocab_file) and os.path.isfile(self.vocab_file):
193
+ copyfile(self.vocab_file, out_vocab_file)
194
+ elif not os.path.isfile(self.vocab_file):
195
+ with open(out_vocab_file, "wb") as fi:
196
+ content_spiece_model = self.sp_model.serialized_model_proto()
197
+ fi.write(content_spiece_model)
198
+
199
+ return (out_vocab_file,)
200
+
201
+ def build_inputs_with_special_tokens(
202
+ self,
203
+ token_ids_0: List[int],
204
+ token_ids_1: Optional[List[int]] = None
205
+ ) -> List[int]:
206
+ """
207
+ Build model inputs from a sequence or a pair of sequences for sequence classification tasks by concatenating
208
+ and adding special tokens.
209
+
210
+ An IQuestCoder sequence has the following format:
211
+
212
+ - single sequence: `<s> X </s>` (if add_eos_token is True) or `<s> X` (default)
213
+ - pair of sequences: `<s> A </s> <s> B </s>` (if add_eos_token is True) or `<s> A <s> B` (default)
214
+
215
+ Args:
216
+ token_ids_0 (`List[int]`):
217
+ List of IDs to which the special tokens will be added.
218
+ token_ids_1 (`List[int]`, *optional*):
219
+ Optional second list of IDs for sequence pairs.
220
+
221
+ Returns:
222
+ `List[int]`: List of input IDs with the appropriate special tokens.
223
+ """
224
+ bos_token_id = [self.bos_token_id] if self.add_bos_token else []
225
+ eos_token_id = [self.eos_token_id] if self.add_eos_token else []
226
+
227
+ output = bos_token_id + token_ids_0 + eos_token_id
228
+
229
+ if token_ids_1 is not None:
230
+ output = output + bos_token_id + token_ids_1 + eos_token_id
231
+
232
+ return output
233
+
234
+ def get_special_tokens_mask(
235
+ self,
236
+ token_ids_0: List[int],
237
+ token_ids_1: Optional[List[int]] = None,
238
+ already_has_special_tokens: bool = False
239
+ ) -> List[int]:
240
+ """
241
+ Retrieve sequence ids from a token list that has no special tokens added. This method is called when adding
242
+ special tokens using the tokenizer `prepare_for_model` method.
243
+
244
+ Args:
245
+ token_ids_0 (`List[int]`):
246
+ List of IDs.
247
+ token_ids_1 (`List[int]`, *optional*):
248
+ Optional second list of IDs for sequence pairs.
249
+ already_has_special_tokens (`bool`, *optional*, defaults to `False`):
250
+ Whether or not the token list is already formatted with special tokens for the model.
251
+
252
+ Returns:
253
+ `List[int]`: A list of integers in the range [0, 1]: 1 for a special token, 0 for a sequence token.
254
+ """
255
+ if already_has_special_tokens:
256
+ return super().get_special_tokens_mask(
257
+ token_ids_0=token_ids_0, token_ids_1=token_ids_1, already_has_special_tokens=True
258
+ )
259
+
260
+ bos_token_id = [1] if self.add_bos_token else []
261
+ eos_token_id = [1] if self.add_eos_token else []
262
+
263
+ if token_ids_1 is None:
264
+ return bos_token_id + ([0] * len(token_ids_0)) + eos_token_id
265
+ return (
266
+ bos_token_id
267
+ + ([0] * len(token_ids_0))
268
+ + eos_token_id
269
+ + bos_token_id
270
+ + ([0] * len(token_ids_1))
271
+ + eos_token_id
272
+ )
273
+
274
+ def create_token_type_ids_from_sequences(
275
+ self,
276
+ token_ids_0: List[int],
277
+ token_ids_1: Optional[List[int]] = None
278
+ ) -> List[int]:
279
+ """
280
+ Create a mask from the two sequences passed to be used in a sequence-pair classification task.
281
+
282
+ An IQuestCoder sequence pair mask has the following format:
283
+
284
+ ```
285
+ 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1
286
+ | first sequence | second sequence |
287
+ ```
288
+
289
+ If `token_ids_1` is `None`, this method only returns the first portion of the mask (0s).
290
+
291
+ Args:
292
+ token_ids_0 (`List[int]`):
293
+ List of IDs.
294
+ token_ids_1 (`List[int]`, *optional*):
295
+ Optional second list of IDs for sequence pairs.
296
+
297
+ Returns:
298
+ `List[int]`: List of token type IDs according to the given sequence(s).
299
+ """
300
+ bos_token_id = [self.bos_token_id] if self.add_bos_token else []
301
+ eos_token_id = [self.eos_token_id] if self.add_eos_token else []
302
+
303
+ output = [0] * len(bos_token_id + token_ids_0 + eos_token_id)
304
+
305
+ if token_ids_1 is not None:
306
+ output += [1] * len(bos_token_id + token_ids_1 + eos_token_id)
307
+
308
+ return output
309
+
310
+ @property
311
+ def default_chat_template(self) -> str:
312
+ """
313
+ Returns the default chat template for IQuestCoder.
314
+
315
+ This template formats conversations with system, user, and assistant roles.
316
+ """
317
+ return DEFAULT_CHAT_TEMPLATE
318
+
319
+ def apply_chat_template(
320
+ self,
321
+ conversation: Union[List[Dict[str, str]], "Conversation"],
322
+ chat_template: Optional[str] = None,
323
+ add_generation_prompt: bool = False,
324
+ tokenize: bool = True,
325
+ padding: bool = False,
326
+ truncation: bool = False,
327
+ max_length: Optional[int] = None,
328
+ return_tensors: Optional[str] = None,
329
+ return_dict: bool = False,
330
+ **tokenizer_kwargs,
331
+ ):
332
+ """
333
+ Apply a chat template to format a conversation.
334
+
335
+ Args:
336
+ conversation (`List[Dict[str, str]]` or `Conversation`):
337
+ A list of dicts with "role" and "content" keys, representing the conversation history.
338
+ chat_template (`str`, *optional*):
339
+ A Jinja template to use for formatting. If not provided, the tokenizer's default will be used.
340
+ add_generation_prompt (`bool`, *optional*, defaults to `False`):
341
+ Whether to add a generation prompt at the end for the assistant to continue.
342
+ tokenize (`bool`, *optional*, defaults to `True`):
343
+ Whether to tokenize the output. If `False`, returns a string.
344
+ padding (`bool`, *optional*, defaults to `False`):
345
+ Whether to pad sequences.
346
+ truncation (`bool`, *optional*, defaults to `False`):
347
+ Whether to truncate sequences.
348
+ max_length (`int`, *optional*):
349
+ Maximum length of the output.
350
+ return_tensors (`str`, *optional*):
351
+ The type of tensors to return ("pt", "tf", "np", or None).
352
+ return_dict (`bool`, *optional*, defaults to `False`):
353
+ Whether to return a dictionary with additional information.
354
+ **tokenizer_kwargs:
355
+ Additional keyword arguments passed to the tokenizer.
356
+
357
+ Returns:
358
+ `Union[str, List[int], BatchEncoding]`: The formatted (and optionally tokenized) conversation.
359
+
360
+ Example:
361
+ ```python
362
+ >>> tokenizer = IQuestCoderTokenizer.from_pretrained("path/to/model")
363
+ >>> conversation = [
364
+ ... {"role": "system", "content": "You are a helpful assistant."},
365
+ ... {"role": "user", "content": "Hello!"},
366
+ ... {"role": "assistant", "content": "Hi there! How can I help you today?"},
367
+ ... {"role": "user", "content": "What's the weather like?"},
368
+ ... ]
369
+ >>> tokenizer.apply_chat_template(conversation, add_generation_prompt=True, tokenize=False)
370
+ '<|system|>\\nYou are a helpful assistant.\\n</|system|><|user|>\\nHello!\\n</|user|>...'
371
+ ```
372
+ """
373
+ # Use parent class implementation with our template
374
+ return super().apply_chat_template(
375
+ conversation,
376
+ chat_template=chat_template,
377
+ add_generation_prompt=add_generation_prompt,
378
+ tokenize=tokenize,
379
+ padding=padding,
380
+ truncation=truncation,
381
+ max_length=max_length,
382
+ return_tensors=return_tensors,
383
+ return_dict=return_dict,
384
+ **tokenizer_kwargs,
385
+ )
386
+
387
+
388
+ # Try to import and create Fast tokenizer version
389
+ try:
390
+ from transformers import PreTrainedTokenizerFast
391
+ from tokenizers import Tokenizer, decoders, models, normalizers, pre_tokenizers, processors
392
+
393
+ class IQuestCoderTokenizerFast(PreTrainedTokenizerFast):
394
+ """
395
+ Construct a "fast" IQuestCoder tokenizer (backed by HuggingFace's *tokenizers* library).
396
+
397
+ This is a fast implementation of [`IQuestCoderTokenizer`] using the 🤗 Tokenizers library.
398
+
399
+ Args:
400
+ vocab_file (`str`, *optional*):
401
+ Path to the vocabulary file (SentencePiece model).
402
+ tokenizer_file (`str`, *optional*):
403
+ Path to a tokenizer JSON file.
404
+ unk_token (`str`, *optional*, defaults to `"<unk>"`):
405
+ The unknown token.
406
+ bos_token (`str`, *optional*, defaults to `"<s>"`):
407
+ The beginning of sequence token.
408
+ eos_token (`str`, *optional*, defaults to `"</s>"`):
409
+ The end of sequence token.
410
+ pad_token (`str`, *optional*):
411
+ The token used for padding.
412
+ add_bos_token (`bool`, *optional*, defaults to `True`):
413
+ Whether to add a BOS token at the start of sequences.
414
+ add_eos_token (`bool`, *optional*, defaults to `False`):
415
+ Whether to add an EOS token at the end of sequences.
416
+ add_prefix_space (`bool`, *optional*, defaults to `False`):
417
+ Whether to add an initial space to the input.
418
+ use_default_system_prompt (`bool`, *optional*, defaults to `False`):
419
+ Whether to use the default system prompt.
420
+ chat_template (`str`, *optional*):
421
+ A Jinja template for formatting conversations.
422
+
423
+ Example:
424
+ ```python
425
+ >>> from tokenization_iquestcoder import IQuestCoderTokenizerFast
426
+
427
+ >>> tokenizer = IQuestCoderTokenizerFast.from_pretrained("path/to/model")
428
+ >>> tokenizer.encode("Hello, world!")
429
+ [1, 15043, 29892, 3186, 29991]
430
+ ```
431
+ """
432
+
433
+ vocab_files_names = VOCAB_FILES_NAMES
434
+ pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
435
+ max_model_input_sizes = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES
436
+ model_input_names = ["input_ids", "attention_mask"]
437
+ slow_tokenizer_class = IQuestCoderTokenizer
438
+
439
+ def __init__(
440
+ self,
441
+ vocab_file=None,
442
+ tokenizer_file=None,
443
+ unk_token="<unk>",
444
+ bos_token="<s>",
445
+ eos_token="</s>",
446
+ pad_token=None,
447
+ add_bos_token=True,
448
+ add_eos_token=False,
449
+ add_prefix_space=False,
450
+ use_default_system_prompt=False,
451
+ chat_template=None,
452
+ **kwargs,
453
+ ):
454
+ self.add_bos_token = add_bos_token
455
+ self.add_eos_token = add_eos_token
456
+ self.add_prefix_space = add_prefix_space
457
+ self.use_default_system_prompt = use_default_system_prompt
458
+
459
+ if chat_template is None:
460
+ chat_template = DEFAULT_CHAT_TEMPLATE
461
+
462
+ super().__init__(
463
+ vocab_file=vocab_file,
464
+ tokenizer_file=tokenizer_file,
465
+ unk_token=unk_token,
466
+ bos_token=bos_token,
467
+ eos_token=eos_token,
468
+ pad_token=pad_token,
469
+ add_bos_token=add_bos_token,
470
+ add_eos_token=add_eos_token,
471
+ add_prefix_space=add_prefix_space,
472
+ use_default_system_prompt=use_default_system_prompt,
473
+ chat_template=chat_template,
474
+ **kwargs,
475
+ )
476
+
477
+ @property
478
+ def can_save_slow_tokenizer(self) -> bool:
479
+ return os.path.isfile(self.vocab_file) if self.vocab_file else False
480
+
481
+ @property
482
+ def default_chat_template(self) -> str:
483
+ """Returns the default chat template."""
484
+ return DEFAULT_CHAT_TEMPLATE
485
+
486
+ def build_inputs_with_special_tokens(
487
+ self,
488
+ token_ids_0: List[int],
489
+ token_ids_1: Optional[List[int]] = None
490
+ ) -> List[int]:
491
+ """Build model inputs with special tokens."""
492
+ bos_token_id = [self.bos_token_id] if self.add_bos_token else []
493
+ eos_token_id = [self.eos_token_id] if self.add_eos_token else []
494
+
495
+ output = bos_token_id + token_ids_0 + eos_token_id
496
+
497
+ if token_ids_1 is not None:
498
+ output = output + bos_token_id + token_ids_1 + eos_token_id
499
+
500
+ return output
501
+
502
+ def get_special_tokens_mask(
503
+ self,
504
+ token_ids_0: List[int],
505
+ token_ids_1: Optional[List[int]] = None,
506
+ already_has_special_tokens: bool = False
507
+ ) -> List[int]:
508
+ """Retrieve special tokens mask."""
509
+ if already_has_special_tokens:
510
+ return super().get_special_tokens_mask(
511
+ token_ids_0=token_ids_0, token_ids_1=token_ids_1, already_has_special_tokens=True
512
+ )
513
+
514
+ bos_token_id = [1] if self.add_bos_token else []
515
+ eos_token_id = [1] if self.add_eos_token else []
516
+
517
+ if token_ids_1 is None:
518
+ return bos_token_id + ([0] * len(token_ids_0)) + eos_token_id
519
+ return (
520
+ bos_token_id
521
+ + ([0] * len(token_ids_0))
522
+ + eos_token_id
523
+ + bos_token_id
524
+ + ([0] * len(token_ids_1))
525
+ + eos_token_id
526
+ )
527
+
528
+ def create_token_type_ids_from_sequences(
529
+ self,
530
+ token_ids_0: List[int],
531
+ token_ids_1: Optional[List[int]] = None
532
+ ) -> List[int]:
533
+ """Create token type IDs from sequences."""
534
+ bos_token_id = [self.bos_token_id] if self.add_bos_token else []
535
+ eos_token_id = [self.eos_token_id] if self.add_eos_token else []
536
+
537
+ output = [0] * len(bos_token_id + token_ids_0 + eos_token_id)
538
+
539
+ if token_ids_1 is not None:
540
+ output += [1] * len(bos_token_id + token_ids_1 + eos_token_id)
541
+
542
+ return output
543
+
544
+ except ImportError:
545
+ # tokenizers library not available, Fast tokenizer not supported
546
+ IQuestCoderTokenizerFast = None
547
+ logger.info(
548
+ "The `tokenizers` library is not installed. "
549
+ "IQuestCoderTokenizerFast will not be available. "
550
+ "Install it with `pip install tokenizers`."
551
+ )
552
+
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d3be68e090a927f31e0e378d7599b15c206dd47e4a73933775a746cc9c1cd91
3
+ size 1345108
tokenizer_config.json ADDED
@@ -0,0 +1,283 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": false,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": true,
10
+ "rstrip": false,
11
+ "single_word": true,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": true,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": true,
26
+ "rstrip": false,
27
+ "single_word": true,
28
+ "special": true
29
+ },
30
+ "75858": {
31
+ "content": "<CLS>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "75859": {
39
+ "content": "<SEP>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": true
45
+ },
46
+ "75860": {
47
+ "content": "<EOD>",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": true
53
+ },
54
+ "75861": {
55
+ "content": "<MASK>",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": true
61
+ },
62
+ "75862": {
63
+ "content": "<PAD>",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ },
70
+ "75863": {
71
+ "content": "<|im_start|>",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": true
77
+ },
78
+ "75864": {
79
+ "content": "<|im_end|>",
80
+ "lstrip": false,
81
+ "normalized": false,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": true
85
+ },
86
+ "75865": {
87
+ "content": "<|fim_prefix|>",
88
+ "lstrip": false,
89
+ "normalized": false,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": true
93
+ },
94
+ "75866": {
95
+ "content": "<|fim_middle|>",
96
+ "lstrip": false,
97
+ "normalized": false,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": true
101
+ },
102
+ "75867": {
103
+ "content": "<|fim_suffix|>",
104
+ "lstrip": false,
105
+ "normalized": false,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": true
109
+ },
110
+ "75868": {
111
+ "content": "<|fim_pad|>",
112
+ "lstrip": false,
113
+ "normalized": false,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": true
117
+ },
118
+ "75869": {
119
+ "content": "<|endoftext|>",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": true
125
+ },
126
+ "75870": {
127
+ "content": "<|repo_name|>",
128
+ "lstrip": false,
129
+ "normalized": false,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": true
133
+ },
134
+ "75871": {
135
+ "content": "<|file_sep|>",
136
+ "lstrip": false,
137
+ "normalized": false,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": true
141
+ },
142
+ "75872": {
143
+ "content": "<think>",
144
+ "lstrip": false,
145
+ "normalized": false,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "75873": {
151
+ "content": "</think>",
152
+ "lstrip": false,
153
+ "normalized": false,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "75874": {
159
+ "content": "<tools>",
160
+ "lstrip": false,
161
+ "normalized": false,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "75875": {
167
+ "content": "</tools>",
168
+ "lstrip": false,
169
+ "normalized": false,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "75876": {
175
+ "content": "<tool_call>",
176
+ "lstrip": false,
177
+ "normalized": false,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": false
181
+ },
182
+ "75877": {
183
+ "content": "</tool_call>",
184
+ "lstrip": false,
185
+ "normalized": false,
186
+ "rstrip": false,
187
+ "single_word": false,
188
+ "special": false
189
+ },
190
+ "75878": {
191
+ "content": "<tool_response>",
192
+ "lstrip": false,
193
+ "normalized": false,
194
+ "rstrip": false,
195
+ "single_word": false,
196
+ "special": false
197
+ },
198
+ "75879": {
199
+ "content": "</tool_response>",
200
+ "lstrip": false,
201
+ "normalized": false,
202
+ "rstrip": false,
203
+ "single_word": false,
204
+ "special": false
205
+ },
206
+ "75880": {
207
+ "content": "<|CLS|>",
208
+ "lstrip": false,
209
+ "normalized": false,
210
+ "rstrip": false,
211
+ "single_word": false,
212
+ "special": true
213
+ },
214
+ "75881": {
215
+ "content": "<|SEP|>",
216
+ "lstrip": false,
217
+ "normalized": false,
218
+ "rstrip": false,
219
+ "single_word": false,
220
+ "special": true
221
+ },
222
+ "75882": {
223
+ "content": "<|EOD|>",
224
+ "lstrip": false,
225
+ "normalized": false,
226
+ "rstrip": false,
227
+ "single_word": false,
228
+ "special": true
229
+ },
230
+ "75883": {
231
+ "content": "<|MASK|>",
232
+ "lstrip": false,
233
+ "normalized": false,
234
+ "rstrip": false,
235
+ "single_word": false,
236
+ "special": true
237
+ },
238
+ "75884": {
239
+ "content": "<|PAD|>",
240
+ "lstrip": false,
241
+ "normalized": false,
242
+ "rstrip": false,
243
+ "single_word": false,
244
+ "special": true
245
+ }
246
+ },
247
+ "additional_special_tokens": [
248
+ "<|CLS|>",
249
+ "<|SEP|>",
250
+ "<|EOD|>",
251
+ "<|MASK|>",
252
+ "<|PAD|>",
253
+ "<|fim_prefix|>",
254
+ "<|fim_middle|>",
255
+ "<|fim_suffix|>",
256
+ "<|im_start|>",
257
+ "<|im_end|>",
258
+ "<|fim_pad|>",
259
+ "<|endoftext|>",
260
+ "<|repo_name|>",
261
+ "<|file_sep|>"
262
+ ],
263
+ "auto_map": {
264
+ "AutoTokenizer": [
265
+ "tokenization_iquestcoder.IQuestCoderTokenizer",
266
+ null
267
+ ]
268
+ },
269
+ "bos_token": "<s>",
270
+ "clean_up_tokenization_spaces": false,
271
+ "eos_token": "<|im_end|>",
272
+ "extra_special_tokens": {},
273
+ "legacy": true,
274
+ "model_max_length": 131072,
275
+ "pad_token": "<|endoftext|>",
276
+ "padding_side": "right",
277
+ "sp_model_kwargs": {},
278
+ "split_special_tokens": false,
279
+ "tokenizer_class": "IQuestCoderTokenizer",
280
+ "unk_token": "<unk>",
281
+ "use_default_system_prompt": false,
282
+ "use_fast": false
283
+ }