Add files using upload-large-folder tool
Browse files- README.md +40 -0
- config.json +46 -0
- generation_config.json +6 -0
- model.safetensors +3 -0
- model.safetensors.index.json +527 -0
- special_tokens_map.json +340 -0
- tokenizer.json +0 -0
- tokenizer_config.json +0 -0
README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: mlx
|
| 3 |
+
tags:
|
| 4 |
+
- bitnet
|
| 5 |
+
- falcon-e
|
| 6 |
+
- mlx
|
| 7 |
+
license: other
|
| 8 |
+
license_name: falcon-llm-license
|
| 9 |
+
license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
+
base_model: tiiuae/Falcon-E-3B-Instruct
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# mlx-community/Falcon-E-3B-Instruct-6bit
|
| 15 |
+
|
| 16 |
+
This model [mlx-community/Falcon-E-3B-Instruct-6bit](https://huggingface.co/mlx-community/Falcon-E-3B-Instruct-6bit) was
|
| 17 |
+
converted to MLX format from [tiiuae/Falcon-E-3B-Instruct](https://huggingface.co/tiiuae/Falcon-E-3B-Instruct)
|
| 18 |
+
using mlx-lm version **0.25.1**.
|
| 19 |
+
|
| 20 |
+
## Use with mlx
|
| 21 |
+
|
| 22 |
+
```bash
|
| 23 |
+
pip install mlx-lm
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
from mlx_lm import load, generate
|
| 28 |
+
|
| 29 |
+
model, tokenizer = load("mlx-community/Falcon-E-3B-Instruct-6bit")
|
| 30 |
+
|
| 31 |
+
prompt = "hello"
|
| 32 |
+
|
| 33 |
+
if tokenizer.chat_template is not None:
|
| 34 |
+
messages = [{"role": "user", "content": prompt}]
|
| 35 |
+
prompt = tokenizer.apply_chat_template(
|
| 36 |
+
messages, add_generation_prompt=True
|
| 37 |
+
)
|
| 38 |
+
|
| 39 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
| 40 |
+
```
|
config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"LlamaForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 1,
|
| 8 |
+
"eos_token_id": 11,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 2048,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 13312,
|
| 14 |
+
"is_bitnet_config": true,
|
| 15 |
+
"max_position_embeddings": 32768,
|
| 16 |
+
"mlp_bias": false,
|
| 17 |
+
"model_type": "llama",
|
| 18 |
+
"num_attention_heads": 16,
|
| 19 |
+
"num_hidden_layers": 32,
|
| 20 |
+
"num_key_value_heads": 2,
|
| 21 |
+
"pretraining_tp": 1,
|
| 22 |
+
"quantization": {
|
| 23 |
+
"group_size": 64,
|
| 24 |
+
"bits": 6,
|
| 25 |
+
"modules_to_not_convert": [
|
| 26 |
+
"lm_head"
|
| 27 |
+
],
|
| 28 |
+
"quant_method": "bitnet"
|
| 29 |
+
},
|
| 30 |
+
"quantization_config": {
|
| 31 |
+
"group_size": 64,
|
| 32 |
+
"bits": 6,
|
| 33 |
+
"modules_to_not_convert": [
|
| 34 |
+
"lm_head"
|
| 35 |
+
],
|
| 36 |
+
"quant_method": "bitnet"
|
| 37 |
+
},
|
| 38 |
+
"rms_norm_eps": 1e-05,
|
| 39 |
+
"rope_scaling": null,
|
| 40 |
+
"rope_theta": 1000000,
|
| 41 |
+
"tie_word_embeddings": false,
|
| 42 |
+
"torch_dtype": "bfloat16",
|
| 43 |
+
"transformers_version": "4.47.0",
|
| 44 |
+
"use_cache": true,
|
| 45 |
+
"vocab_size": 32768
|
| 46 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 1,
|
| 4 |
+
"eos_token_id": [11, 228],
|
| 5 |
+
"transformers_version": "4.47.0"
|
| 6 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd2f3b4952f51ffb821ed847012a6bc671f01a12867d46556b5b3e7ff18cbaca
|
| 3 |
+
size 839185471
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,527 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 839127488,
|
| 4 |
+
"total_parameters": 864159968
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"lm_head.biases": "model.safetensors",
|
| 8 |
+
"lm_head.scales": "model.safetensors",
|
| 9 |
+
"lm_head.weight": "model.safetensors",
|
| 10 |
+
"model.embed_tokens.biases": "model.safetensors",
|
| 11 |
+
"model.embed_tokens.scales": "model.safetensors",
|
| 12 |
+
"model.embed_tokens.weight": "model.safetensors",
|
| 13 |
+
"model.layers.0.input_layernorm.weight": "model.safetensors",
|
| 14 |
+
"model.layers.0.mlp.down_proj.weight": "model.safetensors",
|
| 15 |
+
"model.layers.0.mlp.down_proj.weight_scale": "model.safetensors",
|
| 16 |
+
"model.layers.0.mlp.gate_proj.weight": "model.safetensors",
|
| 17 |
+
"model.layers.0.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 18 |
+
"model.layers.0.mlp.up_proj.weight": "model.safetensors",
|
| 19 |
+
"model.layers.0.mlp.up_proj.weight_scale": "model.safetensors",
|
| 20 |
+
"model.layers.0.post_attention_layernorm.weight": "model.safetensors",
|
| 21 |
+
"model.layers.0.self_attn.k_proj.weight": "model.safetensors",
|
| 22 |
+
"model.layers.0.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 23 |
+
"model.layers.0.self_attn.o_proj.weight": "model.safetensors",
|
| 24 |
+
"model.layers.0.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 25 |
+
"model.layers.0.self_attn.q_proj.weight": "model.safetensors",
|
| 26 |
+
"model.layers.0.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 27 |
+
"model.layers.0.self_attn.v_proj.weight": "model.safetensors",
|
| 28 |
+
"model.layers.0.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 29 |
+
"model.layers.1.input_layernorm.weight": "model.safetensors",
|
| 30 |
+
"model.layers.1.mlp.down_proj.weight": "model.safetensors",
|
| 31 |
+
"model.layers.1.mlp.down_proj.weight_scale": "model.safetensors",
|
| 32 |
+
"model.layers.1.mlp.gate_proj.weight": "model.safetensors",
|
| 33 |
+
"model.layers.1.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 34 |
+
"model.layers.1.mlp.up_proj.weight": "model.safetensors",
|
| 35 |
+
"model.layers.1.mlp.up_proj.weight_scale": "model.safetensors",
|
| 36 |
+
"model.layers.1.post_attention_layernorm.weight": "model.safetensors",
|
| 37 |
+
"model.layers.1.self_attn.k_proj.weight": "model.safetensors",
|
| 38 |
+
"model.layers.1.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 39 |
+
"model.layers.1.self_attn.o_proj.weight": "model.safetensors",
|
| 40 |
+
"model.layers.1.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 41 |
+
"model.layers.1.self_attn.q_proj.weight": "model.safetensors",
|
| 42 |
+
"model.layers.1.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 43 |
+
"model.layers.1.self_attn.v_proj.weight": "model.safetensors",
|
| 44 |
+
"model.layers.1.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 45 |
+
"model.layers.10.input_layernorm.weight": "model.safetensors",
|
| 46 |
+
"model.layers.10.mlp.down_proj.weight": "model.safetensors",
|
| 47 |
+
"model.layers.10.mlp.down_proj.weight_scale": "model.safetensors",
|
| 48 |
+
"model.layers.10.mlp.gate_proj.weight": "model.safetensors",
|
| 49 |
+
"model.layers.10.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 50 |
+
"model.layers.10.mlp.up_proj.weight": "model.safetensors",
|
| 51 |
+
"model.layers.10.mlp.up_proj.weight_scale": "model.safetensors",
|
| 52 |
+
"model.layers.10.post_attention_layernorm.weight": "model.safetensors",
|
| 53 |
+
"model.layers.10.self_attn.k_proj.weight": "model.safetensors",
|
| 54 |
+
"model.layers.10.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 55 |
+
"model.layers.10.self_attn.o_proj.weight": "model.safetensors",
|
| 56 |
+
"model.layers.10.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 57 |
+
"model.layers.10.self_attn.q_proj.weight": "model.safetensors",
|
| 58 |
+
"model.layers.10.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 59 |
+
"model.layers.10.self_attn.v_proj.weight": "model.safetensors",
|
| 60 |
+
"model.layers.10.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 61 |
+
"model.layers.11.input_layernorm.weight": "model.safetensors",
|
| 62 |
+
"model.layers.11.mlp.down_proj.weight": "model.safetensors",
|
| 63 |
+
"model.layers.11.mlp.down_proj.weight_scale": "model.safetensors",
|
| 64 |
+
"model.layers.11.mlp.gate_proj.weight": "model.safetensors",
|
| 65 |
+
"model.layers.11.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 66 |
+
"model.layers.11.mlp.up_proj.weight": "model.safetensors",
|
| 67 |
+
"model.layers.11.mlp.up_proj.weight_scale": "model.safetensors",
|
| 68 |
+
"model.layers.11.post_attention_layernorm.weight": "model.safetensors",
|
| 69 |
+
"model.layers.11.self_attn.k_proj.weight": "model.safetensors",
|
| 70 |
+
"model.layers.11.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 71 |
+
"model.layers.11.self_attn.o_proj.weight": "model.safetensors",
|
| 72 |
+
"model.layers.11.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 73 |
+
"model.layers.11.self_attn.q_proj.weight": "model.safetensors",
|
| 74 |
+
"model.layers.11.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 75 |
+
"model.layers.11.self_attn.v_proj.weight": "model.safetensors",
|
| 76 |
+
"model.layers.11.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 77 |
+
"model.layers.12.input_layernorm.weight": "model.safetensors",
|
| 78 |
+
"model.layers.12.mlp.down_proj.weight": "model.safetensors",
|
| 79 |
+
"model.layers.12.mlp.down_proj.weight_scale": "model.safetensors",
|
| 80 |
+
"model.layers.12.mlp.gate_proj.weight": "model.safetensors",
|
| 81 |
+
"model.layers.12.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 82 |
+
"model.layers.12.mlp.up_proj.weight": "model.safetensors",
|
| 83 |
+
"model.layers.12.mlp.up_proj.weight_scale": "model.safetensors",
|
| 84 |
+
"model.layers.12.post_attention_layernorm.weight": "model.safetensors",
|
| 85 |
+
"model.layers.12.self_attn.k_proj.weight": "model.safetensors",
|
| 86 |
+
"model.layers.12.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 87 |
+
"model.layers.12.self_attn.o_proj.weight": "model.safetensors",
|
| 88 |
+
"model.layers.12.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 89 |
+
"model.layers.12.self_attn.q_proj.weight": "model.safetensors",
|
| 90 |
+
"model.layers.12.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 91 |
+
"model.layers.12.self_attn.v_proj.weight": "model.safetensors",
|
| 92 |
+
"model.layers.12.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 93 |
+
"model.layers.13.input_layernorm.weight": "model.safetensors",
|
| 94 |
+
"model.layers.13.mlp.down_proj.weight": "model.safetensors",
|
| 95 |
+
"model.layers.13.mlp.down_proj.weight_scale": "model.safetensors",
|
| 96 |
+
"model.layers.13.mlp.gate_proj.weight": "model.safetensors",
|
| 97 |
+
"model.layers.13.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 98 |
+
"model.layers.13.mlp.up_proj.weight": "model.safetensors",
|
| 99 |
+
"model.layers.13.mlp.up_proj.weight_scale": "model.safetensors",
|
| 100 |
+
"model.layers.13.post_attention_layernorm.weight": "model.safetensors",
|
| 101 |
+
"model.layers.13.self_attn.k_proj.weight": "model.safetensors",
|
| 102 |
+
"model.layers.13.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 103 |
+
"model.layers.13.self_attn.o_proj.weight": "model.safetensors",
|
| 104 |
+
"model.layers.13.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 105 |
+
"model.layers.13.self_attn.q_proj.weight": "model.safetensors",
|
| 106 |
+
"model.layers.13.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 107 |
+
"model.layers.13.self_attn.v_proj.weight": "model.safetensors",
|
| 108 |
+
"model.layers.13.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 109 |
+
"model.layers.14.input_layernorm.weight": "model.safetensors",
|
| 110 |
+
"model.layers.14.mlp.down_proj.weight": "model.safetensors",
|
| 111 |
+
"model.layers.14.mlp.down_proj.weight_scale": "model.safetensors",
|
| 112 |
+
"model.layers.14.mlp.gate_proj.weight": "model.safetensors",
|
| 113 |
+
"model.layers.14.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 114 |
+
"model.layers.14.mlp.up_proj.weight": "model.safetensors",
|
| 115 |
+
"model.layers.14.mlp.up_proj.weight_scale": "model.safetensors",
|
| 116 |
+
"model.layers.14.post_attention_layernorm.weight": "model.safetensors",
|
| 117 |
+
"model.layers.14.self_attn.k_proj.weight": "model.safetensors",
|
| 118 |
+
"model.layers.14.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 119 |
+
"model.layers.14.self_attn.o_proj.weight": "model.safetensors",
|
| 120 |
+
"model.layers.14.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 121 |
+
"model.layers.14.self_attn.q_proj.weight": "model.safetensors",
|
| 122 |
+
"model.layers.14.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 123 |
+
"model.layers.14.self_attn.v_proj.weight": "model.safetensors",
|
| 124 |
+
"model.layers.14.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 125 |
+
"model.layers.15.input_layernorm.weight": "model.safetensors",
|
| 126 |
+
"model.layers.15.mlp.down_proj.weight": "model.safetensors",
|
| 127 |
+
"model.layers.15.mlp.down_proj.weight_scale": "model.safetensors",
|
| 128 |
+
"model.layers.15.mlp.gate_proj.weight": "model.safetensors",
|
| 129 |
+
"model.layers.15.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 130 |
+
"model.layers.15.mlp.up_proj.weight": "model.safetensors",
|
| 131 |
+
"model.layers.15.mlp.up_proj.weight_scale": "model.safetensors",
|
| 132 |
+
"model.layers.15.post_attention_layernorm.weight": "model.safetensors",
|
| 133 |
+
"model.layers.15.self_attn.k_proj.weight": "model.safetensors",
|
| 134 |
+
"model.layers.15.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 135 |
+
"model.layers.15.self_attn.o_proj.weight": "model.safetensors",
|
| 136 |
+
"model.layers.15.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 137 |
+
"model.layers.15.self_attn.q_proj.weight": "model.safetensors",
|
| 138 |
+
"model.layers.15.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 139 |
+
"model.layers.15.self_attn.v_proj.weight": "model.safetensors",
|
| 140 |
+
"model.layers.15.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 141 |
+
"model.layers.16.input_layernorm.weight": "model.safetensors",
|
| 142 |
+
"model.layers.16.mlp.down_proj.weight": "model.safetensors",
|
| 143 |
+
"model.layers.16.mlp.down_proj.weight_scale": "model.safetensors",
|
| 144 |
+
"model.layers.16.mlp.gate_proj.weight": "model.safetensors",
|
| 145 |
+
"model.layers.16.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 146 |
+
"model.layers.16.mlp.up_proj.weight": "model.safetensors",
|
| 147 |
+
"model.layers.16.mlp.up_proj.weight_scale": "model.safetensors",
|
| 148 |
+
"model.layers.16.post_attention_layernorm.weight": "model.safetensors",
|
| 149 |
+
"model.layers.16.self_attn.k_proj.weight": "model.safetensors",
|
| 150 |
+
"model.layers.16.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 151 |
+
"model.layers.16.self_attn.o_proj.weight": "model.safetensors",
|
| 152 |
+
"model.layers.16.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 153 |
+
"model.layers.16.self_attn.q_proj.weight": "model.safetensors",
|
| 154 |
+
"model.layers.16.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 155 |
+
"model.layers.16.self_attn.v_proj.weight": "model.safetensors",
|
| 156 |
+
"model.layers.16.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 157 |
+
"model.layers.17.input_layernorm.weight": "model.safetensors",
|
| 158 |
+
"model.layers.17.mlp.down_proj.weight": "model.safetensors",
|
| 159 |
+
"model.layers.17.mlp.down_proj.weight_scale": "model.safetensors",
|
| 160 |
+
"model.layers.17.mlp.gate_proj.weight": "model.safetensors",
|
| 161 |
+
"model.layers.17.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 162 |
+
"model.layers.17.mlp.up_proj.weight": "model.safetensors",
|
| 163 |
+
"model.layers.17.mlp.up_proj.weight_scale": "model.safetensors",
|
| 164 |
+
"model.layers.17.post_attention_layernorm.weight": "model.safetensors",
|
| 165 |
+
"model.layers.17.self_attn.k_proj.weight": "model.safetensors",
|
| 166 |
+
"model.layers.17.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 167 |
+
"model.layers.17.self_attn.o_proj.weight": "model.safetensors",
|
| 168 |
+
"model.layers.17.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 169 |
+
"model.layers.17.self_attn.q_proj.weight": "model.safetensors",
|
| 170 |
+
"model.layers.17.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 171 |
+
"model.layers.17.self_attn.v_proj.weight": "model.safetensors",
|
| 172 |
+
"model.layers.17.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 173 |
+
"model.layers.18.input_layernorm.weight": "model.safetensors",
|
| 174 |
+
"model.layers.18.mlp.down_proj.weight": "model.safetensors",
|
| 175 |
+
"model.layers.18.mlp.down_proj.weight_scale": "model.safetensors",
|
| 176 |
+
"model.layers.18.mlp.gate_proj.weight": "model.safetensors",
|
| 177 |
+
"model.layers.18.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 178 |
+
"model.layers.18.mlp.up_proj.weight": "model.safetensors",
|
| 179 |
+
"model.layers.18.mlp.up_proj.weight_scale": "model.safetensors",
|
| 180 |
+
"model.layers.18.post_attention_layernorm.weight": "model.safetensors",
|
| 181 |
+
"model.layers.18.self_attn.k_proj.weight": "model.safetensors",
|
| 182 |
+
"model.layers.18.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 183 |
+
"model.layers.18.self_attn.o_proj.weight": "model.safetensors",
|
| 184 |
+
"model.layers.18.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 185 |
+
"model.layers.18.self_attn.q_proj.weight": "model.safetensors",
|
| 186 |
+
"model.layers.18.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 187 |
+
"model.layers.18.self_attn.v_proj.weight": "model.safetensors",
|
| 188 |
+
"model.layers.18.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 189 |
+
"model.layers.19.input_layernorm.weight": "model.safetensors",
|
| 190 |
+
"model.layers.19.mlp.down_proj.weight": "model.safetensors",
|
| 191 |
+
"model.layers.19.mlp.down_proj.weight_scale": "model.safetensors",
|
| 192 |
+
"model.layers.19.mlp.gate_proj.weight": "model.safetensors",
|
| 193 |
+
"model.layers.19.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 194 |
+
"model.layers.19.mlp.up_proj.weight": "model.safetensors",
|
| 195 |
+
"model.layers.19.mlp.up_proj.weight_scale": "model.safetensors",
|
| 196 |
+
"model.layers.19.post_attention_layernorm.weight": "model.safetensors",
|
| 197 |
+
"model.layers.19.self_attn.k_proj.weight": "model.safetensors",
|
| 198 |
+
"model.layers.19.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 199 |
+
"model.layers.19.self_attn.o_proj.weight": "model.safetensors",
|
| 200 |
+
"model.layers.19.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 201 |
+
"model.layers.19.self_attn.q_proj.weight": "model.safetensors",
|
| 202 |
+
"model.layers.19.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 203 |
+
"model.layers.19.self_attn.v_proj.weight": "model.safetensors",
|
| 204 |
+
"model.layers.19.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 205 |
+
"model.layers.2.input_layernorm.weight": "model.safetensors",
|
| 206 |
+
"model.layers.2.mlp.down_proj.weight": "model.safetensors",
|
| 207 |
+
"model.layers.2.mlp.down_proj.weight_scale": "model.safetensors",
|
| 208 |
+
"model.layers.2.mlp.gate_proj.weight": "model.safetensors",
|
| 209 |
+
"model.layers.2.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 210 |
+
"model.layers.2.mlp.up_proj.weight": "model.safetensors",
|
| 211 |
+
"model.layers.2.mlp.up_proj.weight_scale": "model.safetensors",
|
| 212 |
+
"model.layers.2.post_attention_layernorm.weight": "model.safetensors",
|
| 213 |
+
"model.layers.2.self_attn.k_proj.weight": "model.safetensors",
|
| 214 |
+
"model.layers.2.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 215 |
+
"model.layers.2.self_attn.o_proj.weight": "model.safetensors",
|
| 216 |
+
"model.layers.2.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 217 |
+
"model.layers.2.self_attn.q_proj.weight": "model.safetensors",
|
| 218 |
+
"model.layers.2.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 219 |
+
"model.layers.2.self_attn.v_proj.weight": "model.safetensors",
|
| 220 |
+
"model.layers.2.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 221 |
+
"model.layers.20.input_layernorm.weight": "model.safetensors",
|
| 222 |
+
"model.layers.20.mlp.down_proj.weight": "model.safetensors",
|
| 223 |
+
"model.layers.20.mlp.down_proj.weight_scale": "model.safetensors",
|
| 224 |
+
"model.layers.20.mlp.gate_proj.weight": "model.safetensors",
|
| 225 |
+
"model.layers.20.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 226 |
+
"model.layers.20.mlp.up_proj.weight": "model.safetensors",
|
| 227 |
+
"model.layers.20.mlp.up_proj.weight_scale": "model.safetensors",
|
| 228 |
+
"model.layers.20.post_attention_layernorm.weight": "model.safetensors",
|
| 229 |
+
"model.layers.20.self_attn.k_proj.weight": "model.safetensors",
|
| 230 |
+
"model.layers.20.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 231 |
+
"model.layers.20.self_attn.o_proj.weight": "model.safetensors",
|
| 232 |
+
"model.layers.20.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 233 |
+
"model.layers.20.self_attn.q_proj.weight": "model.safetensors",
|
| 234 |
+
"model.layers.20.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 235 |
+
"model.layers.20.self_attn.v_proj.weight": "model.safetensors",
|
| 236 |
+
"model.layers.20.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 237 |
+
"model.layers.21.input_layernorm.weight": "model.safetensors",
|
| 238 |
+
"model.layers.21.mlp.down_proj.weight": "model.safetensors",
|
| 239 |
+
"model.layers.21.mlp.down_proj.weight_scale": "model.safetensors",
|
| 240 |
+
"model.layers.21.mlp.gate_proj.weight": "model.safetensors",
|
| 241 |
+
"model.layers.21.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 242 |
+
"model.layers.21.mlp.up_proj.weight": "model.safetensors",
|
| 243 |
+
"model.layers.21.mlp.up_proj.weight_scale": "model.safetensors",
|
| 244 |
+
"model.layers.21.post_attention_layernorm.weight": "model.safetensors",
|
| 245 |
+
"model.layers.21.self_attn.k_proj.weight": "model.safetensors",
|
| 246 |
+
"model.layers.21.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 247 |
+
"model.layers.21.self_attn.o_proj.weight": "model.safetensors",
|
| 248 |
+
"model.layers.21.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 249 |
+
"model.layers.21.self_attn.q_proj.weight": "model.safetensors",
|
| 250 |
+
"model.layers.21.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 251 |
+
"model.layers.21.self_attn.v_proj.weight": "model.safetensors",
|
| 252 |
+
"model.layers.21.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 253 |
+
"model.layers.22.input_layernorm.weight": "model.safetensors",
|
| 254 |
+
"model.layers.22.mlp.down_proj.weight": "model.safetensors",
|
| 255 |
+
"model.layers.22.mlp.down_proj.weight_scale": "model.safetensors",
|
| 256 |
+
"model.layers.22.mlp.gate_proj.weight": "model.safetensors",
|
| 257 |
+
"model.layers.22.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 258 |
+
"model.layers.22.mlp.up_proj.weight": "model.safetensors",
|
| 259 |
+
"model.layers.22.mlp.up_proj.weight_scale": "model.safetensors",
|
| 260 |
+
"model.layers.22.post_attention_layernorm.weight": "model.safetensors",
|
| 261 |
+
"model.layers.22.self_attn.k_proj.weight": "model.safetensors",
|
| 262 |
+
"model.layers.22.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 263 |
+
"model.layers.22.self_attn.o_proj.weight": "model.safetensors",
|
| 264 |
+
"model.layers.22.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 265 |
+
"model.layers.22.self_attn.q_proj.weight": "model.safetensors",
|
| 266 |
+
"model.layers.22.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 267 |
+
"model.layers.22.self_attn.v_proj.weight": "model.safetensors",
|
| 268 |
+
"model.layers.22.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 269 |
+
"model.layers.23.input_layernorm.weight": "model.safetensors",
|
| 270 |
+
"model.layers.23.mlp.down_proj.weight": "model.safetensors",
|
| 271 |
+
"model.layers.23.mlp.down_proj.weight_scale": "model.safetensors",
|
| 272 |
+
"model.layers.23.mlp.gate_proj.weight": "model.safetensors",
|
| 273 |
+
"model.layers.23.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 274 |
+
"model.layers.23.mlp.up_proj.weight": "model.safetensors",
|
| 275 |
+
"model.layers.23.mlp.up_proj.weight_scale": "model.safetensors",
|
| 276 |
+
"model.layers.23.post_attention_layernorm.weight": "model.safetensors",
|
| 277 |
+
"model.layers.23.self_attn.k_proj.weight": "model.safetensors",
|
| 278 |
+
"model.layers.23.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 279 |
+
"model.layers.23.self_attn.o_proj.weight": "model.safetensors",
|
| 280 |
+
"model.layers.23.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 281 |
+
"model.layers.23.self_attn.q_proj.weight": "model.safetensors",
|
| 282 |
+
"model.layers.23.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 283 |
+
"model.layers.23.self_attn.v_proj.weight": "model.safetensors",
|
| 284 |
+
"model.layers.23.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 285 |
+
"model.layers.24.input_layernorm.weight": "model.safetensors",
|
| 286 |
+
"model.layers.24.mlp.down_proj.weight": "model.safetensors",
|
| 287 |
+
"model.layers.24.mlp.down_proj.weight_scale": "model.safetensors",
|
| 288 |
+
"model.layers.24.mlp.gate_proj.weight": "model.safetensors",
|
| 289 |
+
"model.layers.24.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 290 |
+
"model.layers.24.mlp.up_proj.weight": "model.safetensors",
|
| 291 |
+
"model.layers.24.mlp.up_proj.weight_scale": "model.safetensors",
|
| 292 |
+
"model.layers.24.post_attention_layernorm.weight": "model.safetensors",
|
| 293 |
+
"model.layers.24.self_attn.k_proj.weight": "model.safetensors",
|
| 294 |
+
"model.layers.24.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 295 |
+
"model.layers.24.self_attn.o_proj.weight": "model.safetensors",
|
| 296 |
+
"model.layers.24.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 297 |
+
"model.layers.24.self_attn.q_proj.weight": "model.safetensors",
|
| 298 |
+
"model.layers.24.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 299 |
+
"model.layers.24.self_attn.v_proj.weight": "model.safetensors",
|
| 300 |
+
"model.layers.24.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 301 |
+
"model.layers.25.input_layernorm.weight": "model.safetensors",
|
| 302 |
+
"model.layers.25.mlp.down_proj.weight": "model.safetensors",
|
| 303 |
+
"model.layers.25.mlp.down_proj.weight_scale": "model.safetensors",
|
| 304 |
+
"model.layers.25.mlp.gate_proj.weight": "model.safetensors",
|
| 305 |
+
"model.layers.25.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 306 |
+
"model.layers.25.mlp.up_proj.weight": "model.safetensors",
|
| 307 |
+
"model.layers.25.mlp.up_proj.weight_scale": "model.safetensors",
|
| 308 |
+
"model.layers.25.post_attention_layernorm.weight": "model.safetensors",
|
| 309 |
+
"model.layers.25.self_attn.k_proj.weight": "model.safetensors",
|
| 310 |
+
"model.layers.25.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 311 |
+
"model.layers.25.self_attn.o_proj.weight": "model.safetensors",
|
| 312 |
+
"model.layers.25.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 313 |
+
"model.layers.25.self_attn.q_proj.weight": "model.safetensors",
|
| 314 |
+
"model.layers.25.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 315 |
+
"model.layers.25.self_attn.v_proj.weight": "model.safetensors",
|
| 316 |
+
"model.layers.25.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 317 |
+
"model.layers.26.input_layernorm.weight": "model.safetensors",
|
| 318 |
+
"model.layers.26.mlp.down_proj.weight": "model.safetensors",
|
| 319 |
+
"model.layers.26.mlp.down_proj.weight_scale": "model.safetensors",
|
| 320 |
+
"model.layers.26.mlp.gate_proj.weight": "model.safetensors",
|
| 321 |
+
"model.layers.26.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 322 |
+
"model.layers.26.mlp.up_proj.weight": "model.safetensors",
|
| 323 |
+
"model.layers.26.mlp.up_proj.weight_scale": "model.safetensors",
|
| 324 |
+
"model.layers.26.post_attention_layernorm.weight": "model.safetensors",
|
| 325 |
+
"model.layers.26.self_attn.k_proj.weight": "model.safetensors",
|
| 326 |
+
"model.layers.26.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 327 |
+
"model.layers.26.self_attn.o_proj.weight": "model.safetensors",
|
| 328 |
+
"model.layers.26.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 329 |
+
"model.layers.26.self_attn.q_proj.weight": "model.safetensors",
|
| 330 |
+
"model.layers.26.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 331 |
+
"model.layers.26.self_attn.v_proj.weight": "model.safetensors",
|
| 332 |
+
"model.layers.26.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 333 |
+
"model.layers.27.input_layernorm.weight": "model.safetensors",
|
| 334 |
+
"model.layers.27.mlp.down_proj.weight": "model.safetensors",
|
| 335 |
+
"model.layers.27.mlp.down_proj.weight_scale": "model.safetensors",
|
| 336 |
+
"model.layers.27.mlp.gate_proj.weight": "model.safetensors",
|
| 337 |
+
"model.layers.27.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 338 |
+
"model.layers.27.mlp.up_proj.weight": "model.safetensors",
|
| 339 |
+
"model.layers.27.mlp.up_proj.weight_scale": "model.safetensors",
|
| 340 |
+
"model.layers.27.post_attention_layernorm.weight": "model.safetensors",
|
| 341 |
+
"model.layers.27.self_attn.k_proj.weight": "model.safetensors",
|
| 342 |
+
"model.layers.27.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 343 |
+
"model.layers.27.self_attn.o_proj.weight": "model.safetensors",
|
| 344 |
+
"model.layers.27.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 345 |
+
"model.layers.27.self_attn.q_proj.weight": "model.safetensors",
|
| 346 |
+
"model.layers.27.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 347 |
+
"model.layers.27.self_attn.v_proj.weight": "model.safetensors",
|
| 348 |
+
"model.layers.27.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 349 |
+
"model.layers.28.input_layernorm.weight": "model.safetensors",
|
| 350 |
+
"model.layers.28.mlp.down_proj.weight": "model.safetensors",
|
| 351 |
+
"model.layers.28.mlp.down_proj.weight_scale": "model.safetensors",
|
| 352 |
+
"model.layers.28.mlp.gate_proj.weight": "model.safetensors",
|
| 353 |
+
"model.layers.28.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 354 |
+
"model.layers.28.mlp.up_proj.weight": "model.safetensors",
|
| 355 |
+
"model.layers.28.mlp.up_proj.weight_scale": "model.safetensors",
|
| 356 |
+
"model.layers.28.post_attention_layernorm.weight": "model.safetensors",
|
| 357 |
+
"model.layers.28.self_attn.k_proj.weight": "model.safetensors",
|
| 358 |
+
"model.layers.28.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 359 |
+
"model.layers.28.self_attn.o_proj.weight": "model.safetensors",
|
| 360 |
+
"model.layers.28.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 361 |
+
"model.layers.28.self_attn.q_proj.weight": "model.safetensors",
|
| 362 |
+
"model.layers.28.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 363 |
+
"model.layers.28.self_attn.v_proj.weight": "model.safetensors",
|
| 364 |
+
"model.layers.28.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 365 |
+
"model.layers.29.input_layernorm.weight": "model.safetensors",
|
| 366 |
+
"model.layers.29.mlp.down_proj.weight": "model.safetensors",
|
| 367 |
+
"model.layers.29.mlp.down_proj.weight_scale": "model.safetensors",
|
| 368 |
+
"model.layers.29.mlp.gate_proj.weight": "model.safetensors",
|
| 369 |
+
"model.layers.29.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 370 |
+
"model.layers.29.mlp.up_proj.weight": "model.safetensors",
|
| 371 |
+
"model.layers.29.mlp.up_proj.weight_scale": "model.safetensors",
|
| 372 |
+
"model.layers.29.post_attention_layernorm.weight": "model.safetensors",
|
| 373 |
+
"model.layers.29.self_attn.k_proj.weight": "model.safetensors",
|
| 374 |
+
"model.layers.29.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 375 |
+
"model.layers.29.self_attn.o_proj.weight": "model.safetensors",
|
| 376 |
+
"model.layers.29.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 377 |
+
"model.layers.29.self_attn.q_proj.weight": "model.safetensors",
|
| 378 |
+
"model.layers.29.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 379 |
+
"model.layers.29.self_attn.v_proj.weight": "model.safetensors",
|
| 380 |
+
"model.layers.29.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 381 |
+
"model.layers.3.input_layernorm.weight": "model.safetensors",
|
| 382 |
+
"model.layers.3.mlp.down_proj.weight": "model.safetensors",
|
| 383 |
+
"model.layers.3.mlp.down_proj.weight_scale": "model.safetensors",
|
| 384 |
+
"model.layers.3.mlp.gate_proj.weight": "model.safetensors",
|
| 385 |
+
"model.layers.3.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 386 |
+
"model.layers.3.mlp.up_proj.weight": "model.safetensors",
|
| 387 |
+
"model.layers.3.mlp.up_proj.weight_scale": "model.safetensors",
|
| 388 |
+
"model.layers.3.post_attention_layernorm.weight": "model.safetensors",
|
| 389 |
+
"model.layers.3.self_attn.k_proj.weight": "model.safetensors",
|
| 390 |
+
"model.layers.3.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 391 |
+
"model.layers.3.self_attn.o_proj.weight": "model.safetensors",
|
| 392 |
+
"model.layers.3.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 393 |
+
"model.layers.3.self_attn.q_proj.weight": "model.safetensors",
|
| 394 |
+
"model.layers.3.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 395 |
+
"model.layers.3.self_attn.v_proj.weight": "model.safetensors",
|
| 396 |
+
"model.layers.3.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 397 |
+
"model.layers.30.input_layernorm.weight": "model.safetensors",
|
| 398 |
+
"model.layers.30.mlp.down_proj.weight": "model.safetensors",
|
| 399 |
+
"model.layers.30.mlp.down_proj.weight_scale": "model.safetensors",
|
| 400 |
+
"model.layers.30.mlp.gate_proj.weight": "model.safetensors",
|
| 401 |
+
"model.layers.30.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 402 |
+
"model.layers.30.mlp.up_proj.weight": "model.safetensors",
|
| 403 |
+
"model.layers.30.mlp.up_proj.weight_scale": "model.safetensors",
|
| 404 |
+
"model.layers.30.post_attention_layernorm.weight": "model.safetensors",
|
| 405 |
+
"model.layers.30.self_attn.k_proj.weight": "model.safetensors",
|
| 406 |
+
"model.layers.30.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 407 |
+
"model.layers.30.self_attn.o_proj.weight": "model.safetensors",
|
| 408 |
+
"model.layers.30.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 409 |
+
"model.layers.30.self_attn.q_proj.weight": "model.safetensors",
|
| 410 |
+
"model.layers.30.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 411 |
+
"model.layers.30.self_attn.v_proj.weight": "model.safetensors",
|
| 412 |
+
"model.layers.30.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 413 |
+
"model.layers.31.input_layernorm.weight": "model.safetensors",
|
| 414 |
+
"model.layers.31.mlp.down_proj.weight": "model.safetensors",
|
| 415 |
+
"model.layers.31.mlp.down_proj.weight_scale": "model.safetensors",
|
| 416 |
+
"model.layers.31.mlp.gate_proj.weight": "model.safetensors",
|
| 417 |
+
"model.layers.31.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 418 |
+
"model.layers.31.mlp.up_proj.weight": "model.safetensors",
|
| 419 |
+
"model.layers.31.mlp.up_proj.weight_scale": "model.safetensors",
|
| 420 |
+
"model.layers.31.post_attention_layernorm.weight": "model.safetensors",
|
| 421 |
+
"model.layers.31.self_attn.k_proj.weight": "model.safetensors",
|
| 422 |
+
"model.layers.31.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 423 |
+
"model.layers.31.self_attn.o_proj.weight": "model.safetensors",
|
| 424 |
+
"model.layers.31.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 425 |
+
"model.layers.31.self_attn.q_proj.weight": "model.safetensors",
|
| 426 |
+
"model.layers.31.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 427 |
+
"model.layers.31.self_attn.v_proj.weight": "model.safetensors",
|
| 428 |
+
"model.layers.31.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 429 |
+
"model.layers.4.input_layernorm.weight": "model.safetensors",
|
| 430 |
+
"model.layers.4.mlp.down_proj.weight": "model.safetensors",
|
| 431 |
+
"model.layers.4.mlp.down_proj.weight_scale": "model.safetensors",
|
| 432 |
+
"model.layers.4.mlp.gate_proj.weight": "model.safetensors",
|
| 433 |
+
"model.layers.4.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 434 |
+
"model.layers.4.mlp.up_proj.weight": "model.safetensors",
|
| 435 |
+
"model.layers.4.mlp.up_proj.weight_scale": "model.safetensors",
|
| 436 |
+
"model.layers.4.post_attention_layernorm.weight": "model.safetensors",
|
| 437 |
+
"model.layers.4.self_attn.k_proj.weight": "model.safetensors",
|
| 438 |
+
"model.layers.4.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 439 |
+
"model.layers.4.self_attn.o_proj.weight": "model.safetensors",
|
| 440 |
+
"model.layers.4.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 441 |
+
"model.layers.4.self_attn.q_proj.weight": "model.safetensors",
|
| 442 |
+
"model.layers.4.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 443 |
+
"model.layers.4.self_attn.v_proj.weight": "model.safetensors",
|
| 444 |
+
"model.layers.4.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 445 |
+
"model.layers.5.input_layernorm.weight": "model.safetensors",
|
| 446 |
+
"model.layers.5.mlp.down_proj.weight": "model.safetensors",
|
| 447 |
+
"model.layers.5.mlp.down_proj.weight_scale": "model.safetensors",
|
| 448 |
+
"model.layers.5.mlp.gate_proj.weight": "model.safetensors",
|
| 449 |
+
"model.layers.5.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 450 |
+
"model.layers.5.mlp.up_proj.weight": "model.safetensors",
|
| 451 |
+
"model.layers.5.mlp.up_proj.weight_scale": "model.safetensors",
|
| 452 |
+
"model.layers.5.post_attention_layernorm.weight": "model.safetensors",
|
| 453 |
+
"model.layers.5.self_attn.k_proj.weight": "model.safetensors",
|
| 454 |
+
"model.layers.5.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 455 |
+
"model.layers.5.self_attn.o_proj.weight": "model.safetensors",
|
| 456 |
+
"model.layers.5.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 457 |
+
"model.layers.5.self_attn.q_proj.weight": "model.safetensors",
|
| 458 |
+
"model.layers.5.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 459 |
+
"model.layers.5.self_attn.v_proj.weight": "model.safetensors",
|
| 460 |
+
"model.layers.5.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 461 |
+
"model.layers.6.input_layernorm.weight": "model.safetensors",
|
| 462 |
+
"model.layers.6.mlp.down_proj.weight": "model.safetensors",
|
| 463 |
+
"model.layers.6.mlp.down_proj.weight_scale": "model.safetensors",
|
| 464 |
+
"model.layers.6.mlp.gate_proj.weight": "model.safetensors",
|
| 465 |
+
"model.layers.6.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 466 |
+
"model.layers.6.mlp.up_proj.weight": "model.safetensors",
|
| 467 |
+
"model.layers.6.mlp.up_proj.weight_scale": "model.safetensors",
|
| 468 |
+
"model.layers.6.post_attention_layernorm.weight": "model.safetensors",
|
| 469 |
+
"model.layers.6.self_attn.k_proj.weight": "model.safetensors",
|
| 470 |
+
"model.layers.6.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 471 |
+
"model.layers.6.self_attn.o_proj.weight": "model.safetensors",
|
| 472 |
+
"model.layers.6.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 473 |
+
"model.layers.6.self_attn.q_proj.weight": "model.safetensors",
|
| 474 |
+
"model.layers.6.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 475 |
+
"model.layers.6.self_attn.v_proj.weight": "model.safetensors",
|
| 476 |
+
"model.layers.6.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 477 |
+
"model.layers.7.input_layernorm.weight": "model.safetensors",
|
| 478 |
+
"model.layers.7.mlp.down_proj.weight": "model.safetensors",
|
| 479 |
+
"model.layers.7.mlp.down_proj.weight_scale": "model.safetensors",
|
| 480 |
+
"model.layers.7.mlp.gate_proj.weight": "model.safetensors",
|
| 481 |
+
"model.layers.7.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 482 |
+
"model.layers.7.mlp.up_proj.weight": "model.safetensors",
|
| 483 |
+
"model.layers.7.mlp.up_proj.weight_scale": "model.safetensors",
|
| 484 |
+
"model.layers.7.post_attention_layernorm.weight": "model.safetensors",
|
| 485 |
+
"model.layers.7.self_attn.k_proj.weight": "model.safetensors",
|
| 486 |
+
"model.layers.7.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 487 |
+
"model.layers.7.self_attn.o_proj.weight": "model.safetensors",
|
| 488 |
+
"model.layers.7.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 489 |
+
"model.layers.7.self_attn.q_proj.weight": "model.safetensors",
|
| 490 |
+
"model.layers.7.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 491 |
+
"model.layers.7.self_attn.v_proj.weight": "model.safetensors",
|
| 492 |
+
"model.layers.7.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 493 |
+
"model.layers.8.input_layernorm.weight": "model.safetensors",
|
| 494 |
+
"model.layers.8.mlp.down_proj.weight": "model.safetensors",
|
| 495 |
+
"model.layers.8.mlp.down_proj.weight_scale": "model.safetensors",
|
| 496 |
+
"model.layers.8.mlp.gate_proj.weight": "model.safetensors",
|
| 497 |
+
"model.layers.8.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 498 |
+
"model.layers.8.mlp.up_proj.weight": "model.safetensors",
|
| 499 |
+
"model.layers.8.mlp.up_proj.weight_scale": "model.safetensors",
|
| 500 |
+
"model.layers.8.post_attention_layernorm.weight": "model.safetensors",
|
| 501 |
+
"model.layers.8.self_attn.k_proj.weight": "model.safetensors",
|
| 502 |
+
"model.layers.8.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 503 |
+
"model.layers.8.self_attn.o_proj.weight": "model.safetensors",
|
| 504 |
+
"model.layers.8.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 505 |
+
"model.layers.8.self_attn.q_proj.weight": "model.safetensors",
|
| 506 |
+
"model.layers.8.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 507 |
+
"model.layers.8.self_attn.v_proj.weight": "model.safetensors",
|
| 508 |
+
"model.layers.8.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 509 |
+
"model.layers.9.input_layernorm.weight": "model.safetensors",
|
| 510 |
+
"model.layers.9.mlp.down_proj.weight": "model.safetensors",
|
| 511 |
+
"model.layers.9.mlp.down_proj.weight_scale": "model.safetensors",
|
| 512 |
+
"model.layers.9.mlp.gate_proj.weight": "model.safetensors",
|
| 513 |
+
"model.layers.9.mlp.gate_proj.weight_scale": "model.safetensors",
|
| 514 |
+
"model.layers.9.mlp.up_proj.weight": "model.safetensors",
|
| 515 |
+
"model.layers.9.mlp.up_proj.weight_scale": "model.safetensors",
|
| 516 |
+
"model.layers.9.post_attention_layernorm.weight": "model.safetensors",
|
| 517 |
+
"model.layers.9.self_attn.k_proj.weight": "model.safetensors",
|
| 518 |
+
"model.layers.9.self_attn.k_proj.weight_scale": "model.safetensors",
|
| 519 |
+
"model.layers.9.self_attn.o_proj.weight": "model.safetensors",
|
| 520 |
+
"model.layers.9.self_attn.o_proj.weight_scale": "model.safetensors",
|
| 521 |
+
"model.layers.9.self_attn.q_proj.weight": "model.safetensors",
|
| 522 |
+
"model.layers.9.self_attn.q_proj.weight_scale": "model.safetensors",
|
| 523 |
+
"model.layers.9.self_attn.v_proj.weight": "model.safetensors",
|
| 524 |
+
"model.layers.9.self_attn.v_proj.weight_scale": "model.safetensors",
|
| 525 |
+
"model.norm.weight": "model.safetensors"
|
| 526 |
+
}
|
| 527 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,340 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|pad|>",
|
| 4 |
+
">>ABSTRACT<<",
|
| 5 |
+
">>INTRODUCTION<<",
|
| 6 |
+
">>SUMMARY<<",
|
| 7 |
+
">>COMMENT<<",
|
| 8 |
+
">>ANSWER<<",
|
| 9 |
+
">>QUESTION<<",
|
| 10 |
+
">>DOMAIN<<",
|
| 11 |
+
">>PREFIX<<",
|
| 12 |
+
">>SUFFIX<<",
|
| 13 |
+
">>MIDDLE<<",
|
| 14 |
+
"<|finetune_right_pad_id|>",
|
| 15 |
+
"<|start_header_id|>",
|
| 16 |
+
"<|end_header_id|>",
|
| 17 |
+
"<|eom_id|>",
|
| 18 |
+
"<|eot_id|>",
|
| 19 |
+
"<|begin_of_text|>",
|
| 20 |
+
">>TITLE<<",
|
| 21 |
+
"<tool_response>",
|
| 22 |
+
"</tool_response>",
|
| 23 |
+
"<tool_call>",
|
| 24 |
+
"</tool_call>",
|
| 25 |
+
"<schema>",
|
| 26 |
+
"</schema>",
|
| 27 |
+
"<scratch_pad>",
|
| 28 |
+
"</scratch_pad>",
|
| 29 |
+
"<thinking>",
|
| 30 |
+
"</thinking>",
|
| 31 |
+
"<explanation>",
|
| 32 |
+
"</explanation>",
|
| 33 |
+
"<file_sep>",
|
| 34 |
+
"<repo_name>",
|
| 35 |
+
">>UNUSED_119<<",
|
| 36 |
+
">>UNUSED_120<<",
|
| 37 |
+
">>UNUSED_217<<",
|
| 38 |
+
">>UNUSED_218<<",
|
| 39 |
+
">>UNUSED_219<<",
|
| 40 |
+
">>UNUSED_220<<",
|
| 41 |
+
">>UNUSED_221<<",
|
| 42 |
+
">>UNUSED_222<<",
|
| 43 |
+
">>UNUSED_223<<",
|
| 44 |
+
">>UNUSED_224<<",
|
| 45 |
+
">>UNUSED_225<<",
|
| 46 |
+
">>UNUSED_226<<",
|
| 47 |
+
">>UNUSED_227<<",
|
| 48 |
+
">>UNUSED_228<<",
|
| 49 |
+
">>UNUSED_229<<",
|
| 50 |
+
">>UNUSED_230<<",
|
| 51 |
+
">>UNUSED_231<<",
|
| 52 |
+
">>UNUSED_232<<",
|
| 53 |
+
">>UNUSED_233<<",
|
| 54 |
+
">>UNUSED_234<<",
|
| 55 |
+
">>UNUSED_235<<",
|
| 56 |
+
">>UNUSED_236<<",
|
| 57 |
+
">>UNUSED_237<<",
|
| 58 |
+
">>UNUSED_238<<",
|
| 59 |
+
">>UNUSED_239<<",
|
| 60 |
+
">>UNUSED_240<<",
|
| 61 |
+
">>UNUSED_241<<",
|
| 62 |
+
">>UNUSED_242<<",
|
| 63 |
+
">>UNUSED_243<<",
|
| 64 |
+
">>UNUSED_244<<",
|
| 65 |
+
">>UNUSED_245<<",
|
| 66 |
+
">>UNUSED_246<<",
|
| 67 |
+
">>UNUSED_247<<",
|
| 68 |
+
">>UNUSED_248<<",
|
| 69 |
+
">>UNUSED_249<<",
|
| 70 |
+
">>UNUSED_250<<",
|
| 71 |
+
">>UNUSED_251<<",
|
| 72 |
+
">>UNUSED_252<<",
|
| 73 |
+
">>UNUSED_253<<",
|
| 74 |
+
">>UNUSED_254<<",
|
| 75 |
+
">>UNUSED_255<<",
|
| 76 |
+
">>UNUSED_256<<",
|
| 77 |
+
">>UNUSED_257<<",
|
| 78 |
+
">>UNUSED_258<<",
|
| 79 |
+
">>UNUSED_259<<",
|
| 80 |
+
">>UNUSED_260<<",
|
| 81 |
+
">>UNUSED_261<<",
|
| 82 |
+
">>UNUSED_262<<",
|
| 83 |
+
">>UNUSED_263<<",
|
| 84 |
+
">>UNUSED_264<<",
|
| 85 |
+
">>UNUSED_265<<",
|
| 86 |
+
">>UNUSED_266<<",
|
| 87 |
+
">>UNUSED_267<<",
|
| 88 |
+
">>UNUSED_268<<",
|
| 89 |
+
">>UNUSED_269<<",
|
| 90 |
+
">>UNUSED_270<<",
|
| 91 |
+
">>UNUSED_271<<",
|
| 92 |
+
">>UNUSED_272<<",
|
| 93 |
+
">>UNUSED_273<<",
|
| 94 |
+
">>UNUSED_274<<",
|
| 95 |
+
">>UNUSED_275<<",
|
| 96 |
+
">>UNUSED_276<<",
|
| 97 |
+
">>UNUSED_277<<",
|
| 98 |
+
">>UNUSED_278<<",
|
| 99 |
+
">>UNUSED_279<<",
|
| 100 |
+
">>UNUSED_280<<",
|
| 101 |
+
">>UNUSED_281<<",
|
| 102 |
+
">>UNUSED_282<<",
|
| 103 |
+
">>UNUSED_283<<",
|
| 104 |
+
">>UNUSED_284<<",
|
| 105 |
+
">>UNUSED_285<<",
|
| 106 |
+
">>UNUSED_286<<",
|
| 107 |
+
">>UNUSED_287<<",
|
| 108 |
+
">>UNUSED_288<<",
|
| 109 |
+
">>UNUSED_289<<",
|
| 110 |
+
">>UNUSED_290<<",
|
| 111 |
+
">>UNUSED_291<<",
|
| 112 |
+
">>UNUSED_292<<",
|
| 113 |
+
">>UNUSED_293<<",
|
| 114 |
+
">>UNUSED_294<<",
|
| 115 |
+
">>UNUSED_295<<",
|
| 116 |
+
">>UNUSED_296<<",
|
| 117 |
+
">>UNUSED_297<<",
|
| 118 |
+
">>UNUSED_298<<",
|
| 119 |
+
">>UNUSED_299<<",
|
| 120 |
+
">>UNUSED_300<<",
|
| 121 |
+
">>UNUSED_301<<",
|
| 122 |
+
">>UNUSED_302<<",
|
| 123 |
+
">>UNUSED_303<<",
|
| 124 |
+
">>UNUSED_304<<",
|
| 125 |
+
">>UNUSED_305<<",
|
| 126 |
+
">>UNUSED_306<<",
|
| 127 |
+
">>UNUSED_307<<",
|
| 128 |
+
">>UNUSED_308<<",
|
| 129 |
+
">>UNUSED_309<<",
|
| 130 |
+
">>UNUSED_310<<",
|
| 131 |
+
">>UNUSED_311<<",
|
| 132 |
+
">>UNUSED_312<<",
|
| 133 |
+
">>UNUSED_313<<",
|
| 134 |
+
">>UNUSED_314<<",
|
| 135 |
+
">>UNUSED_315<<",
|
| 136 |
+
">>UNUSED_316<<",
|
| 137 |
+
">>UNUSED_317<<",
|
| 138 |
+
">>UNUSED_318<<",
|
| 139 |
+
">>UNUSED_319<<",
|
| 140 |
+
">>UNUSED_320<<",
|
| 141 |
+
">>UNUSED_321<<",
|
| 142 |
+
">>UNUSED_322<<",
|
| 143 |
+
">>UNUSED_323<<",
|
| 144 |
+
">>UNUSED_324<<",
|
| 145 |
+
">>UNUSED_325<<",
|
| 146 |
+
">>UNUSED_326<<",
|
| 147 |
+
">>UNUSED_327<<",
|
| 148 |
+
">>UNUSED_328<<",
|
| 149 |
+
">>UNUSED_329<<",
|
| 150 |
+
">>UNUSED_330<<",
|
| 151 |
+
">>UNUSED_331<<",
|
| 152 |
+
">>UNUSED_332<<",
|
| 153 |
+
">>UNUSED_333<<",
|
| 154 |
+
">>UNUSED_334<<",
|
| 155 |
+
">>UNUSED_335<<",
|
| 156 |
+
">>UNUSED_336<<",
|
| 157 |
+
">>UNUSED_337<<",
|
| 158 |
+
">>UNUSED_338<<",
|
| 159 |
+
">>UNUSED_339<<",
|
| 160 |
+
">>UNUSED_340<<",
|
| 161 |
+
">>UNUSED_341<<",
|
| 162 |
+
">>UNUSED_342<<",
|
| 163 |
+
">>UNUSED_343<<",
|
| 164 |
+
">>UNUSED_344<<",
|
| 165 |
+
">>UNUSED_345<<",
|
| 166 |
+
">>UNUSED_346<<",
|
| 167 |
+
">>UNUSED_347<<",
|
| 168 |
+
">>UNUSED_348<<",
|
| 169 |
+
">>UNUSED_349<<",
|
| 170 |
+
">>UNUSED_350<<",
|
| 171 |
+
">>UNUSED_351<<",
|
| 172 |
+
">>UNUSED_352<<",
|
| 173 |
+
">>UNUSED_353<<",
|
| 174 |
+
">>UNUSED_354<<",
|
| 175 |
+
">>UNUSED_355<<",
|
| 176 |
+
">>UNUSED_356<<",
|
| 177 |
+
">>UNUSED_357<<",
|
| 178 |
+
">>UNUSED_358<<",
|
| 179 |
+
">>UNUSED_359<<",
|
| 180 |
+
">>UNUSED_360<<",
|
| 181 |
+
">>UNUSED_361<<",
|
| 182 |
+
">>UNUSED_362<<",
|
| 183 |
+
">>UNUSED_363<<",
|
| 184 |
+
">>UNUSED_364<<",
|
| 185 |
+
">>UNUSED_365<<",
|
| 186 |
+
">>UNUSED_366<<",
|
| 187 |
+
">>UNUSED_367<<",
|
| 188 |
+
">>UNUSED_368<<",
|
| 189 |
+
">>UNUSED_369<<",
|
| 190 |
+
">>UNUSED_370<<",
|
| 191 |
+
">>UNUSED_371<<",
|
| 192 |
+
">>UNUSED_372<<",
|
| 193 |
+
">>UNUSED_373<<",
|
| 194 |
+
">>UNUSED_374<<",
|
| 195 |
+
">>UNUSED_375<<",
|
| 196 |
+
">>UNUSED_376<<",
|
| 197 |
+
">>UNUSED_377<<",
|
| 198 |
+
">>UNUSED_378<<",
|
| 199 |
+
">>UNUSED_379<<",
|
| 200 |
+
">>UNUSED_380<<",
|
| 201 |
+
">>UNUSED_381<<",
|
| 202 |
+
">>UNUSED_382<<",
|
| 203 |
+
">>UNUSED_383<<",
|
| 204 |
+
">>UNUSED_384<<",
|
| 205 |
+
">>UNUSED_385<<",
|
| 206 |
+
">>UNUSED_386<<",
|
| 207 |
+
">>UNUSED_387<<",
|
| 208 |
+
">>UNUSED_388<<",
|
| 209 |
+
">>UNUSED_389<<",
|
| 210 |
+
">>UNUSED_390<<",
|
| 211 |
+
">>UNUSED_391<<",
|
| 212 |
+
">>UNUSED_392<<",
|
| 213 |
+
">>UNUSED_393<<",
|
| 214 |
+
">>UNUSED_394<<",
|
| 215 |
+
">>UNUSED_395<<",
|
| 216 |
+
">>UNUSED_396<<",
|
| 217 |
+
">>UNUSED_397<<",
|
| 218 |
+
">>UNUSED_398<<",
|
| 219 |
+
">>UNUSED_399<<",
|
| 220 |
+
">>UNUSED_400<<",
|
| 221 |
+
">>UNUSED_401<<",
|
| 222 |
+
">>UNUSED_402<<",
|
| 223 |
+
">>UNUSED_403<<",
|
| 224 |
+
">>UNUSED_404<<",
|
| 225 |
+
">>UNUSED_405<<",
|
| 226 |
+
">>UNUSED_406<<",
|
| 227 |
+
">>UNUSED_407<<",
|
| 228 |
+
">>UNUSED_408<<",
|
| 229 |
+
">>UNUSED_409<<",
|
| 230 |
+
">>UNUSED_410<<",
|
| 231 |
+
">>UNUSED_411<<",
|
| 232 |
+
">>UNUSED_412<<",
|
| 233 |
+
">>UNUSED_413<<",
|
| 234 |
+
">>UNUSED_414<<",
|
| 235 |
+
">>UNUSED_415<<",
|
| 236 |
+
">>UNUSED_416<<",
|
| 237 |
+
">>UNUSED_417<<",
|
| 238 |
+
">>UNUSED_418<<",
|
| 239 |
+
">>UNUSED_419<<",
|
| 240 |
+
">>UNUSED_420<<",
|
| 241 |
+
">>UNUSED_421<<",
|
| 242 |
+
">>UNUSED_422<<",
|
| 243 |
+
">>UNUSED_423<<",
|
| 244 |
+
">>UNUSED_424<<",
|
| 245 |
+
">>UNUSED_425<<",
|
| 246 |
+
">>UNUSED_426<<",
|
| 247 |
+
">>UNUSED_427<<",
|
| 248 |
+
">>UNUSED_428<<",
|
| 249 |
+
">>UNUSED_429<<",
|
| 250 |
+
">>UNUSED_430<<",
|
| 251 |
+
">>UNUSED_431<<",
|
| 252 |
+
">>UNUSED_432<<",
|
| 253 |
+
">>UNUSED_433<<",
|
| 254 |
+
">>UNUSED_434<<",
|
| 255 |
+
">>UNUSED_435<<",
|
| 256 |
+
">>UNUSED_436<<",
|
| 257 |
+
">>UNUSED_437<<",
|
| 258 |
+
">>UNUSED_438<<",
|
| 259 |
+
">>UNUSED_439<<",
|
| 260 |
+
">>UNUSED_440<<",
|
| 261 |
+
">>UNUSED_441<<",
|
| 262 |
+
">>UNUSED_442<<",
|
| 263 |
+
">>UNUSED_443<<",
|
| 264 |
+
">>UNUSED_444<<",
|
| 265 |
+
">>UNUSED_445<<",
|
| 266 |
+
">>UNUSED_446<<",
|
| 267 |
+
">>UNUSED_447<<",
|
| 268 |
+
">>UNUSED_448<<",
|
| 269 |
+
">>UNUSED_449<<",
|
| 270 |
+
">>UNUSED_450<<",
|
| 271 |
+
">>UNUSED_451<<",
|
| 272 |
+
">>UNUSED_452<<",
|
| 273 |
+
">>UNUSED_453<<",
|
| 274 |
+
">>UNUSED_454<<",
|
| 275 |
+
">>UNUSED_455<<",
|
| 276 |
+
">>UNUSED_456<<",
|
| 277 |
+
">>UNUSED_457<<",
|
| 278 |
+
">>UNUSED_458<<",
|
| 279 |
+
">>UNUSED_459<<",
|
| 280 |
+
">>UNUSED_460<<",
|
| 281 |
+
">>UNUSED_461<<",
|
| 282 |
+
">>UNUSED_462<<",
|
| 283 |
+
">>UNUSED_463<<",
|
| 284 |
+
">>UNUSED_464<<",
|
| 285 |
+
">>UNUSED_465<<",
|
| 286 |
+
">>UNUSED_466<<",
|
| 287 |
+
">>UNUSED_467<<",
|
| 288 |
+
">>UNUSED_468<<",
|
| 289 |
+
">>UNUSED_469<<",
|
| 290 |
+
">>UNUSED_470<<",
|
| 291 |
+
">>UNUSED_471<<",
|
| 292 |
+
">>UNUSED_472<<",
|
| 293 |
+
">>UNUSED_473<<",
|
| 294 |
+
">>UNUSED_474<<",
|
| 295 |
+
">>UNUSED_475<<",
|
| 296 |
+
">>UNUSED_476<<",
|
| 297 |
+
">>UNUSED_477<<",
|
| 298 |
+
">>UNUSED_478<<",
|
| 299 |
+
">>UNUSED_479<<",
|
| 300 |
+
">>UNUSED_480<<",
|
| 301 |
+
">>UNUSED_481<<",
|
| 302 |
+
">>UNUSED_482<<",
|
| 303 |
+
">>UNUSED_483<<",
|
| 304 |
+
">>UNUSED_484<<",
|
| 305 |
+
">>UNUSED_485<<",
|
| 306 |
+
">>UNUSED_486<<",
|
| 307 |
+
">>UNUSED_487<<",
|
| 308 |
+
">>UNUSED_488<<",
|
| 309 |
+
">>UNUSED_489<<",
|
| 310 |
+
">>UNUSED_490<<",
|
| 311 |
+
">>UNUSED_491<<",
|
| 312 |
+
">>UNUSED_492<<",
|
| 313 |
+
">>UNUSED_493<<",
|
| 314 |
+
">>UNUSED_494<<",
|
| 315 |
+
">>UNUSED_495<<",
|
| 316 |
+
">>UNUSED_496<<",
|
| 317 |
+
">>UNUSED_497<<",
|
| 318 |
+
">>UNUSED_498<<",
|
| 319 |
+
">>UNUSED_499<<",
|
| 320 |
+
">>UNUSED_500<<",
|
| 321 |
+
">>UNUSED_501<<",
|
| 322 |
+
">>UNUSED_502<<",
|
| 323 |
+
">>UNUSED_503<<",
|
| 324 |
+
">>UNUSED_504<<",
|
| 325 |
+
">>UNUSED_505<<",
|
| 326 |
+
">>UNUSED_506<<",
|
| 327 |
+
">>UNUSED_507<<",
|
| 328 |
+
">>UNUSED_508<<",
|
| 329 |
+
">>UNUSED_509<<",
|
| 330 |
+
">>UNUSED_510<<",
|
| 331 |
+
">>UNUSED_511<<"
|
| 332 |
+
],
|
| 333 |
+
"eos_token": {
|
| 334 |
+
"content": "<|end_of_text|>",
|
| 335 |
+
"lstrip": false,
|
| 336 |
+
"normalized": false,
|
| 337 |
+
"rstrip": false,
|
| 338 |
+
"single_word": false
|
| 339 |
+
}
|
| 340 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|