Upload 11 files
Browse files- README.md +0 -28
- chat_template.jinja +114 -0
- config.json +99 -0
- generation_config.json +7 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- model.safetensors.index.json +932 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer_config.json +783 -0
- vocab.json +0 -0
README.md
CHANGED
|
@@ -8,31 +8,3 @@ tags:
|
|
| 8 |
base_model: ibm-granite/granite-4.0-h-micro
|
| 9 |
pipeline_tag: text-generation
|
| 10 |
---
|
| 11 |
-
|
| 12 |
-
# mlx-community/granite-4.0-h-micro-6bit
|
| 13 |
-
|
| 14 |
-
This model [mlx-community/granite-4.0-h-micro-6bit](https://huggingface.co/mlx-community/granite-4.0-h-micro-6bit) was
|
| 15 |
-
converted to MLX format from [ibm-granite/granite-4.0-h-micro](https://huggingface.co/ibm-granite/granite-4.0-h-micro)
|
| 16 |
-
using mlx-lm version **0.28.2**.
|
| 17 |
-
|
| 18 |
-
## Use with mlx
|
| 19 |
-
|
| 20 |
-
```bash
|
| 21 |
-
pip install mlx-lm
|
| 22 |
-
```
|
| 23 |
-
|
| 24 |
-
```python
|
| 25 |
-
from mlx_lm import load, generate
|
| 26 |
-
|
| 27 |
-
model, tokenizer = load("mlx-community/granite-4.0-h-micro-6bit")
|
| 28 |
-
|
| 29 |
-
prompt = "hello"
|
| 30 |
-
|
| 31 |
-
if tokenizer.chat_template is not None:
|
| 32 |
-
messages = [{"role": "user", "content": prompt}]
|
| 33 |
-
prompt = tokenizer.apply_chat_template(
|
| 34 |
-
messages, add_generation_prompt=True
|
| 35 |
-
)
|
| 36 |
-
|
| 37 |
-
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
| 38 |
-
```
|
|
|
|
| 8 |
base_model: ibm-granite/granite-4.0-h-micro
|
| 9 |
pipeline_tag: text-generation
|
| 10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set tools_system_message_prefix = 'You are a helpful assistant with access to the following tools. You may call one or more tools to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>' %}
|
| 2 |
+
{%- set tools_system_message_suffix = '\n</tools>\n\nFor each tool call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call>. If a tool does not exist in the provided list of tools, notify the user that you do not have the ability to fulfill the request.' %}
|
| 3 |
+
{%- set documents_system_message_prefix = 'You are a helpful assistant with access to the following documents. You may use one or more documents to assist with the user query.\n\nYou are given a list of documents within <documents></documents> XML tags:\n<documents>' %}
|
| 4 |
+
{%- set documents_system_message_suffix = '\n</documents>\n\nWrite the response to the user\'s input by strictly aligning with the facts in the provided documents. If the information needed to answer the question is not available in the documents, inform the user that the question cannot be answered based on the available data.' %}
|
| 5 |
+
{%- if available_tools is defined and available_tools %}
|
| 6 |
+
{%- set tools = available_tools %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- set ns = namespace(tools_system_message=tools_system_message_prefix,
|
| 9 |
+
documents_system_message=documents_system_message_prefix,
|
| 10 |
+
system_message=''
|
| 11 |
+
) %}
|
| 12 |
+
{%- if tools %}
|
| 13 |
+
{%- for tool in tools %}
|
| 14 |
+
{%- set ns.tools_system_message = ns.tools_system_message + '\n' + (tool | tojson) %}
|
| 15 |
+
{%- endfor %}
|
| 16 |
+
{%- set ns.tools_system_message = ns.tools_system_message + tools_system_message_suffix %}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{%- set ns.tools_system_message = '' %}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- if documents %}
|
| 21 |
+
{%- for document in documents %}
|
| 22 |
+
{%- set ns.documents_system_message = ns.documents_system_message + '\n' + (document | tojson) %}
|
| 23 |
+
{%- endfor %}
|
| 24 |
+
{%- set ns.documents_system_message = ns.documents_system_message + documents_system_message_suffix %}
|
| 25 |
+
{%- else %}
|
| 26 |
+
{%- set ns.documents_system_message = '' %}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if messages[0].role == 'system' %}
|
| 29 |
+
{%- if messages[0].content is string %}
|
| 30 |
+
{%- set ns.system_message = messages[0].content %}
|
| 31 |
+
{%- elif messages[0].content is iterable %}
|
| 32 |
+
{%- for entry in messages[0].content %}
|
| 33 |
+
{%- if entry.type== 'text' %}
|
| 34 |
+
{%- if ns.system_message != '' %}
|
| 35 |
+
{%- set ns.system_message = ns.system_message + '\n' %}
|
| 36 |
+
{%- endif %}
|
| 37 |
+
{%- set ns.system_message = ns.system_message + entry.text %}
|
| 38 |
+
{%- endif %}
|
| 39 |
+
{%- endfor %}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- if tools and documents %}
|
| 42 |
+
{%- set ns.system_message = ns.system_message + '\n\n' + ns.tools_system_message + '\n\n' + ns.documents_system_message %}
|
| 43 |
+
{%- elif tools %}
|
| 44 |
+
{%- set ns.system_message = ns.system_message + '\n\n' + ns.tools_system_message %}
|
| 45 |
+
{%- elif documents %}
|
| 46 |
+
{%- set ns.system_message = ns.system_message + '\n\n' + ns.documents_system_message %}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- else %}
|
| 49 |
+
{%- if tools and documents %}
|
| 50 |
+
{%- set ns.system_message = ns.tools_system_message + '\n\n' + ns.documents_system_message %}
|
| 51 |
+
{%- elif tools %}
|
| 52 |
+
{%- set ns.system_message = ns.tools_system_message %}
|
| 53 |
+
{%- elif documents %}
|
| 54 |
+
{%- set ns.system_message = ns.documents_system_message %}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if ns.system_message %}
|
| 58 |
+
{{- '<|start_of_role|>system<|end_of_role|>' + ns.system_message + '<|end_of_text|>\n' }}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{%- for message in messages %}
|
| 61 |
+
{%- set content = namespace(val='') %}
|
| 62 |
+
{%- if message.content is string %}
|
| 63 |
+
{%- set content.val = message.content %}
|
| 64 |
+
{%- else %}
|
| 65 |
+
{%- if message.content is iterable %}
|
| 66 |
+
{%- for entry in message.content %}
|
| 67 |
+
{%- if entry.type== 'text' %}
|
| 68 |
+
{%- if content.val != '' %}
|
| 69 |
+
{%- set content.val = content.val + '\n' %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{%- set content.val = content.val + entry.text %}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- endfor %}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{%- if (message.role == 'user') or (message.role == 'system' and not loop.first) %}
|
| 77 |
+
{{- '<|start_of_role|>' + message.role + '<|end_of_role|>' + content.val + '<|end_of_text|>\n' }}
|
| 78 |
+
{%- elif message.role == 'assistant' %}
|
| 79 |
+
{{- '<|start_of_role|>' + message.role + '<|end_of_role|>' + content.val }}
|
| 80 |
+
{%- if message.tool_calls %}
|
| 81 |
+
{%- for tool_call in message.tool_calls %}
|
| 82 |
+
{%- if (loop.first and content.val) or (not loop.first) %}
|
| 83 |
+
{{- '\n' }}
|
| 84 |
+
{%- endif %}
|
| 85 |
+
{%- if tool_call.function %}
|
| 86 |
+
{%- set tool_call = tool_call.function %}
|
| 87 |
+
{%- endif %}
|
| 88 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 89 |
+
{{- tool_call.name }}
|
| 90 |
+
{{- '", "arguments": ' }}
|
| 91 |
+
{%- if tool_call.arguments is string %}
|
| 92 |
+
{{- tool_call.arguments }}
|
| 93 |
+
{%- else %}
|
| 94 |
+
{{- tool_call.arguments | tojson }}
|
| 95 |
+
{%- endif %}
|
| 96 |
+
{{- '}\n</tool_call>' }}
|
| 97 |
+
{%- endfor %}
|
| 98 |
+
{%- endif %}
|
| 99 |
+
{{- '<|end_of_text|>\n' }}
|
| 100 |
+
{%- elif message.role == 'tool' %}
|
| 101 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != 'tool') %}
|
| 102 |
+
{{- '<|start_of_role|>user<|end_of_role|>' }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- '\n<tool_response>\n' }}
|
| 105 |
+
{{- content.val }}
|
| 106 |
+
{{- '\n</tool_response>' }}
|
| 107 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != 'tool') %}
|
| 108 |
+
{{- '<|end_of_text|>\n' }}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- endif %}
|
| 111 |
+
{%- endfor %}
|
| 112 |
+
{%- if add_generation_prompt %}
|
| 113 |
+
{{- '<|start_of_role|>assistant<|end_of_role|>' }}
|
| 114 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"GraniteMoeHybridForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"attention_multiplier": 0.015625,
|
| 8 |
+
"bos_token_id": 100257,
|
| 9 |
+
"embedding_multiplier": 12,
|
| 10 |
+
"eos_token_id": 100257,
|
| 11 |
+
"hidden_act": "silu",
|
| 12 |
+
"hidden_size": 2048,
|
| 13 |
+
"initializer_range": 0.1,
|
| 14 |
+
"intermediate_size": 8192,
|
| 15 |
+
"layer_types": [
|
| 16 |
+
"mamba",
|
| 17 |
+
"mamba",
|
| 18 |
+
"mamba",
|
| 19 |
+
"mamba",
|
| 20 |
+
"mamba",
|
| 21 |
+
"attention",
|
| 22 |
+
"mamba",
|
| 23 |
+
"mamba",
|
| 24 |
+
"mamba",
|
| 25 |
+
"mamba",
|
| 26 |
+
"mamba",
|
| 27 |
+
"mamba",
|
| 28 |
+
"mamba",
|
| 29 |
+
"mamba",
|
| 30 |
+
"mamba",
|
| 31 |
+
"attention",
|
| 32 |
+
"mamba",
|
| 33 |
+
"mamba",
|
| 34 |
+
"mamba",
|
| 35 |
+
"mamba",
|
| 36 |
+
"mamba",
|
| 37 |
+
"mamba",
|
| 38 |
+
"mamba",
|
| 39 |
+
"mamba",
|
| 40 |
+
"mamba",
|
| 41 |
+
"attention",
|
| 42 |
+
"mamba",
|
| 43 |
+
"mamba",
|
| 44 |
+
"mamba",
|
| 45 |
+
"mamba",
|
| 46 |
+
"mamba",
|
| 47 |
+
"mamba",
|
| 48 |
+
"mamba",
|
| 49 |
+
"mamba",
|
| 50 |
+
"mamba",
|
| 51 |
+
"attention",
|
| 52 |
+
"mamba",
|
| 53 |
+
"mamba",
|
| 54 |
+
"mamba",
|
| 55 |
+
"mamba"
|
| 56 |
+
],
|
| 57 |
+
"logits_scaling": 8,
|
| 58 |
+
"mamba_chunk_size": 256,
|
| 59 |
+
"mamba_conv_bias": true,
|
| 60 |
+
"mamba_d_conv": 4,
|
| 61 |
+
"mamba_d_head": 64,
|
| 62 |
+
"mamba_d_state": 128,
|
| 63 |
+
"mamba_expand": 2,
|
| 64 |
+
"mamba_n_groups": 1,
|
| 65 |
+
"mamba_n_heads": 64,
|
| 66 |
+
"mamba_proj_bias": false,
|
| 67 |
+
"max_position_embeddings": 131072,
|
| 68 |
+
"model_type": "granitemoehybrid",
|
| 69 |
+
"normalization_function": "rmsnorm",
|
| 70 |
+
"num_attention_heads": 32,
|
| 71 |
+
"num_experts_per_tok": 0,
|
| 72 |
+
"num_hidden_layers": 40,
|
| 73 |
+
"num_key_value_heads": 8,
|
| 74 |
+
"num_local_experts": 0,
|
| 75 |
+
"output_router_logits": false,
|
| 76 |
+
"pad_token_id": 100256,
|
| 77 |
+
"position_embedding_type": "nope",
|
| 78 |
+
"quantization": {
|
| 79 |
+
"group_size": 64,
|
| 80 |
+
"bits": 6,
|
| 81 |
+
"mode": "affine"
|
| 82 |
+
},
|
| 83 |
+
"quantization_config": {
|
| 84 |
+
"group_size": 64,
|
| 85 |
+
"bits": 6,
|
| 86 |
+
"mode": "affine"
|
| 87 |
+
},
|
| 88 |
+
"residual_multiplier": 0.22,
|
| 89 |
+
"rms_norm_eps": 1e-05,
|
| 90 |
+
"rope_scaling": null,
|
| 91 |
+
"rope_theta": 10000,
|
| 92 |
+
"router_aux_loss_coef": 0.01,
|
| 93 |
+
"shared_intermediate_size": 8192,
|
| 94 |
+
"tie_word_embeddings": true,
|
| 95 |
+
"torch_dtype": "bfloat16",
|
| 96 |
+
"transformers_version": "4.56.0",
|
| 97 |
+
"use_cache": true,
|
| 98 |
+
"vocab_size": 100352
|
| 99 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 100257,
|
| 4 |
+
"eos_token_id": 100257,
|
| 5 |
+
"pad_token_id": 100256,
|
| 6 |
+
"transformers_version": "4.56.0"
|
| 7 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dff6d9d5e66dbe7b947ea36ea2293d37371f5dbd1208674c9c3b0a8c90a6bcff
|
| 3 |
+
size 2594421619
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,932 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 2594319872,
|
| 4 |
+
"total_parameters": 3191389184
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.embed_tokens.biases": "model.safetensors",
|
| 8 |
+
"model.embed_tokens.scales": "model.safetensors",
|
| 9 |
+
"model.embed_tokens.weight": "model.safetensors",
|
| 10 |
+
"model.layers.0.input_layernorm.weight": "model.safetensors",
|
| 11 |
+
"model.layers.0.mamba.A_log": "model.safetensors",
|
| 12 |
+
"model.layers.0.mamba.D": "model.safetensors",
|
| 13 |
+
"model.layers.0.mamba.conv1d.bias": "model.safetensors",
|
| 14 |
+
"model.layers.0.mamba.conv1d.weight": "model.safetensors",
|
| 15 |
+
"model.layers.0.mamba.dt_bias": "model.safetensors",
|
| 16 |
+
"model.layers.0.mamba.in_proj.biases": "model.safetensors",
|
| 17 |
+
"model.layers.0.mamba.in_proj.scales": "model.safetensors",
|
| 18 |
+
"model.layers.0.mamba.in_proj.weight": "model.safetensors",
|
| 19 |
+
"model.layers.0.mamba.norm.weight": "model.safetensors",
|
| 20 |
+
"model.layers.0.mamba.out_proj.biases": "model.safetensors",
|
| 21 |
+
"model.layers.0.mamba.out_proj.scales": "model.safetensors",
|
| 22 |
+
"model.layers.0.mamba.out_proj.weight": "model.safetensors",
|
| 23 |
+
"model.layers.0.mlp.down_proj.biases": "model.safetensors",
|
| 24 |
+
"model.layers.0.mlp.down_proj.scales": "model.safetensors",
|
| 25 |
+
"model.layers.0.mlp.down_proj.weight": "model.safetensors",
|
| 26 |
+
"model.layers.0.mlp.gate_proj.biases": "model.safetensors",
|
| 27 |
+
"model.layers.0.mlp.gate_proj.scales": "model.safetensors",
|
| 28 |
+
"model.layers.0.mlp.gate_proj.weight": "model.safetensors",
|
| 29 |
+
"model.layers.0.mlp.up_proj.biases": "model.safetensors",
|
| 30 |
+
"model.layers.0.mlp.up_proj.scales": "model.safetensors",
|
| 31 |
+
"model.layers.0.mlp.up_proj.weight": "model.safetensors",
|
| 32 |
+
"model.layers.0.post_attention_layernorm.weight": "model.safetensors",
|
| 33 |
+
"model.layers.1.input_layernorm.weight": "model.safetensors",
|
| 34 |
+
"model.layers.1.mamba.A_log": "model.safetensors",
|
| 35 |
+
"model.layers.1.mamba.D": "model.safetensors",
|
| 36 |
+
"model.layers.1.mamba.conv1d.bias": "model.safetensors",
|
| 37 |
+
"model.layers.1.mamba.conv1d.weight": "model.safetensors",
|
| 38 |
+
"model.layers.1.mamba.dt_bias": "model.safetensors",
|
| 39 |
+
"model.layers.1.mamba.in_proj.biases": "model.safetensors",
|
| 40 |
+
"model.layers.1.mamba.in_proj.scales": "model.safetensors",
|
| 41 |
+
"model.layers.1.mamba.in_proj.weight": "model.safetensors",
|
| 42 |
+
"model.layers.1.mamba.norm.weight": "model.safetensors",
|
| 43 |
+
"model.layers.1.mamba.out_proj.biases": "model.safetensors",
|
| 44 |
+
"model.layers.1.mamba.out_proj.scales": "model.safetensors",
|
| 45 |
+
"model.layers.1.mamba.out_proj.weight": "model.safetensors",
|
| 46 |
+
"model.layers.1.mlp.down_proj.biases": "model.safetensors",
|
| 47 |
+
"model.layers.1.mlp.down_proj.scales": "model.safetensors",
|
| 48 |
+
"model.layers.1.mlp.down_proj.weight": "model.safetensors",
|
| 49 |
+
"model.layers.1.mlp.gate_proj.biases": "model.safetensors",
|
| 50 |
+
"model.layers.1.mlp.gate_proj.scales": "model.safetensors",
|
| 51 |
+
"model.layers.1.mlp.gate_proj.weight": "model.safetensors",
|
| 52 |
+
"model.layers.1.mlp.up_proj.biases": "model.safetensors",
|
| 53 |
+
"model.layers.1.mlp.up_proj.scales": "model.safetensors",
|
| 54 |
+
"model.layers.1.mlp.up_proj.weight": "model.safetensors",
|
| 55 |
+
"model.layers.1.post_attention_layernorm.weight": "model.safetensors",
|
| 56 |
+
"model.layers.10.input_layernorm.weight": "model.safetensors",
|
| 57 |
+
"model.layers.10.mamba.A_log": "model.safetensors",
|
| 58 |
+
"model.layers.10.mamba.D": "model.safetensors",
|
| 59 |
+
"model.layers.10.mamba.conv1d.bias": "model.safetensors",
|
| 60 |
+
"model.layers.10.mamba.conv1d.weight": "model.safetensors",
|
| 61 |
+
"model.layers.10.mamba.dt_bias": "model.safetensors",
|
| 62 |
+
"model.layers.10.mamba.in_proj.biases": "model.safetensors",
|
| 63 |
+
"model.layers.10.mamba.in_proj.scales": "model.safetensors",
|
| 64 |
+
"model.layers.10.mamba.in_proj.weight": "model.safetensors",
|
| 65 |
+
"model.layers.10.mamba.norm.weight": "model.safetensors",
|
| 66 |
+
"model.layers.10.mamba.out_proj.biases": "model.safetensors",
|
| 67 |
+
"model.layers.10.mamba.out_proj.scales": "model.safetensors",
|
| 68 |
+
"model.layers.10.mamba.out_proj.weight": "model.safetensors",
|
| 69 |
+
"model.layers.10.mlp.down_proj.biases": "model.safetensors",
|
| 70 |
+
"model.layers.10.mlp.down_proj.scales": "model.safetensors",
|
| 71 |
+
"model.layers.10.mlp.down_proj.weight": "model.safetensors",
|
| 72 |
+
"model.layers.10.mlp.gate_proj.biases": "model.safetensors",
|
| 73 |
+
"model.layers.10.mlp.gate_proj.scales": "model.safetensors",
|
| 74 |
+
"model.layers.10.mlp.gate_proj.weight": "model.safetensors",
|
| 75 |
+
"model.layers.10.mlp.up_proj.biases": "model.safetensors",
|
| 76 |
+
"model.layers.10.mlp.up_proj.scales": "model.safetensors",
|
| 77 |
+
"model.layers.10.mlp.up_proj.weight": "model.safetensors",
|
| 78 |
+
"model.layers.10.post_attention_layernorm.weight": "model.safetensors",
|
| 79 |
+
"model.layers.11.input_layernorm.weight": "model.safetensors",
|
| 80 |
+
"model.layers.11.mamba.A_log": "model.safetensors",
|
| 81 |
+
"model.layers.11.mamba.D": "model.safetensors",
|
| 82 |
+
"model.layers.11.mamba.conv1d.bias": "model.safetensors",
|
| 83 |
+
"model.layers.11.mamba.conv1d.weight": "model.safetensors",
|
| 84 |
+
"model.layers.11.mamba.dt_bias": "model.safetensors",
|
| 85 |
+
"model.layers.11.mamba.in_proj.biases": "model.safetensors",
|
| 86 |
+
"model.layers.11.mamba.in_proj.scales": "model.safetensors",
|
| 87 |
+
"model.layers.11.mamba.in_proj.weight": "model.safetensors",
|
| 88 |
+
"model.layers.11.mamba.norm.weight": "model.safetensors",
|
| 89 |
+
"model.layers.11.mamba.out_proj.biases": "model.safetensors",
|
| 90 |
+
"model.layers.11.mamba.out_proj.scales": "model.safetensors",
|
| 91 |
+
"model.layers.11.mamba.out_proj.weight": "model.safetensors",
|
| 92 |
+
"model.layers.11.mlp.down_proj.biases": "model.safetensors",
|
| 93 |
+
"model.layers.11.mlp.down_proj.scales": "model.safetensors",
|
| 94 |
+
"model.layers.11.mlp.down_proj.weight": "model.safetensors",
|
| 95 |
+
"model.layers.11.mlp.gate_proj.biases": "model.safetensors",
|
| 96 |
+
"model.layers.11.mlp.gate_proj.scales": "model.safetensors",
|
| 97 |
+
"model.layers.11.mlp.gate_proj.weight": "model.safetensors",
|
| 98 |
+
"model.layers.11.mlp.up_proj.biases": "model.safetensors",
|
| 99 |
+
"model.layers.11.mlp.up_proj.scales": "model.safetensors",
|
| 100 |
+
"model.layers.11.mlp.up_proj.weight": "model.safetensors",
|
| 101 |
+
"model.layers.11.post_attention_layernorm.weight": "model.safetensors",
|
| 102 |
+
"model.layers.12.input_layernorm.weight": "model.safetensors",
|
| 103 |
+
"model.layers.12.mamba.A_log": "model.safetensors",
|
| 104 |
+
"model.layers.12.mamba.D": "model.safetensors",
|
| 105 |
+
"model.layers.12.mamba.conv1d.bias": "model.safetensors",
|
| 106 |
+
"model.layers.12.mamba.conv1d.weight": "model.safetensors",
|
| 107 |
+
"model.layers.12.mamba.dt_bias": "model.safetensors",
|
| 108 |
+
"model.layers.12.mamba.in_proj.biases": "model.safetensors",
|
| 109 |
+
"model.layers.12.mamba.in_proj.scales": "model.safetensors",
|
| 110 |
+
"model.layers.12.mamba.in_proj.weight": "model.safetensors",
|
| 111 |
+
"model.layers.12.mamba.norm.weight": "model.safetensors",
|
| 112 |
+
"model.layers.12.mamba.out_proj.biases": "model.safetensors",
|
| 113 |
+
"model.layers.12.mamba.out_proj.scales": "model.safetensors",
|
| 114 |
+
"model.layers.12.mamba.out_proj.weight": "model.safetensors",
|
| 115 |
+
"model.layers.12.mlp.down_proj.biases": "model.safetensors",
|
| 116 |
+
"model.layers.12.mlp.down_proj.scales": "model.safetensors",
|
| 117 |
+
"model.layers.12.mlp.down_proj.weight": "model.safetensors",
|
| 118 |
+
"model.layers.12.mlp.gate_proj.biases": "model.safetensors",
|
| 119 |
+
"model.layers.12.mlp.gate_proj.scales": "model.safetensors",
|
| 120 |
+
"model.layers.12.mlp.gate_proj.weight": "model.safetensors",
|
| 121 |
+
"model.layers.12.mlp.up_proj.biases": "model.safetensors",
|
| 122 |
+
"model.layers.12.mlp.up_proj.scales": "model.safetensors",
|
| 123 |
+
"model.layers.12.mlp.up_proj.weight": "model.safetensors",
|
| 124 |
+
"model.layers.12.post_attention_layernorm.weight": "model.safetensors",
|
| 125 |
+
"model.layers.13.input_layernorm.weight": "model.safetensors",
|
| 126 |
+
"model.layers.13.mamba.A_log": "model.safetensors",
|
| 127 |
+
"model.layers.13.mamba.D": "model.safetensors",
|
| 128 |
+
"model.layers.13.mamba.conv1d.bias": "model.safetensors",
|
| 129 |
+
"model.layers.13.mamba.conv1d.weight": "model.safetensors",
|
| 130 |
+
"model.layers.13.mamba.dt_bias": "model.safetensors",
|
| 131 |
+
"model.layers.13.mamba.in_proj.biases": "model.safetensors",
|
| 132 |
+
"model.layers.13.mamba.in_proj.scales": "model.safetensors",
|
| 133 |
+
"model.layers.13.mamba.in_proj.weight": "model.safetensors",
|
| 134 |
+
"model.layers.13.mamba.norm.weight": "model.safetensors",
|
| 135 |
+
"model.layers.13.mamba.out_proj.biases": "model.safetensors",
|
| 136 |
+
"model.layers.13.mamba.out_proj.scales": "model.safetensors",
|
| 137 |
+
"model.layers.13.mamba.out_proj.weight": "model.safetensors",
|
| 138 |
+
"model.layers.13.mlp.down_proj.biases": "model.safetensors",
|
| 139 |
+
"model.layers.13.mlp.down_proj.scales": "model.safetensors",
|
| 140 |
+
"model.layers.13.mlp.down_proj.weight": "model.safetensors",
|
| 141 |
+
"model.layers.13.mlp.gate_proj.biases": "model.safetensors",
|
| 142 |
+
"model.layers.13.mlp.gate_proj.scales": "model.safetensors",
|
| 143 |
+
"model.layers.13.mlp.gate_proj.weight": "model.safetensors",
|
| 144 |
+
"model.layers.13.mlp.up_proj.biases": "model.safetensors",
|
| 145 |
+
"model.layers.13.mlp.up_proj.scales": "model.safetensors",
|
| 146 |
+
"model.layers.13.mlp.up_proj.weight": "model.safetensors",
|
| 147 |
+
"model.layers.13.post_attention_layernorm.weight": "model.safetensors",
|
| 148 |
+
"model.layers.14.input_layernorm.weight": "model.safetensors",
|
| 149 |
+
"model.layers.14.mamba.A_log": "model.safetensors",
|
| 150 |
+
"model.layers.14.mamba.D": "model.safetensors",
|
| 151 |
+
"model.layers.14.mamba.conv1d.bias": "model.safetensors",
|
| 152 |
+
"model.layers.14.mamba.conv1d.weight": "model.safetensors",
|
| 153 |
+
"model.layers.14.mamba.dt_bias": "model.safetensors",
|
| 154 |
+
"model.layers.14.mamba.in_proj.biases": "model.safetensors",
|
| 155 |
+
"model.layers.14.mamba.in_proj.scales": "model.safetensors",
|
| 156 |
+
"model.layers.14.mamba.in_proj.weight": "model.safetensors",
|
| 157 |
+
"model.layers.14.mamba.norm.weight": "model.safetensors",
|
| 158 |
+
"model.layers.14.mamba.out_proj.biases": "model.safetensors",
|
| 159 |
+
"model.layers.14.mamba.out_proj.scales": "model.safetensors",
|
| 160 |
+
"model.layers.14.mamba.out_proj.weight": "model.safetensors",
|
| 161 |
+
"model.layers.14.mlp.down_proj.biases": "model.safetensors",
|
| 162 |
+
"model.layers.14.mlp.down_proj.scales": "model.safetensors",
|
| 163 |
+
"model.layers.14.mlp.down_proj.weight": "model.safetensors",
|
| 164 |
+
"model.layers.14.mlp.gate_proj.biases": "model.safetensors",
|
| 165 |
+
"model.layers.14.mlp.gate_proj.scales": "model.safetensors",
|
| 166 |
+
"model.layers.14.mlp.gate_proj.weight": "model.safetensors",
|
| 167 |
+
"model.layers.14.mlp.up_proj.biases": "model.safetensors",
|
| 168 |
+
"model.layers.14.mlp.up_proj.scales": "model.safetensors",
|
| 169 |
+
"model.layers.14.mlp.up_proj.weight": "model.safetensors",
|
| 170 |
+
"model.layers.14.post_attention_layernorm.weight": "model.safetensors",
|
| 171 |
+
"model.layers.15.input_layernorm.weight": "model.safetensors",
|
| 172 |
+
"model.layers.15.mlp.down_proj.biases": "model.safetensors",
|
| 173 |
+
"model.layers.15.mlp.down_proj.scales": "model.safetensors",
|
| 174 |
+
"model.layers.15.mlp.down_proj.weight": "model.safetensors",
|
| 175 |
+
"model.layers.15.mlp.gate_proj.biases": "model.safetensors",
|
| 176 |
+
"model.layers.15.mlp.gate_proj.scales": "model.safetensors",
|
| 177 |
+
"model.layers.15.mlp.gate_proj.weight": "model.safetensors",
|
| 178 |
+
"model.layers.15.mlp.up_proj.biases": "model.safetensors",
|
| 179 |
+
"model.layers.15.mlp.up_proj.scales": "model.safetensors",
|
| 180 |
+
"model.layers.15.mlp.up_proj.weight": "model.safetensors",
|
| 181 |
+
"model.layers.15.post_attention_layernorm.weight": "model.safetensors",
|
| 182 |
+
"model.layers.15.self_attn.k_proj.biases": "model.safetensors",
|
| 183 |
+
"model.layers.15.self_attn.k_proj.scales": "model.safetensors",
|
| 184 |
+
"model.layers.15.self_attn.k_proj.weight": "model.safetensors",
|
| 185 |
+
"model.layers.15.self_attn.o_proj.biases": "model.safetensors",
|
| 186 |
+
"model.layers.15.self_attn.o_proj.scales": "model.safetensors",
|
| 187 |
+
"model.layers.15.self_attn.o_proj.weight": "model.safetensors",
|
| 188 |
+
"model.layers.15.self_attn.q_proj.biases": "model.safetensors",
|
| 189 |
+
"model.layers.15.self_attn.q_proj.scales": "model.safetensors",
|
| 190 |
+
"model.layers.15.self_attn.q_proj.weight": "model.safetensors",
|
| 191 |
+
"model.layers.15.self_attn.v_proj.biases": "model.safetensors",
|
| 192 |
+
"model.layers.15.self_attn.v_proj.scales": "model.safetensors",
|
| 193 |
+
"model.layers.15.self_attn.v_proj.weight": "model.safetensors",
|
| 194 |
+
"model.layers.16.input_layernorm.weight": "model.safetensors",
|
| 195 |
+
"model.layers.16.mamba.A_log": "model.safetensors",
|
| 196 |
+
"model.layers.16.mamba.D": "model.safetensors",
|
| 197 |
+
"model.layers.16.mamba.conv1d.bias": "model.safetensors",
|
| 198 |
+
"model.layers.16.mamba.conv1d.weight": "model.safetensors",
|
| 199 |
+
"model.layers.16.mamba.dt_bias": "model.safetensors",
|
| 200 |
+
"model.layers.16.mamba.in_proj.biases": "model.safetensors",
|
| 201 |
+
"model.layers.16.mamba.in_proj.scales": "model.safetensors",
|
| 202 |
+
"model.layers.16.mamba.in_proj.weight": "model.safetensors",
|
| 203 |
+
"model.layers.16.mamba.norm.weight": "model.safetensors",
|
| 204 |
+
"model.layers.16.mamba.out_proj.biases": "model.safetensors",
|
| 205 |
+
"model.layers.16.mamba.out_proj.scales": "model.safetensors",
|
| 206 |
+
"model.layers.16.mamba.out_proj.weight": "model.safetensors",
|
| 207 |
+
"model.layers.16.mlp.down_proj.biases": "model.safetensors",
|
| 208 |
+
"model.layers.16.mlp.down_proj.scales": "model.safetensors",
|
| 209 |
+
"model.layers.16.mlp.down_proj.weight": "model.safetensors",
|
| 210 |
+
"model.layers.16.mlp.gate_proj.biases": "model.safetensors",
|
| 211 |
+
"model.layers.16.mlp.gate_proj.scales": "model.safetensors",
|
| 212 |
+
"model.layers.16.mlp.gate_proj.weight": "model.safetensors",
|
| 213 |
+
"model.layers.16.mlp.up_proj.biases": "model.safetensors",
|
| 214 |
+
"model.layers.16.mlp.up_proj.scales": "model.safetensors",
|
| 215 |
+
"model.layers.16.mlp.up_proj.weight": "model.safetensors",
|
| 216 |
+
"model.layers.16.post_attention_layernorm.weight": "model.safetensors",
|
| 217 |
+
"model.layers.17.input_layernorm.weight": "model.safetensors",
|
| 218 |
+
"model.layers.17.mamba.A_log": "model.safetensors",
|
| 219 |
+
"model.layers.17.mamba.D": "model.safetensors",
|
| 220 |
+
"model.layers.17.mamba.conv1d.bias": "model.safetensors",
|
| 221 |
+
"model.layers.17.mamba.conv1d.weight": "model.safetensors",
|
| 222 |
+
"model.layers.17.mamba.dt_bias": "model.safetensors",
|
| 223 |
+
"model.layers.17.mamba.in_proj.biases": "model.safetensors",
|
| 224 |
+
"model.layers.17.mamba.in_proj.scales": "model.safetensors",
|
| 225 |
+
"model.layers.17.mamba.in_proj.weight": "model.safetensors",
|
| 226 |
+
"model.layers.17.mamba.norm.weight": "model.safetensors",
|
| 227 |
+
"model.layers.17.mamba.out_proj.biases": "model.safetensors",
|
| 228 |
+
"model.layers.17.mamba.out_proj.scales": "model.safetensors",
|
| 229 |
+
"model.layers.17.mamba.out_proj.weight": "model.safetensors",
|
| 230 |
+
"model.layers.17.mlp.down_proj.biases": "model.safetensors",
|
| 231 |
+
"model.layers.17.mlp.down_proj.scales": "model.safetensors",
|
| 232 |
+
"model.layers.17.mlp.down_proj.weight": "model.safetensors",
|
| 233 |
+
"model.layers.17.mlp.gate_proj.biases": "model.safetensors",
|
| 234 |
+
"model.layers.17.mlp.gate_proj.scales": "model.safetensors",
|
| 235 |
+
"model.layers.17.mlp.gate_proj.weight": "model.safetensors",
|
| 236 |
+
"model.layers.17.mlp.up_proj.biases": "model.safetensors",
|
| 237 |
+
"model.layers.17.mlp.up_proj.scales": "model.safetensors",
|
| 238 |
+
"model.layers.17.mlp.up_proj.weight": "model.safetensors",
|
| 239 |
+
"model.layers.17.post_attention_layernorm.weight": "model.safetensors",
|
| 240 |
+
"model.layers.18.input_layernorm.weight": "model.safetensors",
|
| 241 |
+
"model.layers.18.mamba.A_log": "model.safetensors",
|
| 242 |
+
"model.layers.18.mamba.D": "model.safetensors",
|
| 243 |
+
"model.layers.18.mamba.conv1d.bias": "model.safetensors",
|
| 244 |
+
"model.layers.18.mamba.conv1d.weight": "model.safetensors",
|
| 245 |
+
"model.layers.18.mamba.dt_bias": "model.safetensors",
|
| 246 |
+
"model.layers.18.mamba.in_proj.biases": "model.safetensors",
|
| 247 |
+
"model.layers.18.mamba.in_proj.scales": "model.safetensors",
|
| 248 |
+
"model.layers.18.mamba.in_proj.weight": "model.safetensors",
|
| 249 |
+
"model.layers.18.mamba.norm.weight": "model.safetensors",
|
| 250 |
+
"model.layers.18.mamba.out_proj.biases": "model.safetensors",
|
| 251 |
+
"model.layers.18.mamba.out_proj.scales": "model.safetensors",
|
| 252 |
+
"model.layers.18.mamba.out_proj.weight": "model.safetensors",
|
| 253 |
+
"model.layers.18.mlp.down_proj.biases": "model.safetensors",
|
| 254 |
+
"model.layers.18.mlp.down_proj.scales": "model.safetensors",
|
| 255 |
+
"model.layers.18.mlp.down_proj.weight": "model.safetensors",
|
| 256 |
+
"model.layers.18.mlp.gate_proj.biases": "model.safetensors",
|
| 257 |
+
"model.layers.18.mlp.gate_proj.scales": "model.safetensors",
|
| 258 |
+
"model.layers.18.mlp.gate_proj.weight": "model.safetensors",
|
| 259 |
+
"model.layers.18.mlp.up_proj.biases": "model.safetensors",
|
| 260 |
+
"model.layers.18.mlp.up_proj.scales": "model.safetensors",
|
| 261 |
+
"model.layers.18.mlp.up_proj.weight": "model.safetensors",
|
| 262 |
+
"model.layers.18.post_attention_layernorm.weight": "model.safetensors",
|
| 263 |
+
"model.layers.19.input_layernorm.weight": "model.safetensors",
|
| 264 |
+
"model.layers.19.mamba.A_log": "model.safetensors",
|
| 265 |
+
"model.layers.19.mamba.D": "model.safetensors",
|
| 266 |
+
"model.layers.19.mamba.conv1d.bias": "model.safetensors",
|
| 267 |
+
"model.layers.19.mamba.conv1d.weight": "model.safetensors",
|
| 268 |
+
"model.layers.19.mamba.dt_bias": "model.safetensors",
|
| 269 |
+
"model.layers.19.mamba.in_proj.biases": "model.safetensors",
|
| 270 |
+
"model.layers.19.mamba.in_proj.scales": "model.safetensors",
|
| 271 |
+
"model.layers.19.mamba.in_proj.weight": "model.safetensors",
|
| 272 |
+
"model.layers.19.mamba.norm.weight": "model.safetensors",
|
| 273 |
+
"model.layers.19.mamba.out_proj.biases": "model.safetensors",
|
| 274 |
+
"model.layers.19.mamba.out_proj.scales": "model.safetensors",
|
| 275 |
+
"model.layers.19.mamba.out_proj.weight": "model.safetensors",
|
| 276 |
+
"model.layers.19.mlp.down_proj.biases": "model.safetensors",
|
| 277 |
+
"model.layers.19.mlp.down_proj.scales": "model.safetensors",
|
| 278 |
+
"model.layers.19.mlp.down_proj.weight": "model.safetensors",
|
| 279 |
+
"model.layers.19.mlp.gate_proj.biases": "model.safetensors",
|
| 280 |
+
"model.layers.19.mlp.gate_proj.scales": "model.safetensors",
|
| 281 |
+
"model.layers.19.mlp.gate_proj.weight": "model.safetensors",
|
| 282 |
+
"model.layers.19.mlp.up_proj.biases": "model.safetensors",
|
| 283 |
+
"model.layers.19.mlp.up_proj.scales": "model.safetensors",
|
| 284 |
+
"model.layers.19.mlp.up_proj.weight": "model.safetensors",
|
| 285 |
+
"model.layers.19.post_attention_layernorm.weight": "model.safetensors",
|
| 286 |
+
"model.layers.2.input_layernorm.weight": "model.safetensors",
|
| 287 |
+
"model.layers.2.mamba.A_log": "model.safetensors",
|
| 288 |
+
"model.layers.2.mamba.D": "model.safetensors",
|
| 289 |
+
"model.layers.2.mamba.conv1d.bias": "model.safetensors",
|
| 290 |
+
"model.layers.2.mamba.conv1d.weight": "model.safetensors",
|
| 291 |
+
"model.layers.2.mamba.dt_bias": "model.safetensors",
|
| 292 |
+
"model.layers.2.mamba.in_proj.biases": "model.safetensors",
|
| 293 |
+
"model.layers.2.mamba.in_proj.scales": "model.safetensors",
|
| 294 |
+
"model.layers.2.mamba.in_proj.weight": "model.safetensors",
|
| 295 |
+
"model.layers.2.mamba.norm.weight": "model.safetensors",
|
| 296 |
+
"model.layers.2.mamba.out_proj.biases": "model.safetensors",
|
| 297 |
+
"model.layers.2.mamba.out_proj.scales": "model.safetensors",
|
| 298 |
+
"model.layers.2.mamba.out_proj.weight": "model.safetensors",
|
| 299 |
+
"model.layers.2.mlp.down_proj.biases": "model.safetensors",
|
| 300 |
+
"model.layers.2.mlp.down_proj.scales": "model.safetensors",
|
| 301 |
+
"model.layers.2.mlp.down_proj.weight": "model.safetensors",
|
| 302 |
+
"model.layers.2.mlp.gate_proj.biases": "model.safetensors",
|
| 303 |
+
"model.layers.2.mlp.gate_proj.scales": "model.safetensors",
|
| 304 |
+
"model.layers.2.mlp.gate_proj.weight": "model.safetensors",
|
| 305 |
+
"model.layers.2.mlp.up_proj.biases": "model.safetensors",
|
| 306 |
+
"model.layers.2.mlp.up_proj.scales": "model.safetensors",
|
| 307 |
+
"model.layers.2.mlp.up_proj.weight": "model.safetensors",
|
| 308 |
+
"model.layers.2.post_attention_layernorm.weight": "model.safetensors",
|
| 309 |
+
"model.layers.20.input_layernorm.weight": "model.safetensors",
|
| 310 |
+
"model.layers.20.mamba.A_log": "model.safetensors",
|
| 311 |
+
"model.layers.20.mamba.D": "model.safetensors",
|
| 312 |
+
"model.layers.20.mamba.conv1d.bias": "model.safetensors",
|
| 313 |
+
"model.layers.20.mamba.conv1d.weight": "model.safetensors",
|
| 314 |
+
"model.layers.20.mamba.dt_bias": "model.safetensors",
|
| 315 |
+
"model.layers.20.mamba.in_proj.biases": "model.safetensors",
|
| 316 |
+
"model.layers.20.mamba.in_proj.scales": "model.safetensors",
|
| 317 |
+
"model.layers.20.mamba.in_proj.weight": "model.safetensors",
|
| 318 |
+
"model.layers.20.mamba.norm.weight": "model.safetensors",
|
| 319 |
+
"model.layers.20.mamba.out_proj.biases": "model.safetensors",
|
| 320 |
+
"model.layers.20.mamba.out_proj.scales": "model.safetensors",
|
| 321 |
+
"model.layers.20.mamba.out_proj.weight": "model.safetensors",
|
| 322 |
+
"model.layers.20.mlp.down_proj.biases": "model.safetensors",
|
| 323 |
+
"model.layers.20.mlp.down_proj.scales": "model.safetensors",
|
| 324 |
+
"model.layers.20.mlp.down_proj.weight": "model.safetensors",
|
| 325 |
+
"model.layers.20.mlp.gate_proj.biases": "model.safetensors",
|
| 326 |
+
"model.layers.20.mlp.gate_proj.scales": "model.safetensors",
|
| 327 |
+
"model.layers.20.mlp.gate_proj.weight": "model.safetensors",
|
| 328 |
+
"model.layers.20.mlp.up_proj.biases": "model.safetensors",
|
| 329 |
+
"model.layers.20.mlp.up_proj.scales": "model.safetensors",
|
| 330 |
+
"model.layers.20.mlp.up_proj.weight": "model.safetensors",
|
| 331 |
+
"model.layers.20.post_attention_layernorm.weight": "model.safetensors",
|
| 332 |
+
"model.layers.21.input_layernorm.weight": "model.safetensors",
|
| 333 |
+
"model.layers.21.mamba.A_log": "model.safetensors",
|
| 334 |
+
"model.layers.21.mamba.D": "model.safetensors",
|
| 335 |
+
"model.layers.21.mamba.conv1d.bias": "model.safetensors",
|
| 336 |
+
"model.layers.21.mamba.conv1d.weight": "model.safetensors",
|
| 337 |
+
"model.layers.21.mamba.dt_bias": "model.safetensors",
|
| 338 |
+
"model.layers.21.mamba.in_proj.biases": "model.safetensors",
|
| 339 |
+
"model.layers.21.mamba.in_proj.scales": "model.safetensors",
|
| 340 |
+
"model.layers.21.mamba.in_proj.weight": "model.safetensors",
|
| 341 |
+
"model.layers.21.mamba.norm.weight": "model.safetensors",
|
| 342 |
+
"model.layers.21.mamba.out_proj.biases": "model.safetensors",
|
| 343 |
+
"model.layers.21.mamba.out_proj.scales": "model.safetensors",
|
| 344 |
+
"model.layers.21.mamba.out_proj.weight": "model.safetensors",
|
| 345 |
+
"model.layers.21.mlp.down_proj.biases": "model.safetensors",
|
| 346 |
+
"model.layers.21.mlp.down_proj.scales": "model.safetensors",
|
| 347 |
+
"model.layers.21.mlp.down_proj.weight": "model.safetensors",
|
| 348 |
+
"model.layers.21.mlp.gate_proj.biases": "model.safetensors",
|
| 349 |
+
"model.layers.21.mlp.gate_proj.scales": "model.safetensors",
|
| 350 |
+
"model.layers.21.mlp.gate_proj.weight": "model.safetensors",
|
| 351 |
+
"model.layers.21.mlp.up_proj.biases": "model.safetensors",
|
| 352 |
+
"model.layers.21.mlp.up_proj.scales": "model.safetensors",
|
| 353 |
+
"model.layers.21.mlp.up_proj.weight": "model.safetensors",
|
| 354 |
+
"model.layers.21.post_attention_layernorm.weight": "model.safetensors",
|
| 355 |
+
"model.layers.22.input_layernorm.weight": "model.safetensors",
|
| 356 |
+
"model.layers.22.mamba.A_log": "model.safetensors",
|
| 357 |
+
"model.layers.22.mamba.D": "model.safetensors",
|
| 358 |
+
"model.layers.22.mamba.conv1d.bias": "model.safetensors",
|
| 359 |
+
"model.layers.22.mamba.conv1d.weight": "model.safetensors",
|
| 360 |
+
"model.layers.22.mamba.dt_bias": "model.safetensors",
|
| 361 |
+
"model.layers.22.mamba.in_proj.biases": "model.safetensors",
|
| 362 |
+
"model.layers.22.mamba.in_proj.scales": "model.safetensors",
|
| 363 |
+
"model.layers.22.mamba.in_proj.weight": "model.safetensors",
|
| 364 |
+
"model.layers.22.mamba.norm.weight": "model.safetensors",
|
| 365 |
+
"model.layers.22.mamba.out_proj.biases": "model.safetensors",
|
| 366 |
+
"model.layers.22.mamba.out_proj.scales": "model.safetensors",
|
| 367 |
+
"model.layers.22.mamba.out_proj.weight": "model.safetensors",
|
| 368 |
+
"model.layers.22.mlp.down_proj.biases": "model.safetensors",
|
| 369 |
+
"model.layers.22.mlp.down_proj.scales": "model.safetensors",
|
| 370 |
+
"model.layers.22.mlp.down_proj.weight": "model.safetensors",
|
| 371 |
+
"model.layers.22.mlp.gate_proj.biases": "model.safetensors",
|
| 372 |
+
"model.layers.22.mlp.gate_proj.scales": "model.safetensors",
|
| 373 |
+
"model.layers.22.mlp.gate_proj.weight": "model.safetensors",
|
| 374 |
+
"model.layers.22.mlp.up_proj.biases": "model.safetensors",
|
| 375 |
+
"model.layers.22.mlp.up_proj.scales": "model.safetensors",
|
| 376 |
+
"model.layers.22.mlp.up_proj.weight": "model.safetensors",
|
| 377 |
+
"model.layers.22.post_attention_layernorm.weight": "model.safetensors",
|
| 378 |
+
"model.layers.23.input_layernorm.weight": "model.safetensors",
|
| 379 |
+
"model.layers.23.mamba.A_log": "model.safetensors",
|
| 380 |
+
"model.layers.23.mamba.D": "model.safetensors",
|
| 381 |
+
"model.layers.23.mamba.conv1d.bias": "model.safetensors",
|
| 382 |
+
"model.layers.23.mamba.conv1d.weight": "model.safetensors",
|
| 383 |
+
"model.layers.23.mamba.dt_bias": "model.safetensors",
|
| 384 |
+
"model.layers.23.mamba.in_proj.biases": "model.safetensors",
|
| 385 |
+
"model.layers.23.mamba.in_proj.scales": "model.safetensors",
|
| 386 |
+
"model.layers.23.mamba.in_proj.weight": "model.safetensors",
|
| 387 |
+
"model.layers.23.mamba.norm.weight": "model.safetensors",
|
| 388 |
+
"model.layers.23.mamba.out_proj.biases": "model.safetensors",
|
| 389 |
+
"model.layers.23.mamba.out_proj.scales": "model.safetensors",
|
| 390 |
+
"model.layers.23.mamba.out_proj.weight": "model.safetensors",
|
| 391 |
+
"model.layers.23.mlp.down_proj.biases": "model.safetensors",
|
| 392 |
+
"model.layers.23.mlp.down_proj.scales": "model.safetensors",
|
| 393 |
+
"model.layers.23.mlp.down_proj.weight": "model.safetensors",
|
| 394 |
+
"model.layers.23.mlp.gate_proj.biases": "model.safetensors",
|
| 395 |
+
"model.layers.23.mlp.gate_proj.scales": "model.safetensors",
|
| 396 |
+
"model.layers.23.mlp.gate_proj.weight": "model.safetensors",
|
| 397 |
+
"model.layers.23.mlp.up_proj.biases": "model.safetensors",
|
| 398 |
+
"model.layers.23.mlp.up_proj.scales": "model.safetensors",
|
| 399 |
+
"model.layers.23.mlp.up_proj.weight": "model.safetensors",
|
| 400 |
+
"model.layers.23.post_attention_layernorm.weight": "model.safetensors",
|
| 401 |
+
"model.layers.24.input_layernorm.weight": "model.safetensors",
|
| 402 |
+
"model.layers.24.mamba.A_log": "model.safetensors",
|
| 403 |
+
"model.layers.24.mamba.D": "model.safetensors",
|
| 404 |
+
"model.layers.24.mamba.conv1d.bias": "model.safetensors",
|
| 405 |
+
"model.layers.24.mamba.conv1d.weight": "model.safetensors",
|
| 406 |
+
"model.layers.24.mamba.dt_bias": "model.safetensors",
|
| 407 |
+
"model.layers.24.mamba.in_proj.biases": "model.safetensors",
|
| 408 |
+
"model.layers.24.mamba.in_proj.scales": "model.safetensors",
|
| 409 |
+
"model.layers.24.mamba.in_proj.weight": "model.safetensors",
|
| 410 |
+
"model.layers.24.mamba.norm.weight": "model.safetensors",
|
| 411 |
+
"model.layers.24.mamba.out_proj.biases": "model.safetensors",
|
| 412 |
+
"model.layers.24.mamba.out_proj.scales": "model.safetensors",
|
| 413 |
+
"model.layers.24.mamba.out_proj.weight": "model.safetensors",
|
| 414 |
+
"model.layers.24.mlp.down_proj.biases": "model.safetensors",
|
| 415 |
+
"model.layers.24.mlp.down_proj.scales": "model.safetensors",
|
| 416 |
+
"model.layers.24.mlp.down_proj.weight": "model.safetensors",
|
| 417 |
+
"model.layers.24.mlp.gate_proj.biases": "model.safetensors",
|
| 418 |
+
"model.layers.24.mlp.gate_proj.scales": "model.safetensors",
|
| 419 |
+
"model.layers.24.mlp.gate_proj.weight": "model.safetensors",
|
| 420 |
+
"model.layers.24.mlp.up_proj.biases": "model.safetensors",
|
| 421 |
+
"model.layers.24.mlp.up_proj.scales": "model.safetensors",
|
| 422 |
+
"model.layers.24.mlp.up_proj.weight": "model.safetensors",
|
| 423 |
+
"model.layers.24.post_attention_layernorm.weight": "model.safetensors",
|
| 424 |
+
"model.layers.25.input_layernorm.weight": "model.safetensors",
|
| 425 |
+
"model.layers.25.mlp.down_proj.biases": "model.safetensors",
|
| 426 |
+
"model.layers.25.mlp.down_proj.scales": "model.safetensors",
|
| 427 |
+
"model.layers.25.mlp.down_proj.weight": "model.safetensors",
|
| 428 |
+
"model.layers.25.mlp.gate_proj.biases": "model.safetensors",
|
| 429 |
+
"model.layers.25.mlp.gate_proj.scales": "model.safetensors",
|
| 430 |
+
"model.layers.25.mlp.gate_proj.weight": "model.safetensors",
|
| 431 |
+
"model.layers.25.mlp.up_proj.biases": "model.safetensors",
|
| 432 |
+
"model.layers.25.mlp.up_proj.scales": "model.safetensors",
|
| 433 |
+
"model.layers.25.mlp.up_proj.weight": "model.safetensors",
|
| 434 |
+
"model.layers.25.post_attention_layernorm.weight": "model.safetensors",
|
| 435 |
+
"model.layers.25.self_attn.k_proj.biases": "model.safetensors",
|
| 436 |
+
"model.layers.25.self_attn.k_proj.scales": "model.safetensors",
|
| 437 |
+
"model.layers.25.self_attn.k_proj.weight": "model.safetensors",
|
| 438 |
+
"model.layers.25.self_attn.o_proj.biases": "model.safetensors",
|
| 439 |
+
"model.layers.25.self_attn.o_proj.scales": "model.safetensors",
|
| 440 |
+
"model.layers.25.self_attn.o_proj.weight": "model.safetensors",
|
| 441 |
+
"model.layers.25.self_attn.q_proj.biases": "model.safetensors",
|
| 442 |
+
"model.layers.25.self_attn.q_proj.scales": "model.safetensors",
|
| 443 |
+
"model.layers.25.self_attn.q_proj.weight": "model.safetensors",
|
| 444 |
+
"model.layers.25.self_attn.v_proj.biases": "model.safetensors",
|
| 445 |
+
"model.layers.25.self_attn.v_proj.scales": "model.safetensors",
|
| 446 |
+
"model.layers.25.self_attn.v_proj.weight": "model.safetensors",
|
| 447 |
+
"model.layers.26.input_layernorm.weight": "model.safetensors",
|
| 448 |
+
"model.layers.26.mamba.A_log": "model.safetensors",
|
| 449 |
+
"model.layers.26.mamba.D": "model.safetensors",
|
| 450 |
+
"model.layers.26.mamba.conv1d.bias": "model.safetensors",
|
| 451 |
+
"model.layers.26.mamba.conv1d.weight": "model.safetensors",
|
| 452 |
+
"model.layers.26.mamba.dt_bias": "model.safetensors",
|
| 453 |
+
"model.layers.26.mamba.in_proj.biases": "model.safetensors",
|
| 454 |
+
"model.layers.26.mamba.in_proj.scales": "model.safetensors",
|
| 455 |
+
"model.layers.26.mamba.in_proj.weight": "model.safetensors",
|
| 456 |
+
"model.layers.26.mamba.norm.weight": "model.safetensors",
|
| 457 |
+
"model.layers.26.mamba.out_proj.biases": "model.safetensors",
|
| 458 |
+
"model.layers.26.mamba.out_proj.scales": "model.safetensors",
|
| 459 |
+
"model.layers.26.mamba.out_proj.weight": "model.safetensors",
|
| 460 |
+
"model.layers.26.mlp.down_proj.biases": "model.safetensors",
|
| 461 |
+
"model.layers.26.mlp.down_proj.scales": "model.safetensors",
|
| 462 |
+
"model.layers.26.mlp.down_proj.weight": "model.safetensors",
|
| 463 |
+
"model.layers.26.mlp.gate_proj.biases": "model.safetensors",
|
| 464 |
+
"model.layers.26.mlp.gate_proj.scales": "model.safetensors",
|
| 465 |
+
"model.layers.26.mlp.gate_proj.weight": "model.safetensors",
|
| 466 |
+
"model.layers.26.mlp.up_proj.biases": "model.safetensors",
|
| 467 |
+
"model.layers.26.mlp.up_proj.scales": "model.safetensors",
|
| 468 |
+
"model.layers.26.mlp.up_proj.weight": "model.safetensors",
|
| 469 |
+
"model.layers.26.post_attention_layernorm.weight": "model.safetensors",
|
| 470 |
+
"model.layers.27.input_layernorm.weight": "model.safetensors",
|
| 471 |
+
"model.layers.27.mamba.A_log": "model.safetensors",
|
| 472 |
+
"model.layers.27.mamba.D": "model.safetensors",
|
| 473 |
+
"model.layers.27.mamba.conv1d.bias": "model.safetensors",
|
| 474 |
+
"model.layers.27.mamba.conv1d.weight": "model.safetensors",
|
| 475 |
+
"model.layers.27.mamba.dt_bias": "model.safetensors",
|
| 476 |
+
"model.layers.27.mamba.in_proj.biases": "model.safetensors",
|
| 477 |
+
"model.layers.27.mamba.in_proj.scales": "model.safetensors",
|
| 478 |
+
"model.layers.27.mamba.in_proj.weight": "model.safetensors",
|
| 479 |
+
"model.layers.27.mamba.norm.weight": "model.safetensors",
|
| 480 |
+
"model.layers.27.mamba.out_proj.biases": "model.safetensors",
|
| 481 |
+
"model.layers.27.mamba.out_proj.scales": "model.safetensors",
|
| 482 |
+
"model.layers.27.mamba.out_proj.weight": "model.safetensors",
|
| 483 |
+
"model.layers.27.mlp.down_proj.biases": "model.safetensors",
|
| 484 |
+
"model.layers.27.mlp.down_proj.scales": "model.safetensors",
|
| 485 |
+
"model.layers.27.mlp.down_proj.weight": "model.safetensors",
|
| 486 |
+
"model.layers.27.mlp.gate_proj.biases": "model.safetensors",
|
| 487 |
+
"model.layers.27.mlp.gate_proj.scales": "model.safetensors",
|
| 488 |
+
"model.layers.27.mlp.gate_proj.weight": "model.safetensors",
|
| 489 |
+
"model.layers.27.mlp.up_proj.biases": "model.safetensors",
|
| 490 |
+
"model.layers.27.mlp.up_proj.scales": "model.safetensors",
|
| 491 |
+
"model.layers.27.mlp.up_proj.weight": "model.safetensors",
|
| 492 |
+
"model.layers.27.post_attention_layernorm.weight": "model.safetensors",
|
| 493 |
+
"model.layers.28.input_layernorm.weight": "model.safetensors",
|
| 494 |
+
"model.layers.28.mamba.A_log": "model.safetensors",
|
| 495 |
+
"model.layers.28.mamba.D": "model.safetensors",
|
| 496 |
+
"model.layers.28.mamba.conv1d.bias": "model.safetensors",
|
| 497 |
+
"model.layers.28.mamba.conv1d.weight": "model.safetensors",
|
| 498 |
+
"model.layers.28.mamba.dt_bias": "model.safetensors",
|
| 499 |
+
"model.layers.28.mamba.in_proj.biases": "model.safetensors",
|
| 500 |
+
"model.layers.28.mamba.in_proj.scales": "model.safetensors",
|
| 501 |
+
"model.layers.28.mamba.in_proj.weight": "model.safetensors",
|
| 502 |
+
"model.layers.28.mamba.norm.weight": "model.safetensors",
|
| 503 |
+
"model.layers.28.mamba.out_proj.biases": "model.safetensors",
|
| 504 |
+
"model.layers.28.mamba.out_proj.scales": "model.safetensors",
|
| 505 |
+
"model.layers.28.mamba.out_proj.weight": "model.safetensors",
|
| 506 |
+
"model.layers.28.mlp.down_proj.biases": "model.safetensors",
|
| 507 |
+
"model.layers.28.mlp.down_proj.scales": "model.safetensors",
|
| 508 |
+
"model.layers.28.mlp.down_proj.weight": "model.safetensors",
|
| 509 |
+
"model.layers.28.mlp.gate_proj.biases": "model.safetensors",
|
| 510 |
+
"model.layers.28.mlp.gate_proj.scales": "model.safetensors",
|
| 511 |
+
"model.layers.28.mlp.gate_proj.weight": "model.safetensors",
|
| 512 |
+
"model.layers.28.mlp.up_proj.biases": "model.safetensors",
|
| 513 |
+
"model.layers.28.mlp.up_proj.scales": "model.safetensors",
|
| 514 |
+
"model.layers.28.mlp.up_proj.weight": "model.safetensors",
|
| 515 |
+
"model.layers.28.post_attention_layernorm.weight": "model.safetensors",
|
| 516 |
+
"model.layers.29.input_layernorm.weight": "model.safetensors",
|
| 517 |
+
"model.layers.29.mamba.A_log": "model.safetensors",
|
| 518 |
+
"model.layers.29.mamba.D": "model.safetensors",
|
| 519 |
+
"model.layers.29.mamba.conv1d.bias": "model.safetensors",
|
| 520 |
+
"model.layers.29.mamba.conv1d.weight": "model.safetensors",
|
| 521 |
+
"model.layers.29.mamba.dt_bias": "model.safetensors",
|
| 522 |
+
"model.layers.29.mamba.in_proj.biases": "model.safetensors",
|
| 523 |
+
"model.layers.29.mamba.in_proj.scales": "model.safetensors",
|
| 524 |
+
"model.layers.29.mamba.in_proj.weight": "model.safetensors",
|
| 525 |
+
"model.layers.29.mamba.norm.weight": "model.safetensors",
|
| 526 |
+
"model.layers.29.mamba.out_proj.biases": "model.safetensors",
|
| 527 |
+
"model.layers.29.mamba.out_proj.scales": "model.safetensors",
|
| 528 |
+
"model.layers.29.mamba.out_proj.weight": "model.safetensors",
|
| 529 |
+
"model.layers.29.mlp.down_proj.biases": "model.safetensors",
|
| 530 |
+
"model.layers.29.mlp.down_proj.scales": "model.safetensors",
|
| 531 |
+
"model.layers.29.mlp.down_proj.weight": "model.safetensors",
|
| 532 |
+
"model.layers.29.mlp.gate_proj.biases": "model.safetensors",
|
| 533 |
+
"model.layers.29.mlp.gate_proj.scales": "model.safetensors",
|
| 534 |
+
"model.layers.29.mlp.gate_proj.weight": "model.safetensors",
|
| 535 |
+
"model.layers.29.mlp.up_proj.biases": "model.safetensors",
|
| 536 |
+
"model.layers.29.mlp.up_proj.scales": "model.safetensors",
|
| 537 |
+
"model.layers.29.mlp.up_proj.weight": "model.safetensors",
|
| 538 |
+
"model.layers.29.post_attention_layernorm.weight": "model.safetensors",
|
| 539 |
+
"model.layers.3.input_layernorm.weight": "model.safetensors",
|
| 540 |
+
"model.layers.3.mamba.A_log": "model.safetensors",
|
| 541 |
+
"model.layers.3.mamba.D": "model.safetensors",
|
| 542 |
+
"model.layers.3.mamba.conv1d.bias": "model.safetensors",
|
| 543 |
+
"model.layers.3.mamba.conv1d.weight": "model.safetensors",
|
| 544 |
+
"model.layers.3.mamba.dt_bias": "model.safetensors",
|
| 545 |
+
"model.layers.3.mamba.in_proj.biases": "model.safetensors",
|
| 546 |
+
"model.layers.3.mamba.in_proj.scales": "model.safetensors",
|
| 547 |
+
"model.layers.3.mamba.in_proj.weight": "model.safetensors",
|
| 548 |
+
"model.layers.3.mamba.norm.weight": "model.safetensors",
|
| 549 |
+
"model.layers.3.mamba.out_proj.biases": "model.safetensors",
|
| 550 |
+
"model.layers.3.mamba.out_proj.scales": "model.safetensors",
|
| 551 |
+
"model.layers.3.mamba.out_proj.weight": "model.safetensors",
|
| 552 |
+
"model.layers.3.mlp.down_proj.biases": "model.safetensors",
|
| 553 |
+
"model.layers.3.mlp.down_proj.scales": "model.safetensors",
|
| 554 |
+
"model.layers.3.mlp.down_proj.weight": "model.safetensors",
|
| 555 |
+
"model.layers.3.mlp.gate_proj.biases": "model.safetensors",
|
| 556 |
+
"model.layers.3.mlp.gate_proj.scales": "model.safetensors",
|
| 557 |
+
"model.layers.3.mlp.gate_proj.weight": "model.safetensors",
|
| 558 |
+
"model.layers.3.mlp.up_proj.biases": "model.safetensors",
|
| 559 |
+
"model.layers.3.mlp.up_proj.scales": "model.safetensors",
|
| 560 |
+
"model.layers.3.mlp.up_proj.weight": "model.safetensors",
|
| 561 |
+
"model.layers.3.post_attention_layernorm.weight": "model.safetensors",
|
| 562 |
+
"model.layers.30.input_layernorm.weight": "model.safetensors",
|
| 563 |
+
"model.layers.30.mamba.A_log": "model.safetensors",
|
| 564 |
+
"model.layers.30.mamba.D": "model.safetensors",
|
| 565 |
+
"model.layers.30.mamba.conv1d.bias": "model.safetensors",
|
| 566 |
+
"model.layers.30.mamba.conv1d.weight": "model.safetensors",
|
| 567 |
+
"model.layers.30.mamba.dt_bias": "model.safetensors",
|
| 568 |
+
"model.layers.30.mamba.in_proj.biases": "model.safetensors",
|
| 569 |
+
"model.layers.30.mamba.in_proj.scales": "model.safetensors",
|
| 570 |
+
"model.layers.30.mamba.in_proj.weight": "model.safetensors",
|
| 571 |
+
"model.layers.30.mamba.norm.weight": "model.safetensors",
|
| 572 |
+
"model.layers.30.mamba.out_proj.biases": "model.safetensors",
|
| 573 |
+
"model.layers.30.mamba.out_proj.scales": "model.safetensors",
|
| 574 |
+
"model.layers.30.mamba.out_proj.weight": "model.safetensors",
|
| 575 |
+
"model.layers.30.mlp.down_proj.biases": "model.safetensors",
|
| 576 |
+
"model.layers.30.mlp.down_proj.scales": "model.safetensors",
|
| 577 |
+
"model.layers.30.mlp.down_proj.weight": "model.safetensors",
|
| 578 |
+
"model.layers.30.mlp.gate_proj.biases": "model.safetensors",
|
| 579 |
+
"model.layers.30.mlp.gate_proj.scales": "model.safetensors",
|
| 580 |
+
"model.layers.30.mlp.gate_proj.weight": "model.safetensors",
|
| 581 |
+
"model.layers.30.mlp.up_proj.biases": "model.safetensors",
|
| 582 |
+
"model.layers.30.mlp.up_proj.scales": "model.safetensors",
|
| 583 |
+
"model.layers.30.mlp.up_proj.weight": "model.safetensors",
|
| 584 |
+
"model.layers.30.post_attention_layernorm.weight": "model.safetensors",
|
| 585 |
+
"model.layers.31.input_layernorm.weight": "model.safetensors",
|
| 586 |
+
"model.layers.31.mamba.A_log": "model.safetensors",
|
| 587 |
+
"model.layers.31.mamba.D": "model.safetensors",
|
| 588 |
+
"model.layers.31.mamba.conv1d.bias": "model.safetensors",
|
| 589 |
+
"model.layers.31.mamba.conv1d.weight": "model.safetensors",
|
| 590 |
+
"model.layers.31.mamba.dt_bias": "model.safetensors",
|
| 591 |
+
"model.layers.31.mamba.in_proj.biases": "model.safetensors",
|
| 592 |
+
"model.layers.31.mamba.in_proj.scales": "model.safetensors",
|
| 593 |
+
"model.layers.31.mamba.in_proj.weight": "model.safetensors",
|
| 594 |
+
"model.layers.31.mamba.norm.weight": "model.safetensors",
|
| 595 |
+
"model.layers.31.mamba.out_proj.biases": "model.safetensors",
|
| 596 |
+
"model.layers.31.mamba.out_proj.scales": "model.safetensors",
|
| 597 |
+
"model.layers.31.mamba.out_proj.weight": "model.safetensors",
|
| 598 |
+
"model.layers.31.mlp.down_proj.biases": "model.safetensors",
|
| 599 |
+
"model.layers.31.mlp.down_proj.scales": "model.safetensors",
|
| 600 |
+
"model.layers.31.mlp.down_proj.weight": "model.safetensors",
|
| 601 |
+
"model.layers.31.mlp.gate_proj.biases": "model.safetensors",
|
| 602 |
+
"model.layers.31.mlp.gate_proj.scales": "model.safetensors",
|
| 603 |
+
"model.layers.31.mlp.gate_proj.weight": "model.safetensors",
|
| 604 |
+
"model.layers.31.mlp.up_proj.biases": "model.safetensors",
|
| 605 |
+
"model.layers.31.mlp.up_proj.scales": "model.safetensors",
|
| 606 |
+
"model.layers.31.mlp.up_proj.weight": "model.safetensors",
|
| 607 |
+
"model.layers.31.post_attention_layernorm.weight": "model.safetensors",
|
| 608 |
+
"model.layers.32.input_layernorm.weight": "model.safetensors",
|
| 609 |
+
"model.layers.32.mamba.A_log": "model.safetensors",
|
| 610 |
+
"model.layers.32.mamba.D": "model.safetensors",
|
| 611 |
+
"model.layers.32.mamba.conv1d.bias": "model.safetensors",
|
| 612 |
+
"model.layers.32.mamba.conv1d.weight": "model.safetensors",
|
| 613 |
+
"model.layers.32.mamba.dt_bias": "model.safetensors",
|
| 614 |
+
"model.layers.32.mamba.in_proj.biases": "model.safetensors",
|
| 615 |
+
"model.layers.32.mamba.in_proj.scales": "model.safetensors",
|
| 616 |
+
"model.layers.32.mamba.in_proj.weight": "model.safetensors",
|
| 617 |
+
"model.layers.32.mamba.norm.weight": "model.safetensors",
|
| 618 |
+
"model.layers.32.mamba.out_proj.biases": "model.safetensors",
|
| 619 |
+
"model.layers.32.mamba.out_proj.scales": "model.safetensors",
|
| 620 |
+
"model.layers.32.mamba.out_proj.weight": "model.safetensors",
|
| 621 |
+
"model.layers.32.mlp.down_proj.biases": "model.safetensors",
|
| 622 |
+
"model.layers.32.mlp.down_proj.scales": "model.safetensors",
|
| 623 |
+
"model.layers.32.mlp.down_proj.weight": "model.safetensors",
|
| 624 |
+
"model.layers.32.mlp.gate_proj.biases": "model.safetensors",
|
| 625 |
+
"model.layers.32.mlp.gate_proj.scales": "model.safetensors",
|
| 626 |
+
"model.layers.32.mlp.gate_proj.weight": "model.safetensors",
|
| 627 |
+
"model.layers.32.mlp.up_proj.biases": "model.safetensors",
|
| 628 |
+
"model.layers.32.mlp.up_proj.scales": "model.safetensors",
|
| 629 |
+
"model.layers.32.mlp.up_proj.weight": "model.safetensors",
|
| 630 |
+
"model.layers.32.post_attention_layernorm.weight": "model.safetensors",
|
| 631 |
+
"model.layers.33.input_layernorm.weight": "model.safetensors",
|
| 632 |
+
"model.layers.33.mamba.A_log": "model.safetensors",
|
| 633 |
+
"model.layers.33.mamba.D": "model.safetensors",
|
| 634 |
+
"model.layers.33.mamba.conv1d.bias": "model.safetensors",
|
| 635 |
+
"model.layers.33.mamba.conv1d.weight": "model.safetensors",
|
| 636 |
+
"model.layers.33.mamba.dt_bias": "model.safetensors",
|
| 637 |
+
"model.layers.33.mamba.in_proj.biases": "model.safetensors",
|
| 638 |
+
"model.layers.33.mamba.in_proj.scales": "model.safetensors",
|
| 639 |
+
"model.layers.33.mamba.in_proj.weight": "model.safetensors",
|
| 640 |
+
"model.layers.33.mamba.norm.weight": "model.safetensors",
|
| 641 |
+
"model.layers.33.mamba.out_proj.biases": "model.safetensors",
|
| 642 |
+
"model.layers.33.mamba.out_proj.scales": "model.safetensors",
|
| 643 |
+
"model.layers.33.mamba.out_proj.weight": "model.safetensors",
|
| 644 |
+
"model.layers.33.mlp.down_proj.biases": "model.safetensors",
|
| 645 |
+
"model.layers.33.mlp.down_proj.scales": "model.safetensors",
|
| 646 |
+
"model.layers.33.mlp.down_proj.weight": "model.safetensors",
|
| 647 |
+
"model.layers.33.mlp.gate_proj.biases": "model.safetensors",
|
| 648 |
+
"model.layers.33.mlp.gate_proj.scales": "model.safetensors",
|
| 649 |
+
"model.layers.33.mlp.gate_proj.weight": "model.safetensors",
|
| 650 |
+
"model.layers.33.mlp.up_proj.biases": "model.safetensors",
|
| 651 |
+
"model.layers.33.mlp.up_proj.scales": "model.safetensors",
|
| 652 |
+
"model.layers.33.mlp.up_proj.weight": "model.safetensors",
|
| 653 |
+
"model.layers.33.post_attention_layernorm.weight": "model.safetensors",
|
| 654 |
+
"model.layers.34.input_layernorm.weight": "model.safetensors",
|
| 655 |
+
"model.layers.34.mamba.A_log": "model.safetensors",
|
| 656 |
+
"model.layers.34.mamba.D": "model.safetensors",
|
| 657 |
+
"model.layers.34.mamba.conv1d.bias": "model.safetensors",
|
| 658 |
+
"model.layers.34.mamba.conv1d.weight": "model.safetensors",
|
| 659 |
+
"model.layers.34.mamba.dt_bias": "model.safetensors",
|
| 660 |
+
"model.layers.34.mamba.in_proj.biases": "model.safetensors",
|
| 661 |
+
"model.layers.34.mamba.in_proj.scales": "model.safetensors",
|
| 662 |
+
"model.layers.34.mamba.in_proj.weight": "model.safetensors",
|
| 663 |
+
"model.layers.34.mamba.norm.weight": "model.safetensors",
|
| 664 |
+
"model.layers.34.mamba.out_proj.biases": "model.safetensors",
|
| 665 |
+
"model.layers.34.mamba.out_proj.scales": "model.safetensors",
|
| 666 |
+
"model.layers.34.mamba.out_proj.weight": "model.safetensors",
|
| 667 |
+
"model.layers.34.mlp.down_proj.biases": "model.safetensors",
|
| 668 |
+
"model.layers.34.mlp.down_proj.scales": "model.safetensors",
|
| 669 |
+
"model.layers.34.mlp.down_proj.weight": "model.safetensors",
|
| 670 |
+
"model.layers.34.mlp.gate_proj.biases": "model.safetensors",
|
| 671 |
+
"model.layers.34.mlp.gate_proj.scales": "model.safetensors",
|
| 672 |
+
"model.layers.34.mlp.gate_proj.weight": "model.safetensors",
|
| 673 |
+
"model.layers.34.mlp.up_proj.biases": "model.safetensors",
|
| 674 |
+
"model.layers.34.mlp.up_proj.scales": "model.safetensors",
|
| 675 |
+
"model.layers.34.mlp.up_proj.weight": "model.safetensors",
|
| 676 |
+
"model.layers.34.post_attention_layernorm.weight": "model.safetensors",
|
| 677 |
+
"model.layers.35.input_layernorm.weight": "model.safetensors",
|
| 678 |
+
"model.layers.35.mlp.down_proj.biases": "model.safetensors",
|
| 679 |
+
"model.layers.35.mlp.down_proj.scales": "model.safetensors",
|
| 680 |
+
"model.layers.35.mlp.down_proj.weight": "model.safetensors",
|
| 681 |
+
"model.layers.35.mlp.gate_proj.biases": "model.safetensors",
|
| 682 |
+
"model.layers.35.mlp.gate_proj.scales": "model.safetensors",
|
| 683 |
+
"model.layers.35.mlp.gate_proj.weight": "model.safetensors",
|
| 684 |
+
"model.layers.35.mlp.up_proj.biases": "model.safetensors",
|
| 685 |
+
"model.layers.35.mlp.up_proj.scales": "model.safetensors",
|
| 686 |
+
"model.layers.35.mlp.up_proj.weight": "model.safetensors",
|
| 687 |
+
"model.layers.35.post_attention_layernorm.weight": "model.safetensors",
|
| 688 |
+
"model.layers.35.self_attn.k_proj.biases": "model.safetensors",
|
| 689 |
+
"model.layers.35.self_attn.k_proj.scales": "model.safetensors",
|
| 690 |
+
"model.layers.35.self_attn.k_proj.weight": "model.safetensors",
|
| 691 |
+
"model.layers.35.self_attn.o_proj.biases": "model.safetensors",
|
| 692 |
+
"model.layers.35.self_attn.o_proj.scales": "model.safetensors",
|
| 693 |
+
"model.layers.35.self_attn.o_proj.weight": "model.safetensors",
|
| 694 |
+
"model.layers.35.self_attn.q_proj.biases": "model.safetensors",
|
| 695 |
+
"model.layers.35.self_attn.q_proj.scales": "model.safetensors",
|
| 696 |
+
"model.layers.35.self_attn.q_proj.weight": "model.safetensors",
|
| 697 |
+
"model.layers.35.self_attn.v_proj.biases": "model.safetensors",
|
| 698 |
+
"model.layers.35.self_attn.v_proj.scales": "model.safetensors",
|
| 699 |
+
"model.layers.35.self_attn.v_proj.weight": "model.safetensors",
|
| 700 |
+
"model.layers.36.input_layernorm.weight": "model.safetensors",
|
| 701 |
+
"model.layers.36.mamba.A_log": "model.safetensors",
|
| 702 |
+
"model.layers.36.mamba.D": "model.safetensors",
|
| 703 |
+
"model.layers.36.mamba.conv1d.bias": "model.safetensors",
|
| 704 |
+
"model.layers.36.mamba.conv1d.weight": "model.safetensors",
|
| 705 |
+
"model.layers.36.mamba.dt_bias": "model.safetensors",
|
| 706 |
+
"model.layers.36.mamba.in_proj.biases": "model.safetensors",
|
| 707 |
+
"model.layers.36.mamba.in_proj.scales": "model.safetensors",
|
| 708 |
+
"model.layers.36.mamba.in_proj.weight": "model.safetensors",
|
| 709 |
+
"model.layers.36.mamba.norm.weight": "model.safetensors",
|
| 710 |
+
"model.layers.36.mamba.out_proj.biases": "model.safetensors",
|
| 711 |
+
"model.layers.36.mamba.out_proj.scales": "model.safetensors",
|
| 712 |
+
"model.layers.36.mamba.out_proj.weight": "model.safetensors",
|
| 713 |
+
"model.layers.36.mlp.down_proj.biases": "model.safetensors",
|
| 714 |
+
"model.layers.36.mlp.down_proj.scales": "model.safetensors",
|
| 715 |
+
"model.layers.36.mlp.down_proj.weight": "model.safetensors",
|
| 716 |
+
"model.layers.36.mlp.gate_proj.biases": "model.safetensors",
|
| 717 |
+
"model.layers.36.mlp.gate_proj.scales": "model.safetensors",
|
| 718 |
+
"model.layers.36.mlp.gate_proj.weight": "model.safetensors",
|
| 719 |
+
"model.layers.36.mlp.up_proj.biases": "model.safetensors",
|
| 720 |
+
"model.layers.36.mlp.up_proj.scales": "model.safetensors",
|
| 721 |
+
"model.layers.36.mlp.up_proj.weight": "model.safetensors",
|
| 722 |
+
"model.layers.36.post_attention_layernorm.weight": "model.safetensors",
|
| 723 |
+
"model.layers.37.input_layernorm.weight": "model.safetensors",
|
| 724 |
+
"model.layers.37.mamba.A_log": "model.safetensors",
|
| 725 |
+
"model.layers.37.mamba.D": "model.safetensors",
|
| 726 |
+
"model.layers.37.mamba.conv1d.bias": "model.safetensors",
|
| 727 |
+
"model.layers.37.mamba.conv1d.weight": "model.safetensors",
|
| 728 |
+
"model.layers.37.mamba.dt_bias": "model.safetensors",
|
| 729 |
+
"model.layers.37.mamba.in_proj.biases": "model.safetensors",
|
| 730 |
+
"model.layers.37.mamba.in_proj.scales": "model.safetensors",
|
| 731 |
+
"model.layers.37.mamba.in_proj.weight": "model.safetensors",
|
| 732 |
+
"model.layers.37.mamba.norm.weight": "model.safetensors",
|
| 733 |
+
"model.layers.37.mamba.out_proj.biases": "model.safetensors",
|
| 734 |
+
"model.layers.37.mamba.out_proj.scales": "model.safetensors",
|
| 735 |
+
"model.layers.37.mamba.out_proj.weight": "model.safetensors",
|
| 736 |
+
"model.layers.37.mlp.down_proj.biases": "model.safetensors",
|
| 737 |
+
"model.layers.37.mlp.down_proj.scales": "model.safetensors",
|
| 738 |
+
"model.layers.37.mlp.down_proj.weight": "model.safetensors",
|
| 739 |
+
"model.layers.37.mlp.gate_proj.biases": "model.safetensors",
|
| 740 |
+
"model.layers.37.mlp.gate_proj.scales": "model.safetensors",
|
| 741 |
+
"model.layers.37.mlp.gate_proj.weight": "model.safetensors",
|
| 742 |
+
"model.layers.37.mlp.up_proj.biases": "model.safetensors",
|
| 743 |
+
"model.layers.37.mlp.up_proj.scales": "model.safetensors",
|
| 744 |
+
"model.layers.37.mlp.up_proj.weight": "model.safetensors",
|
| 745 |
+
"model.layers.37.post_attention_layernorm.weight": "model.safetensors",
|
| 746 |
+
"model.layers.38.input_layernorm.weight": "model.safetensors",
|
| 747 |
+
"model.layers.38.mamba.A_log": "model.safetensors",
|
| 748 |
+
"model.layers.38.mamba.D": "model.safetensors",
|
| 749 |
+
"model.layers.38.mamba.conv1d.bias": "model.safetensors",
|
| 750 |
+
"model.layers.38.mamba.conv1d.weight": "model.safetensors",
|
| 751 |
+
"model.layers.38.mamba.dt_bias": "model.safetensors",
|
| 752 |
+
"model.layers.38.mamba.in_proj.biases": "model.safetensors",
|
| 753 |
+
"model.layers.38.mamba.in_proj.scales": "model.safetensors",
|
| 754 |
+
"model.layers.38.mamba.in_proj.weight": "model.safetensors",
|
| 755 |
+
"model.layers.38.mamba.norm.weight": "model.safetensors",
|
| 756 |
+
"model.layers.38.mamba.out_proj.biases": "model.safetensors",
|
| 757 |
+
"model.layers.38.mamba.out_proj.scales": "model.safetensors",
|
| 758 |
+
"model.layers.38.mamba.out_proj.weight": "model.safetensors",
|
| 759 |
+
"model.layers.38.mlp.down_proj.biases": "model.safetensors",
|
| 760 |
+
"model.layers.38.mlp.down_proj.scales": "model.safetensors",
|
| 761 |
+
"model.layers.38.mlp.down_proj.weight": "model.safetensors",
|
| 762 |
+
"model.layers.38.mlp.gate_proj.biases": "model.safetensors",
|
| 763 |
+
"model.layers.38.mlp.gate_proj.scales": "model.safetensors",
|
| 764 |
+
"model.layers.38.mlp.gate_proj.weight": "model.safetensors",
|
| 765 |
+
"model.layers.38.mlp.up_proj.biases": "model.safetensors",
|
| 766 |
+
"model.layers.38.mlp.up_proj.scales": "model.safetensors",
|
| 767 |
+
"model.layers.38.mlp.up_proj.weight": "model.safetensors",
|
| 768 |
+
"model.layers.38.post_attention_layernorm.weight": "model.safetensors",
|
| 769 |
+
"model.layers.39.input_layernorm.weight": "model.safetensors",
|
| 770 |
+
"model.layers.39.mamba.A_log": "model.safetensors",
|
| 771 |
+
"model.layers.39.mamba.D": "model.safetensors",
|
| 772 |
+
"model.layers.39.mamba.conv1d.bias": "model.safetensors",
|
| 773 |
+
"model.layers.39.mamba.conv1d.weight": "model.safetensors",
|
| 774 |
+
"model.layers.39.mamba.dt_bias": "model.safetensors",
|
| 775 |
+
"model.layers.39.mamba.in_proj.biases": "model.safetensors",
|
| 776 |
+
"model.layers.39.mamba.in_proj.scales": "model.safetensors",
|
| 777 |
+
"model.layers.39.mamba.in_proj.weight": "model.safetensors",
|
| 778 |
+
"model.layers.39.mamba.norm.weight": "model.safetensors",
|
| 779 |
+
"model.layers.39.mamba.out_proj.biases": "model.safetensors",
|
| 780 |
+
"model.layers.39.mamba.out_proj.scales": "model.safetensors",
|
| 781 |
+
"model.layers.39.mamba.out_proj.weight": "model.safetensors",
|
| 782 |
+
"model.layers.39.mlp.down_proj.biases": "model.safetensors",
|
| 783 |
+
"model.layers.39.mlp.down_proj.scales": "model.safetensors",
|
| 784 |
+
"model.layers.39.mlp.down_proj.weight": "model.safetensors",
|
| 785 |
+
"model.layers.39.mlp.gate_proj.biases": "model.safetensors",
|
| 786 |
+
"model.layers.39.mlp.gate_proj.scales": "model.safetensors",
|
| 787 |
+
"model.layers.39.mlp.gate_proj.weight": "model.safetensors",
|
| 788 |
+
"model.layers.39.mlp.up_proj.biases": "model.safetensors",
|
| 789 |
+
"model.layers.39.mlp.up_proj.scales": "model.safetensors",
|
| 790 |
+
"model.layers.39.mlp.up_proj.weight": "model.safetensors",
|
| 791 |
+
"model.layers.39.post_attention_layernorm.weight": "model.safetensors",
|
| 792 |
+
"model.layers.4.input_layernorm.weight": "model.safetensors",
|
| 793 |
+
"model.layers.4.mamba.A_log": "model.safetensors",
|
| 794 |
+
"model.layers.4.mamba.D": "model.safetensors",
|
| 795 |
+
"model.layers.4.mamba.conv1d.bias": "model.safetensors",
|
| 796 |
+
"model.layers.4.mamba.conv1d.weight": "model.safetensors",
|
| 797 |
+
"model.layers.4.mamba.dt_bias": "model.safetensors",
|
| 798 |
+
"model.layers.4.mamba.in_proj.biases": "model.safetensors",
|
| 799 |
+
"model.layers.4.mamba.in_proj.scales": "model.safetensors",
|
| 800 |
+
"model.layers.4.mamba.in_proj.weight": "model.safetensors",
|
| 801 |
+
"model.layers.4.mamba.norm.weight": "model.safetensors",
|
| 802 |
+
"model.layers.4.mamba.out_proj.biases": "model.safetensors",
|
| 803 |
+
"model.layers.4.mamba.out_proj.scales": "model.safetensors",
|
| 804 |
+
"model.layers.4.mamba.out_proj.weight": "model.safetensors",
|
| 805 |
+
"model.layers.4.mlp.down_proj.biases": "model.safetensors",
|
| 806 |
+
"model.layers.4.mlp.down_proj.scales": "model.safetensors",
|
| 807 |
+
"model.layers.4.mlp.down_proj.weight": "model.safetensors",
|
| 808 |
+
"model.layers.4.mlp.gate_proj.biases": "model.safetensors",
|
| 809 |
+
"model.layers.4.mlp.gate_proj.scales": "model.safetensors",
|
| 810 |
+
"model.layers.4.mlp.gate_proj.weight": "model.safetensors",
|
| 811 |
+
"model.layers.4.mlp.up_proj.biases": "model.safetensors",
|
| 812 |
+
"model.layers.4.mlp.up_proj.scales": "model.safetensors",
|
| 813 |
+
"model.layers.4.mlp.up_proj.weight": "model.safetensors",
|
| 814 |
+
"model.layers.4.post_attention_layernorm.weight": "model.safetensors",
|
| 815 |
+
"model.layers.5.input_layernorm.weight": "model.safetensors",
|
| 816 |
+
"model.layers.5.mlp.down_proj.biases": "model.safetensors",
|
| 817 |
+
"model.layers.5.mlp.down_proj.scales": "model.safetensors",
|
| 818 |
+
"model.layers.5.mlp.down_proj.weight": "model.safetensors",
|
| 819 |
+
"model.layers.5.mlp.gate_proj.biases": "model.safetensors",
|
| 820 |
+
"model.layers.5.mlp.gate_proj.scales": "model.safetensors",
|
| 821 |
+
"model.layers.5.mlp.gate_proj.weight": "model.safetensors",
|
| 822 |
+
"model.layers.5.mlp.up_proj.biases": "model.safetensors",
|
| 823 |
+
"model.layers.5.mlp.up_proj.scales": "model.safetensors",
|
| 824 |
+
"model.layers.5.mlp.up_proj.weight": "model.safetensors",
|
| 825 |
+
"model.layers.5.post_attention_layernorm.weight": "model.safetensors",
|
| 826 |
+
"model.layers.5.self_attn.k_proj.biases": "model.safetensors",
|
| 827 |
+
"model.layers.5.self_attn.k_proj.scales": "model.safetensors",
|
| 828 |
+
"model.layers.5.self_attn.k_proj.weight": "model.safetensors",
|
| 829 |
+
"model.layers.5.self_attn.o_proj.biases": "model.safetensors",
|
| 830 |
+
"model.layers.5.self_attn.o_proj.scales": "model.safetensors",
|
| 831 |
+
"model.layers.5.self_attn.o_proj.weight": "model.safetensors",
|
| 832 |
+
"model.layers.5.self_attn.q_proj.biases": "model.safetensors",
|
| 833 |
+
"model.layers.5.self_attn.q_proj.scales": "model.safetensors",
|
| 834 |
+
"model.layers.5.self_attn.q_proj.weight": "model.safetensors",
|
| 835 |
+
"model.layers.5.self_attn.v_proj.biases": "model.safetensors",
|
| 836 |
+
"model.layers.5.self_attn.v_proj.scales": "model.safetensors",
|
| 837 |
+
"model.layers.5.self_attn.v_proj.weight": "model.safetensors",
|
| 838 |
+
"model.layers.6.input_layernorm.weight": "model.safetensors",
|
| 839 |
+
"model.layers.6.mamba.A_log": "model.safetensors",
|
| 840 |
+
"model.layers.6.mamba.D": "model.safetensors",
|
| 841 |
+
"model.layers.6.mamba.conv1d.bias": "model.safetensors",
|
| 842 |
+
"model.layers.6.mamba.conv1d.weight": "model.safetensors",
|
| 843 |
+
"model.layers.6.mamba.dt_bias": "model.safetensors",
|
| 844 |
+
"model.layers.6.mamba.in_proj.biases": "model.safetensors",
|
| 845 |
+
"model.layers.6.mamba.in_proj.scales": "model.safetensors",
|
| 846 |
+
"model.layers.6.mamba.in_proj.weight": "model.safetensors",
|
| 847 |
+
"model.layers.6.mamba.norm.weight": "model.safetensors",
|
| 848 |
+
"model.layers.6.mamba.out_proj.biases": "model.safetensors",
|
| 849 |
+
"model.layers.6.mamba.out_proj.scales": "model.safetensors",
|
| 850 |
+
"model.layers.6.mamba.out_proj.weight": "model.safetensors",
|
| 851 |
+
"model.layers.6.mlp.down_proj.biases": "model.safetensors",
|
| 852 |
+
"model.layers.6.mlp.down_proj.scales": "model.safetensors",
|
| 853 |
+
"model.layers.6.mlp.down_proj.weight": "model.safetensors",
|
| 854 |
+
"model.layers.6.mlp.gate_proj.biases": "model.safetensors",
|
| 855 |
+
"model.layers.6.mlp.gate_proj.scales": "model.safetensors",
|
| 856 |
+
"model.layers.6.mlp.gate_proj.weight": "model.safetensors",
|
| 857 |
+
"model.layers.6.mlp.up_proj.biases": "model.safetensors",
|
| 858 |
+
"model.layers.6.mlp.up_proj.scales": "model.safetensors",
|
| 859 |
+
"model.layers.6.mlp.up_proj.weight": "model.safetensors",
|
| 860 |
+
"model.layers.6.post_attention_layernorm.weight": "model.safetensors",
|
| 861 |
+
"model.layers.7.input_layernorm.weight": "model.safetensors",
|
| 862 |
+
"model.layers.7.mamba.A_log": "model.safetensors",
|
| 863 |
+
"model.layers.7.mamba.D": "model.safetensors",
|
| 864 |
+
"model.layers.7.mamba.conv1d.bias": "model.safetensors",
|
| 865 |
+
"model.layers.7.mamba.conv1d.weight": "model.safetensors",
|
| 866 |
+
"model.layers.7.mamba.dt_bias": "model.safetensors",
|
| 867 |
+
"model.layers.7.mamba.in_proj.biases": "model.safetensors",
|
| 868 |
+
"model.layers.7.mamba.in_proj.scales": "model.safetensors",
|
| 869 |
+
"model.layers.7.mamba.in_proj.weight": "model.safetensors",
|
| 870 |
+
"model.layers.7.mamba.norm.weight": "model.safetensors",
|
| 871 |
+
"model.layers.7.mamba.out_proj.biases": "model.safetensors",
|
| 872 |
+
"model.layers.7.mamba.out_proj.scales": "model.safetensors",
|
| 873 |
+
"model.layers.7.mamba.out_proj.weight": "model.safetensors",
|
| 874 |
+
"model.layers.7.mlp.down_proj.biases": "model.safetensors",
|
| 875 |
+
"model.layers.7.mlp.down_proj.scales": "model.safetensors",
|
| 876 |
+
"model.layers.7.mlp.down_proj.weight": "model.safetensors",
|
| 877 |
+
"model.layers.7.mlp.gate_proj.biases": "model.safetensors",
|
| 878 |
+
"model.layers.7.mlp.gate_proj.scales": "model.safetensors",
|
| 879 |
+
"model.layers.7.mlp.gate_proj.weight": "model.safetensors",
|
| 880 |
+
"model.layers.7.mlp.up_proj.biases": "model.safetensors",
|
| 881 |
+
"model.layers.7.mlp.up_proj.scales": "model.safetensors",
|
| 882 |
+
"model.layers.7.mlp.up_proj.weight": "model.safetensors",
|
| 883 |
+
"model.layers.7.post_attention_layernorm.weight": "model.safetensors",
|
| 884 |
+
"model.layers.8.input_layernorm.weight": "model.safetensors",
|
| 885 |
+
"model.layers.8.mamba.A_log": "model.safetensors",
|
| 886 |
+
"model.layers.8.mamba.D": "model.safetensors",
|
| 887 |
+
"model.layers.8.mamba.conv1d.bias": "model.safetensors",
|
| 888 |
+
"model.layers.8.mamba.conv1d.weight": "model.safetensors",
|
| 889 |
+
"model.layers.8.mamba.dt_bias": "model.safetensors",
|
| 890 |
+
"model.layers.8.mamba.in_proj.biases": "model.safetensors",
|
| 891 |
+
"model.layers.8.mamba.in_proj.scales": "model.safetensors",
|
| 892 |
+
"model.layers.8.mamba.in_proj.weight": "model.safetensors",
|
| 893 |
+
"model.layers.8.mamba.norm.weight": "model.safetensors",
|
| 894 |
+
"model.layers.8.mamba.out_proj.biases": "model.safetensors",
|
| 895 |
+
"model.layers.8.mamba.out_proj.scales": "model.safetensors",
|
| 896 |
+
"model.layers.8.mamba.out_proj.weight": "model.safetensors",
|
| 897 |
+
"model.layers.8.mlp.down_proj.biases": "model.safetensors",
|
| 898 |
+
"model.layers.8.mlp.down_proj.scales": "model.safetensors",
|
| 899 |
+
"model.layers.8.mlp.down_proj.weight": "model.safetensors",
|
| 900 |
+
"model.layers.8.mlp.gate_proj.biases": "model.safetensors",
|
| 901 |
+
"model.layers.8.mlp.gate_proj.scales": "model.safetensors",
|
| 902 |
+
"model.layers.8.mlp.gate_proj.weight": "model.safetensors",
|
| 903 |
+
"model.layers.8.mlp.up_proj.biases": "model.safetensors",
|
| 904 |
+
"model.layers.8.mlp.up_proj.scales": "model.safetensors",
|
| 905 |
+
"model.layers.8.mlp.up_proj.weight": "model.safetensors",
|
| 906 |
+
"model.layers.8.post_attention_layernorm.weight": "model.safetensors",
|
| 907 |
+
"model.layers.9.input_layernorm.weight": "model.safetensors",
|
| 908 |
+
"model.layers.9.mamba.A_log": "model.safetensors",
|
| 909 |
+
"model.layers.9.mamba.D": "model.safetensors",
|
| 910 |
+
"model.layers.9.mamba.conv1d.bias": "model.safetensors",
|
| 911 |
+
"model.layers.9.mamba.conv1d.weight": "model.safetensors",
|
| 912 |
+
"model.layers.9.mamba.dt_bias": "model.safetensors",
|
| 913 |
+
"model.layers.9.mamba.in_proj.biases": "model.safetensors",
|
| 914 |
+
"model.layers.9.mamba.in_proj.scales": "model.safetensors",
|
| 915 |
+
"model.layers.9.mamba.in_proj.weight": "model.safetensors",
|
| 916 |
+
"model.layers.9.mamba.norm.weight": "model.safetensors",
|
| 917 |
+
"model.layers.9.mamba.out_proj.biases": "model.safetensors",
|
| 918 |
+
"model.layers.9.mamba.out_proj.scales": "model.safetensors",
|
| 919 |
+
"model.layers.9.mamba.out_proj.weight": "model.safetensors",
|
| 920 |
+
"model.layers.9.mlp.down_proj.biases": "model.safetensors",
|
| 921 |
+
"model.layers.9.mlp.down_proj.scales": "model.safetensors",
|
| 922 |
+
"model.layers.9.mlp.down_proj.weight": "model.safetensors",
|
| 923 |
+
"model.layers.9.mlp.gate_proj.biases": "model.safetensors",
|
| 924 |
+
"model.layers.9.mlp.gate_proj.scales": "model.safetensors",
|
| 925 |
+
"model.layers.9.mlp.gate_proj.weight": "model.safetensors",
|
| 926 |
+
"model.layers.9.mlp.up_proj.biases": "model.safetensors",
|
| 927 |
+
"model.layers.9.mlp.up_proj.scales": "model.safetensors",
|
| 928 |
+
"model.layers.9.mlp.up_proj.weight": "model.safetensors",
|
| 929 |
+
"model.layers.9.post_attention_layernorm.weight": "model.safetensors",
|
| 930 |
+
"model.norm.weight": "model.safetensors"
|
| 931 |
+
}
|
| 932 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|end_of_text|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|end_of_text|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|pad|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<|unk|>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,783 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"100256": {
|
| 6 |
+
"content": "<|pad|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"100257": {
|
| 14 |
+
"content": "<|end_of_text|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"100258": {
|
| 22 |
+
"content": "<|fim_prefix|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": false
|
| 28 |
+
},
|
| 29 |
+
"100259": {
|
| 30 |
+
"content": "<|fim_middle|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": false
|
| 36 |
+
},
|
| 37 |
+
"100260": {
|
| 38 |
+
"content": "<|fim_suffix|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": false
|
| 44 |
+
},
|
| 45 |
+
"100261": {
|
| 46 |
+
"content": "<|fim_pad|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": false
|
| 52 |
+
},
|
| 53 |
+
"100262": {
|
| 54 |
+
"content": "<|filename|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": false
|
| 60 |
+
},
|
| 61 |
+
"100263": {
|
| 62 |
+
"content": "<|reponame|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": false
|
| 68 |
+
},
|
| 69 |
+
"100264": {
|
| 70 |
+
"content": "<|start_of_role|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"100265": {
|
| 78 |
+
"content": "<|end_of_role|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"100266": {
|
| 86 |
+
"content": "<|unused_1|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"100267": {
|
| 94 |
+
"content": "<|start_of_plugin|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"100268": {
|
| 102 |
+
"content": "<|end_of_plugin|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"100269": {
|
| 110 |
+
"content": "<|unk|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"100270": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"100271": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"100272": {
|
| 134 |
+
"content": "<tool_response>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"100273": {
|
| 142 |
+
"content": "</tool_response>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"100274": {
|
| 150 |
+
"content": "<think>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"100275": {
|
| 158 |
+
"content": "</think>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"100276": {
|
| 166 |
+
"content": "<think_on>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": true
|
| 172 |
+
},
|
| 173 |
+
"100277": {
|
| 174 |
+
"content": "<think_off>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": true
|
| 180 |
+
},
|
| 181 |
+
"100278": {
|
| 182 |
+
"content": "<schema>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": true
|
| 188 |
+
},
|
| 189 |
+
"100279": {
|
| 190 |
+
"content": "</schema>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": true
|
| 196 |
+
},
|
| 197 |
+
"100280": {
|
| 198 |
+
"content": "<tools>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": true
|
| 204 |
+
},
|
| 205 |
+
"100281": {
|
| 206 |
+
"content": "</tools>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": true
|
| 212 |
+
},
|
| 213 |
+
"100282": {
|
| 214 |
+
"content": "<documents>",
|
| 215 |
+
"lstrip": false,
|
| 216 |
+
"normalized": false,
|
| 217 |
+
"rstrip": false,
|
| 218 |
+
"single_word": false,
|
| 219 |
+
"special": true
|
| 220 |
+
},
|
| 221 |
+
"100283": {
|
| 222 |
+
"content": "</documents>",
|
| 223 |
+
"lstrip": false,
|
| 224 |
+
"normalized": false,
|
| 225 |
+
"rstrip": false,
|
| 226 |
+
"single_word": false,
|
| 227 |
+
"special": true
|
| 228 |
+
},
|
| 229 |
+
"100284": {
|
| 230 |
+
"content": "<|unused_15|>",
|
| 231 |
+
"lstrip": false,
|
| 232 |
+
"normalized": false,
|
| 233 |
+
"rstrip": false,
|
| 234 |
+
"single_word": false,
|
| 235 |
+
"special": true
|
| 236 |
+
},
|
| 237 |
+
"100285": {
|
| 238 |
+
"content": "<|unused_16|>",
|
| 239 |
+
"lstrip": false,
|
| 240 |
+
"normalized": false,
|
| 241 |
+
"rstrip": false,
|
| 242 |
+
"single_word": false,
|
| 243 |
+
"special": true
|
| 244 |
+
},
|
| 245 |
+
"100286": {
|
| 246 |
+
"content": "<|unused_17|>",
|
| 247 |
+
"lstrip": false,
|
| 248 |
+
"normalized": false,
|
| 249 |
+
"rstrip": false,
|
| 250 |
+
"single_word": false,
|
| 251 |
+
"special": true
|
| 252 |
+
},
|
| 253 |
+
"100287": {
|
| 254 |
+
"content": "<|unused_18|>",
|
| 255 |
+
"lstrip": false,
|
| 256 |
+
"normalized": false,
|
| 257 |
+
"rstrip": false,
|
| 258 |
+
"single_word": false,
|
| 259 |
+
"special": true
|
| 260 |
+
},
|
| 261 |
+
"100288": {
|
| 262 |
+
"content": "<|unused_19|>",
|
| 263 |
+
"lstrip": false,
|
| 264 |
+
"normalized": false,
|
| 265 |
+
"rstrip": false,
|
| 266 |
+
"single_word": false,
|
| 267 |
+
"special": true
|
| 268 |
+
},
|
| 269 |
+
"100289": {
|
| 270 |
+
"content": "<|unused_20|>",
|
| 271 |
+
"lstrip": false,
|
| 272 |
+
"normalized": false,
|
| 273 |
+
"rstrip": false,
|
| 274 |
+
"single_word": false,
|
| 275 |
+
"special": true
|
| 276 |
+
},
|
| 277 |
+
"100290": {
|
| 278 |
+
"content": "<|unused_21|>",
|
| 279 |
+
"lstrip": false,
|
| 280 |
+
"normalized": false,
|
| 281 |
+
"rstrip": false,
|
| 282 |
+
"single_word": false,
|
| 283 |
+
"special": true
|
| 284 |
+
},
|
| 285 |
+
"100291": {
|
| 286 |
+
"content": "<|unused_22|>",
|
| 287 |
+
"lstrip": false,
|
| 288 |
+
"normalized": false,
|
| 289 |
+
"rstrip": false,
|
| 290 |
+
"single_word": false,
|
| 291 |
+
"special": true
|
| 292 |
+
},
|
| 293 |
+
"100292": {
|
| 294 |
+
"content": "<|unused_23|>",
|
| 295 |
+
"lstrip": false,
|
| 296 |
+
"normalized": false,
|
| 297 |
+
"rstrip": false,
|
| 298 |
+
"single_word": false,
|
| 299 |
+
"special": true
|
| 300 |
+
},
|
| 301 |
+
"100293": {
|
| 302 |
+
"content": "<|unused_24|>",
|
| 303 |
+
"lstrip": false,
|
| 304 |
+
"normalized": false,
|
| 305 |
+
"rstrip": false,
|
| 306 |
+
"single_word": false,
|
| 307 |
+
"special": true
|
| 308 |
+
},
|
| 309 |
+
"100294": {
|
| 310 |
+
"content": "<|unused_25|>",
|
| 311 |
+
"lstrip": false,
|
| 312 |
+
"normalized": false,
|
| 313 |
+
"rstrip": false,
|
| 314 |
+
"single_word": false,
|
| 315 |
+
"special": true
|
| 316 |
+
},
|
| 317 |
+
"100295": {
|
| 318 |
+
"content": "<|unused_26|>",
|
| 319 |
+
"lstrip": false,
|
| 320 |
+
"normalized": false,
|
| 321 |
+
"rstrip": false,
|
| 322 |
+
"single_word": false,
|
| 323 |
+
"special": true
|
| 324 |
+
},
|
| 325 |
+
"100296": {
|
| 326 |
+
"content": "<|unused_27|>",
|
| 327 |
+
"lstrip": false,
|
| 328 |
+
"normalized": false,
|
| 329 |
+
"rstrip": false,
|
| 330 |
+
"single_word": false,
|
| 331 |
+
"special": true
|
| 332 |
+
},
|
| 333 |
+
"100297": {
|
| 334 |
+
"content": "<|unused_28|>",
|
| 335 |
+
"lstrip": false,
|
| 336 |
+
"normalized": false,
|
| 337 |
+
"rstrip": false,
|
| 338 |
+
"single_word": false,
|
| 339 |
+
"special": true
|
| 340 |
+
},
|
| 341 |
+
"100298": {
|
| 342 |
+
"content": "<|unused_29|>",
|
| 343 |
+
"lstrip": false,
|
| 344 |
+
"normalized": false,
|
| 345 |
+
"rstrip": false,
|
| 346 |
+
"single_word": false,
|
| 347 |
+
"special": true
|
| 348 |
+
},
|
| 349 |
+
"100299": {
|
| 350 |
+
"content": "<|unused_30|>",
|
| 351 |
+
"lstrip": false,
|
| 352 |
+
"normalized": false,
|
| 353 |
+
"rstrip": false,
|
| 354 |
+
"single_word": false,
|
| 355 |
+
"special": true
|
| 356 |
+
},
|
| 357 |
+
"100300": {
|
| 358 |
+
"content": "<|unused_31|>",
|
| 359 |
+
"lstrip": false,
|
| 360 |
+
"normalized": false,
|
| 361 |
+
"rstrip": false,
|
| 362 |
+
"single_word": false,
|
| 363 |
+
"special": true
|
| 364 |
+
},
|
| 365 |
+
"100301": {
|
| 366 |
+
"content": "<|unused_32|>",
|
| 367 |
+
"lstrip": false,
|
| 368 |
+
"normalized": false,
|
| 369 |
+
"rstrip": false,
|
| 370 |
+
"single_word": false,
|
| 371 |
+
"special": true
|
| 372 |
+
},
|
| 373 |
+
"100302": {
|
| 374 |
+
"content": "<|unused_33|>",
|
| 375 |
+
"lstrip": false,
|
| 376 |
+
"normalized": false,
|
| 377 |
+
"rstrip": false,
|
| 378 |
+
"single_word": false,
|
| 379 |
+
"special": true
|
| 380 |
+
},
|
| 381 |
+
"100303": {
|
| 382 |
+
"content": "<|unused_34|>",
|
| 383 |
+
"lstrip": false,
|
| 384 |
+
"normalized": false,
|
| 385 |
+
"rstrip": false,
|
| 386 |
+
"single_word": false,
|
| 387 |
+
"special": true
|
| 388 |
+
},
|
| 389 |
+
"100304": {
|
| 390 |
+
"content": "<|unused_35|>",
|
| 391 |
+
"lstrip": false,
|
| 392 |
+
"normalized": false,
|
| 393 |
+
"rstrip": false,
|
| 394 |
+
"single_word": false,
|
| 395 |
+
"special": true
|
| 396 |
+
},
|
| 397 |
+
"100305": {
|
| 398 |
+
"content": "<|unused_36|>",
|
| 399 |
+
"lstrip": false,
|
| 400 |
+
"normalized": false,
|
| 401 |
+
"rstrip": false,
|
| 402 |
+
"single_word": false,
|
| 403 |
+
"special": true
|
| 404 |
+
},
|
| 405 |
+
"100306": {
|
| 406 |
+
"content": "<|unused_37|>",
|
| 407 |
+
"lstrip": false,
|
| 408 |
+
"normalized": false,
|
| 409 |
+
"rstrip": false,
|
| 410 |
+
"single_word": false,
|
| 411 |
+
"special": true
|
| 412 |
+
},
|
| 413 |
+
"100307": {
|
| 414 |
+
"content": "<|unused_38|>",
|
| 415 |
+
"lstrip": false,
|
| 416 |
+
"normalized": false,
|
| 417 |
+
"rstrip": false,
|
| 418 |
+
"single_word": false,
|
| 419 |
+
"special": true
|
| 420 |
+
},
|
| 421 |
+
"100308": {
|
| 422 |
+
"content": "<|unused_39|>",
|
| 423 |
+
"lstrip": false,
|
| 424 |
+
"normalized": false,
|
| 425 |
+
"rstrip": false,
|
| 426 |
+
"single_word": false,
|
| 427 |
+
"special": true
|
| 428 |
+
},
|
| 429 |
+
"100309": {
|
| 430 |
+
"content": "<|unused_40|>",
|
| 431 |
+
"lstrip": false,
|
| 432 |
+
"normalized": false,
|
| 433 |
+
"rstrip": false,
|
| 434 |
+
"single_word": false,
|
| 435 |
+
"special": true
|
| 436 |
+
},
|
| 437 |
+
"100310": {
|
| 438 |
+
"content": "<|unused_41|>",
|
| 439 |
+
"lstrip": false,
|
| 440 |
+
"normalized": false,
|
| 441 |
+
"rstrip": false,
|
| 442 |
+
"single_word": false,
|
| 443 |
+
"special": true
|
| 444 |
+
},
|
| 445 |
+
"100311": {
|
| 446 |
+
"content": "<|unused_42|>",
|
| 447 |
+
"lstrip": false,
|
| 448 |
+
"normalized": false,
|
| 449 |
+
"rstrip": false,
|
| 450 |
+
"single_word": false,
|
| 451 |
+
"special": true
|
| 452 |
+
},
|
| 453 |
+
"100312": {
|
| 454 |
+
"content": "<|unused_43|>",
|
| 455 |
+
"lstrip": false,
|
| 456 |
+
"normalized": false,
|
| 457 |
+
"rstrip": false,
|
| 458 |
+
"single_word": false,
|
| 459 |
+
"special": true
|
| 460 |
+
},
|
| 461 |
+
"100313": {
|
| 462 |
+
"content": "<|unused_44|>",
|
| 463 |
+
"lstrip": false,
|
| 464 |
+
"normalized": false,
|
| 465 |
+
"rstrip": false,
|
| 466 |
+
"single_word": false,
|
| 467 |
+
"special": true
|
| 468 |
+
},
|
| 469 |
+
"100314": {
|
| 470 |
+
"content": "<|unused_45|>",
|
| 471 |
+
"lstrip": false,
|
| 472 |
+
"normalized": false,
|
| 473 |
+
"rstrip": false,
|
| 474 |
+
"single_word": false,
|
| 475 |
+
"special": true
|
| 476 |
+
},
|
| 477 |
+
"100315": {
|
| 478 |
+
"content": "<|unused_46|>",
|
| 479 |
+
"lstrip": false,
|
| 480 |
+
"normalized": false,
|
| 481 |
+
"rstrip": false,
|
| 482 |
+
"single_word": false,
|
| 483 |
+
"special": true
|
| 484 |
+
},
|
| 485 |
+
"100316": {
|
| 486 |
+
"content": "<|unused_47|>",
|
| 487 |
+
"lstrip": false,
|
| 488 |
+
"normalized": false,
|
| 489 |
+
"rstrip": false,
|
| 490 |
+
"single_word": false,
|
| 491 |
+
"special": true
|
| 492 |
+
},
|
| 493 |
+
"100317": {
|
| 494 |
+
"content": "<|unused_48|>",
|
| 495 |
+
"lstrip": false,
|
| 496 |
+
"normalized": false,
|
| 497 |
+
"rstrip": false,
|
| 498 |
+
"single_word": false,
|
| 499 |
+
"special": true
|
| 500 |
+
},
|
| 501 |
+
"100318": {
|
| 502 |
+
"content": "<|unused_49|>",
|
| 503 |
+
"lstrip": false,
|
| 504 |
+
"normalized": false,
|
| 505 |
+
"rstrip": false,
|
| 506 |
+
"single_word": false,
|
| 507 |
+
"special": true
|
| 508 |
+
},
|
| 509 |
+
"100319": {
|
| 510 |
+
"content": "<|unused_50|>",
|
| 511 |
+
"lstrip": false,
|
| 512 |
+
"normalized": false,
|
| 513 |
+
"rstrip": false,
|
| 514 |
+
"single_word": false,
|
| 515 |
+
"special": true
|
| 516 |
+
},
|
| 517 |
+
"100320": {
|
| 518 |
+
"content": "<|unused_51|>",
|
| 519 |
+
"lstrip": false,
|
| 520 |
+
"normalized": false,
|
| 521 |
+
"rstrip": false,
|
| 522 |
+
"single_word": false,
|
| 523 |
+
"special": true
|
| 524 |
+
},
|
| 525 |
+
"100321": {
|
| 526 |
+
"content": "<|unused_52|>",
|
| 527 |
+
"lstrip": false,
|
| 528 |
+
"normalized": false,
|
| 529 |
+
"rstrip": false,
|
| 530 |
+
"single_word": false,
|
| 531 |
+
"special": true
|
| 532 |
+
},
|
| 533 |
+
"100322": {
|
| 534 |
+
"content": "<|unused_53|>",
|
| 535 |
+
"lstrip": false,
|
| 536 |
+
"normalized": false,
|
| 537 |
+
"rstrip": false,
|
| 538 |
+
"single_word": false,
|
| 539 |
+
"special": true
|
| 540 |
+
},
|
| 541 |
+
"100323": {
|
| 542 |
+
"content": "<|unused_54|>",
|
| 543 |
+
"lstrip": false,
|
| 544 |
+
"normalized": false,
|
| 545 |
+
"rstrip": false,
|
| 546 |
+
"single_word": false,
|
| 547 |
+
"special": true
|
| 548 |
+
},
|
| 549 |
+
"100324": {
|
| 550 |
+
"content": "<|unused_55|>",
|
| 551 |
+
"lstrip": false,
|
| 552 |
+
"normalized": false,
|
| 553 |
+
"rstrip": false,
|
| 554 |
+
"single_word": false,
|
| 555 |
+
"special": true
|
| 556 |
+
},
|
| 557 |
+
"100325": {
|
| 558 |
+
"content": "<|unused_56|>",
|
| 559 |
+
"lstrip": false,
|
| 560 |
+
"normalized": false,
|
| 561 |
+
"rstrip": false,
|
| 562 |
+
"single_word": false,
|
| 563 |
+
"special": true
|
| 564 |
+
},
|
| 565 |
+
"100326": {
|
| 566 |
+
"content": "<|unused_57|>",
|
| 567 |
+
"lstrip": false,
|
| 568 |
+
"normalized": false,
|
| 569 |
+
"rstrip": false,
|
| 570 |
+
"single_word": false,
|
| 571 |
+
"special": true
|
| 572 |
+
},
|
| 573 |
+
"100327": {
|
| 574 |
+
"content": "<|unused_58|>",
|
| 575 |
+
"lstrip": false,
|
| 576 |
+
"normalized": false,
|
| 577 |
+
"rstrip": false,
|
| 578 |
+
"single_word": false,
|
| 579 |
+
"special": true
|
| 580 |
+
},
|
| 581 |
+
"100328": {
|
| 582 |
+
"content": "<|unused_59|>",
|
| 583 |
+
"lstrip": false,
|
| 584 |
+
"normalized": false,
|
| 585 |
+
"rstrip": false,
|
| 586 |
+
"single_word": false,
|
| 587 |
+
"special": true
|
| 588 |
+
},
|
| 589 |
+
"100329": {
|
| 590 |
+
"content": "<|unused_60|>",
|
| 591 |
+
"lstrip": false,
|
| 592 |
+
"normalized": false,
|
| 593 |
+
"rstrip": false,
|
| 594 |
+
"single_word": false,
|
| 595 |
+
"special": true
|
| 596 |
+
},
|
| 597 |
+
"100330": {
|
| 598 |
+
"content": "<|unused_61|>",
|
| 599 |
+
"lstrip": false,
|
| 600 |
+
"normalized": false,
|
| 601 |
+
"rstrip": false,
|
| 602 |
+
"single_word": false,
|
| 603 |
+
"special": true
|
| 604 |
+
},
|
| 605 |
+
"100331": {
|
| 606 |
+
"content": "<|unused_62|>",
|
| 607 |
+
"lstrip": false,
|
| 608 |
+
"normalized": false,
|
| 609 |
+
"rstrip": false,
|
| 610 |
+
"single_word": false,
|
| 611 |
+
"special": true
|
| 612 |
+
},
|
| 613 |
+
"100332": {
|
| 614 |
+
"content": "<|unused_63|>",
|
| 615 |
+
"lstrip": false,
|
| 616 |
+
"normalized": false,
|
| 617 |
+
"rstrip": false,
|
| 618 |
+
"single_word": false,
|
| 619 |
+
"special": true
|
| 620 |
+
},
|
| 621 |
+
"100333": {
|
| 622 |
+
"content": "<|unused_64|>",
|
| 623 |
+
"lstrip": false,
|
| 624 |
+
"normalized": false,
|
| 625 |
+
"rstrip": false,
|
| 626 |
+
"single_word": false,
|
| 627 |
+
"special": true
|
| 628 |
+
},
|
| 629 |
+
"100334": {
|
| 630 |
+
"content": "<|unused_65|>",
|
| 631 |
+
"lstrip": false,
|
| 632 |
+
"normalized": false,
|
| 633 |
+
"rstrip": false,
|
| 634 |
+
"single_word": false,
|
| 635 |
+
"special": true
|
| 636 |
+
},
|
| 637 |
+
"100335": {
|
| 638 |
+
"content": "<|unused_66|>",
|
| 639 |
+
"lstrip": false,
|
| 640 |
+
"normalized": false,
|
| 641 |
+
"rstrip": false,
|
| 642 |
+
"single_word": false,
|
| 643 |
+
"special": true
|
| 644 |
+
},
|
| 645 |
+
"100336": {
|
| 646 |
+
"content": "<|unused_67|>",
|
| 647 |
+
"lstrip": false,
|
| 648 |
+
"normalized": false,
|
| 649 |
+
"rstrip": false,
|
| 650 |
+
"single_word": false,
|
| 651 |
+
"special": true
|
| 652 |
+
},
|
| 653 |
+
"100337": {
|
| 654 |
+
"content": "<|unused_68|>",
|
| 655 |
+
"lstrip": false,
|
| 656 |
+
"normalized": false,
|
| 657 |
+
"rstrip": false,
|
| 658 |
+
"single_word": false,
|
| 659 |
+
"special": true
|
| 660 |
+
},
|
| 661 |
+
"100338": {
|
| 662 |
+
"content": "<|unused_69|>",
|
| 663 |
+
"lstrip": false,
|
| 664 |
+
"normalized": false,
|
| 665 |
+
"rstrip": false,
|
| 666 |
+
"single_word": false,
|
| 667 |
+
"special": true
|
| 668 |
+
},
|
| 669 |
+
"100339": {
|
| 670 |
+
"content": "<|unused_70|>",
|
| 671 |
+
"lstrip": false,
|
| 672 |
+
"normalized": false,
|
| 673 |
+
"rstrip": false,
|
| 674 |
+
"single_word": false,
|
| 675 |
+
"special": true
|
| 676 |
+
},
|
| 677 |
+
"100340": {
|
| 678 |
+
"content": "<|unused_71|>",
|
| 679 |
+
"lstrip": false,
|
| 680 |
+
"normalized": false,
|
| 681 |
+
"rstrip": false,
|
| 682 |
+
"single_word": false,
|
| 683 |
+
"special": true
|
| 684 |
+
},
|
| 685 |
+
"100341": {
|
| 686 |
+
"content": "<|unused_72|>",
|
| 687 |
+
"lstrip": false,
|
| 688 |
+
"normalized": false,
|
| 689 |
+
"rstrip": false,
|
| 690 |
+
"single_word": false,
|
| 691 |
+
"special": true
|
| 692 |
+
},
|
| 693 |
+
"100342": {
|
| 694 |
+
"content": "<|unused_73|>",
|
| 695 |
+
"lstrip": false,
|
| 696 |
+
"normalized": false,
|
| 697 |
+
"rstrip": false,
|
| 698 |
+
"single_word": false,
|
| 699 |
+
"special": true
|
| 700 |
+
},
|
| 701 |
+
"100343": {
|
| 702 |
+
"content": "<|unused_74|>",
|
| 703 |
+
"lstrip": false,
|
| 704 |
+
"normalized": false,
|
| 705 |
+
"rstrip": false,
|
| 706 |
+
"single_word": false,
|
| 707 |
+
"special": true
|
| 708 |
+
},
|
| 709 |
+
"100344": {
|
| 710 |
+
"content": "<|unused_75|>",
|
| 711 |
+
"lstrip": false,
|
| 712 |
+
"normalized": false,
|
| 713 |
+
"rstrip": false,
|
| 714 |
+
"single_word": false,
|
| 715 |
+
"special": true
|
| 716 |
+
},
|
| 717 |
+
"100345": {
|
| 718 |
+
"content": "<|unused_76|>",
|
| 719 |
+
"lstrip": false,
|
| 720 |
+
"normalized": false,
|
| 721 |
+
"rstrip": false,
|
| 722 |
+
"single_word": false,
|
| 723 |
+
"special": true
|
| 724 |
+
},
|
| 725 |
+
"100346": {
|
| 726 |
+
"content": "<|unused_77|>",
|
| 727 |
+
"lstrip": false,
|
| 728 |
+
"normalized": false,
|
| 729 |
+
"rstrip": false,
|
| 730 |
+
"single_word": false,
|
| 731 |
+
"special": true
|
| 732 |
+
},
|
| 733 |
+
"100347": {
|
| 734 |
+
"content": "<|unused_78|>",
|
| 735 |
+
"lstrip": false,
|
| 736 |
+
"normalized": false,
|
| 737 |
+
"rstrip": false,
|
| 738 |
+
"single_word": false,
|
| 739 |
+
"special": true
|
| 740 |
+
},
|
| 741 |
+
"100348": {
|
| 742 |
+
"content": "<|unused_79|>",
|
| 743 |
+
"lstrip": false,
|
| 744 |
+
"normalized": false,
|
| 745 |
+
"rstrip": false,
|
| 746 |
+
"single_word": false,
|
| 747 |
+
"special": true
|
| 748 |
+
},
|
| 749 |
+
"100349": {
|
| 750 |
+
"content": "<|unused_80|>",
|
| 751 |
+
"lstrip": false,
|
| 752 |
+
"normalized": false,
|
| 753 |
+
"rstrip": false,
|
| 754 |
+
"single_word": false,
|
| 755 |
+
"special": true
|
| 756 |
+
},
|
| 757 |
+
"100350": {
|
| 758 |
+
"content": "<|unused_81|>",
|
| 759 |
+
"lstrip": false,
|
| 760 |
+
"normalized": false,
|
| 761 |
+
"rstrip": false,
|
| 762 |
+
"single_word": false,
|
| 763 |
+
"special": true
|
| 764 |
+
},
|
| 765 |
+
"100351": {
|
| 766 |
+
"content": "<|unused_82|>",
|
| 767 |
+
"lstrip": false,
|
| 768 |
+
"normalized": false,
|
| 769 |
+
"rstrip": false,
|
| 770 |
+
"single_word": false,
|
| 771 |
+
"special": true
|
| 772 |
+
}
|
| 773 |
+
},
|
| 774 |
+
"bos_token": "<|end_of_text|>",
|
| 775 |
+
"clean_up_tokenization_spaces": false,
|
| 776 |
+
"eos_token": "<|end_of_text|>",
|
| 777 |
+
"extra_special_tokens": {},
|
| 778 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 779 |
+
"pad_token": "<|pad|>",
|
| 780 |
+
"padding_side": "left",
|
| 781 |
+
"tokenizer_class": "GPT2Tokenizer",
|
| 782 |
+
"unk_token": "<|unk|>"
|
| 783 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|