danielhanchen commited on
Commit
0d1c611
·
verified ·
1 Parent(s): cde28b2

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - falcon-h1
5
+ - unsloth
6
+ license: other
7
+ license_name: falcon-llm-license
8
+ license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
9
+ base_model:
10
+ - tiiuae/Falcon-H1-3B-Instruct
11
+ inference: true
12
+ ---
13
+ > [!NOTE]
14
+ > Includes our **chat template fixes**! <br> For `llama.cpp`, use `--jinja`
15
+ >
16
+
17
+ <div>
18
+ <p style="margin-top: 0;margin-bottom: 0;">
19
+ <em><a href="https://docs.unsloth.ai/basics/unsloth-dynamic-v2.0-gguf">Unsloth Dynamic 2.0</a> achieves superior accuracy & outperforms other leading quants.</em>
20
+ </p>
21
+ <div style="display: flex; gap: 5px; align-items: center; ">
22
+ <a href="https://github.com/unslothai/unsloth/">
23
+ <img src="https://github.com/unslothai/unsloth/raw/main/images/unsloth%20new%20logo.png" width="133">
24
+ </a>
25
+ <a href="https://discord.gg/unsloth">
26
+ <img src="https://github.com/unslothai/unsloth/raw/main/images/Discord%20button.png" width="173">
27
+ </a>
28
+ <a href="https://docs.unsloth.ai/">
29
+ <img src="https://raw.githubusercontent.com/unslothai/unsloth/refs/heads/main/images/documentation%20green%20button.png" width="143">
30
+ </a>
31
+ </div>
32
+ </div>
33
+
34
+
35
+ <img src="https://huggingface.co/datasets/tiiuae/documentation-images/resolve/main/falcon_mamba/falcon-h1-logo.png" alt="drawing" width="800"/>
36
+
37
+ # Table of Contents
38
+
39
+ 0. [TL;DR](#TL;DR)
40
+ 1. [Model Details](#model-details)
41
+ 2. [Training Details](#training-details)
42
+ 3. [Usage](#usage)
43
+ 4. [Evaluation](#evaluation)
44
+ 5. [Citation](#citation)
45
+
46
+ # TL;DR
47
+
48
+ # Model Details
49
+
50
+ ## Model Description
51
+
52
+ - **Developed by:** [https://www.tii.ae](https://www.tii.ae)
53
+ - **Model type:** Causal decoder-only
54
+ - **Architecture:** Hybrid Transformers + Mamba architecture
55
+ - **Language(s) (NLP):** English, Multilingual
56
+ - **License:** Falcon-LLM License
57
+
58
+ # Training details
59
+
60
+ For more details about the training protocol of this model, please refer to the [Falcon-H1 technical blogpost](https://falcon-lm.github.io/blog/falcon-h1/).
61
+
62
+ # Usage
63
+
64
+ Currently to use this model you can either rely on Hugging Face `transformers`, `vLLM` or `llama.cpp` library.
65
+
66
+ ## Inference
67
+
68
+ Make sure to install the latest version of `transformers` or `vllm`, eventually install these packages from source:
69
+
70
+ ```bash
71
+ pip install git+https://github.com/huggingface/transformers.git
72
+ ```
73
+
74
+ For vLLM, make sure to install `vllm>=0.9.0`:
75
+
76
+ ```bash
77
+ pip install "vllm>=0.9.0"
78
+ ```
79
+
80
+ ### 🤗 transformers
81
+
82
+ Refer to the snippet below to run H1 models using 🤗 transformers:
83
+
84
+ ```python
85
+ import torch
86
+ from transformers import AutoModelForCausalLM, AutoTokenizer
87
+
88
+ model_id = "tiiuae/Falcon-H1-1B-Base"
89
+
90
+ model = AutoModelForCausalLM.from_pretrained(
91
+ model_id,
92
+ torch_dtype=torch.bfloat16,
93
+ device_map="auto"
94
+ )
95
+
96
+ # Perform text generation
97
+ ```
98
+
99
+ ### vLLM
100
+
101
+ For vLLM, simply start a server by executing the command below:
102
+
103
+ ```
104
+ # pip install vllm
105
+ vllm serve tiiuae/Falcon-H1-1B-Instruct --tensor-parallel-size 2 --data-parallel-size 1
106
+ ```
107
+
108
+ ### `llama.cpp`
109
+
110
+ You can find all GGUF files under [our official collection](https://huggingface.co/collections/tiiuae/falcon-h1-6819f2795bc406da60fab8df)
111
+
112
+ # Evaluation
113
+
114
+ Falcon-H1 series perform very well on a variety of tasks, including reasoning tasks.
115
+
116
+ | Tasks | Falcon-H1-3B | Qwen3-4B | Qwen2.5-3B | Gemma3-4B | Llama3.2-3B | Falcon3-3B |
117
+ | --- | --- | --- | --- | --- | --- | --- |
118
+ | **General** | | | | | |
119
+ | BBH | **53.69** | 51.07 | 46.55 | 50.01 | 41.47 | 45.02 |
120
+ | ARC-C | **49.57** | 37.71 | 43.77 | 44.88 | 44.88 | 48.21 |
121
+ | TruthfulQA | 53.19 | 51.75 | **58.11** | 51.68 | 50.27 | 50.06 |
122
+ | HellaSwag | **69.85** | 55.31 | 64.21 | 47.68 | 63.74 | 64.24 |
123
+ | MMLU | **68.3** | 67.01 | 65.09 | 59.53 | 61.74 | 56.76 |
124
+ | **Math** | | | | | |
125
+ | GSM8k | **84.76** | 80.44 | 57.54 | 77.41 | 77.26 | 74.68 |
126
+ | MATH-500 | 74.2 | **85.0** | 64.2 | 76.4 | 41.2 | 54.2 |
127
+ | AMC-23 | 55.63 | **66.88** | 39.84 | 48.12 | 22.66 | 29.69 |
128
+ | AIME-24 | 11.88 | **22.29** | 6.25 | 6.67 | 11.67 | 3.96 |
129
+ | AIME-25 | 13.33 | **18.96** | 3.96 | 13.33 | 0.21 | 2.29 |
130
+ | **Science** | | | | | |
131
+ | GPQA | **33.89** | 28.02 | 28.69 | 29.19 | 28.94 | 28.69 |
132
+ | GPQA_Diamond | 38.72 | **40.74** | 35.69 | 28.62 | 29.97 | 29.29 |
133
+ | MMLU-Pro | **43.69** | 29.75 | 32.76 | 29.71 | 27.44 | 29.71 |
134
+ | MMLU-stem | **69.93** | 67.46 | 59.78 | 52.17 | 51.92 | 56.11 |
135
+ | **Code** | | | | | |
136
+ | HumanEval | 76.83 | **84.15** | 73.78 | 67.07 | 54.27 | 52.44 |
137
+ | HumanEval+ | 70.73 | **76.83** | 68.29 | 61.59 | 50.0 | 45.73 |
138
+ | MBPP | **79.63** | 68.78 | 72.75 | 77.78 | 62.17 | 61.9 |
139
+ | MBPP+ | **67.46** | 59.79 | 60.85 | 66.93 | 50.53 | 55.29 |
140
+ | LiveCodeBench | 26.81 | **39.92** | 11.74 | 21.14 | 2.74 | 3.13 |
141
+ | CRUXEval | 56.25 | **69.63** | 43.26 | 52.13 | 17.75 | 44.38 |
142
+ | **Instruction Following** | | | | | |
143
+ | IFEval | **85.05** | 84.01 | 64.26 | 77.01 | 74.0 | 69.1 |
144
+ | Alpaca-Eval | 31.09 | 36.51 | 17.37 | **39.64** | 19.69 | 14.82 |
145
+ | MTBench | **8.72** | 8.45 | 7.79 | 8.24 | 7.96 | 7.79 |
146
+ | LiveBench | 36.86 | **51.34** | 27.32 | 36.7 | 26.37 | 26.01 |
147
+
148
+ You can check more in detail on our [our release blogpost](https://falcon-lm.github.io/blog/falcon-h1/), detailed benchmarks.
149
+
150
+ # Useful links
151
+
152
+ - View [our release blogpost](https://falcon-lm.github.io/blog/falcon-h1/).
153
+ - Feel free to join [our discord server](https://discord.gg/trwMYP9PYm) if you have any questions or to interact with our researchers and developers.
154
+
155
+ # Citation
156
+
157
+ If the Falcon-H1 family of models were helpful to your work, feel free to give us a cite.
158
+
159
+ ```
160
+ @misc{tiifalconh1,
161
+ title = {Falcon-H1: A Family of Hybrid-Head Language Models Redefining Efficiency and Performance},
162
+ url = {https://falcon-lm.github.io/blog/falcon-h1},
163
+ author = {Falcon-LLM Team},
164
+ month = {May},
165
+ year = {2025}
166
+ }
167
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{bos_token}}
2
+ {%- if tools %}
3
+ {{- '<|im_start|>system\n' }}
4
+ {%- if messages[0].role == 'system' %}
5
+ {{- messages[0].content + '\n\n' }}
6
+ {%- endif %}
7
+ {{- "You are a function calling AI model. You are provided with function signature within <tools> </tools> XML tags. You may call one or more functions to assist with the user query. Don't make assumptions about what values to plug into functions.\n<tools>\n" }}
8
+ {%- for tool in tools %}[{{- tool | tojson }}]{%- endfor %}
9
+ {{- "\n</tools>\nFor each function call, return a json object with function name and arguments within <tool_call> </tool_call> tags with the following schema:\n<tool_call>\n{'arguments': <args-dict>, 'name': <function-name>}\n</tool_call>\n" }}
10
+ {%- else %}
11
+ {%- if messages[0].role == 'system' %}
12
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
13
+ {%- endif %}
14
+ {%- endif %}{% for message in messages %}{%- if message.role != 'system' %}{{'<|im_start|>' + message['role'] + '
15
+ ' + message['content'] + '<|im_end|>' + '
16
+ '}}{%- endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant
17
+ ' }}{% endif %}
config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "FalconH1ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "attention_in_multiplier": 1.0,
8
+ "attention_out_multiplier": 0.15,
9
+ "attn_layer_indices": null,
10
+ "bos_token_id": 1,
11
+ "embedding_multiplier": 5.656854249492381,
12
+ "eos_token_id": 11,
13
+ "head_dim": 128,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 2560,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 6144,
18
+ "key_multiplier": 0.044194173824159216,
19
+ "lm_head_multiplier": 0.015625,
20
+ "mamba_chunk_size": 128,
21
+ "mamba_conv_bias": true,
22
+ "mamba_d_conv": 4,
23
+ "mamba_d_head": 128,
24
+ "mamba_d_ssm": 4096,
25
+ "mamba_d_state": 256,
26
+ "mamba_expand": 2,
27
+ "mamba_n_groups": 1,
28
+ "mamba_n_heads": 32,
29
+ "mamba_norm_before_gate": false,
30
+ "mamba_proj_bias": false,
31
+ "mamba_rms_norm": true,
32
+ "mamba_use_mlp": true,
33
+ "max_position_embeddings": 131072,
34
+ "mlp_bias": false,
35
+ "mlp_expansion_factor": 8,
36
+ "mlp_multipliers": [
37
+ 0.3535533905932738,
38
+ 0.078125
39
+ ],
40
+ "model_type": "falcon_h1",
41
+ "num_attention_heads": 10,
42
+ "num_hidden_layers": 32,
43
+ "num_key_value_heads": 2,
44
+ "num_logits_to_keep": 1,
45
+ "pad_token_id": 65536,
46
+ "projectors_bias": false,
47
+ "rms_norm_eps": 1e-05,
48
+ "rope_scaling": null,
49
+ "rope_theta": 100000000000.0,
50
+ "ssm_in_multiplier": 0.5,
51
+ "ssm_multipliers": [
52
+ 0.3535533905932738,
53
+ 0.25,
54
+ 0.1767766952966369,
55
+ 0.5,
56
+ 0.3535533905932738
57
+ ],
58
+ "ssm_out_multiplier": 0.08838834764831845,
59
+ "tie_word_embeddings": false,
60
+ "torch_dtype": "bfloat16",
61
+ "transformers_version": "4.53.1",
62
+ "unsloth_fixed": true,
63
+ "use_cache": true,
64
+ "vocab_size": 65537
65
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": [11, 228],
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.52.0.dev0"
7
+ }
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:977e5fada35522cebf1c2a046dcbd52fbe019f5c4ff77c49840d063aaf0cdbd6
3
+ size 4971004584
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca9b659bbd9be3b77b3d148e9933d3f3bcceceff565afd33a61861c56ddf7677
3
+ size 1327841504
model.safetensors.index.json ADDED
@@ -0,0 +1,554 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 6298784768
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00002-of-00002.safetensors",
7
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
8
+ "model.final_layernorm.weight": "model-00002-of-00002.safetensors",
9
+ "model.layers.0.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.mamba.A_log": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.mamba.D": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
16
+ "model.layers.0.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.mamba.dt_bias": "model-00001-of-00002.safetensors",
18
+ "model.layers.0.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.0.mamba.norm.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.0.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.0.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.1.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.1.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.1.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.1.mamba.A_log": "model-00001-of-00002.safetensors",
31
+ "model.layers.1.mamba.D": "model-00001-of-00002.safetensors",
32
+ "model.layers.1.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
33
+ "model.layers.1.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.1.mamba.dt_bias": "model-00001-of-00002.safetensors",
35
+ "model.layers.1.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.1.mamba.norm.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.1.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.1.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.10.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.10.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.10.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.10.mamba.A_log": "model-00001-of-00002.safetensors",
48
+ "model.layers.10.mamba.D": "model-00001-of-00002.safetensors",
49
+ "model.layers.10.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
50
+ "model.layers.10.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.10.mamba.dt_bias": "model-00001-of-00002.safetensors",
52
+ "model.layers.10.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.10.mamba.norm.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.10.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.10.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.11.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.11.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.11.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.11.mamba.A_log": "model-00001-of-00002.safetensors",
65
+ "model.layers.11.mamba.D": "model-00001-of-00002.safetensors",
66
+ "model.layers.11.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
67
+ "model.layers.11.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.11.mamba.dt_bias": "model-00001-of-00002.safetensors",
69
+ "model.layers.11.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.11.mamba.norm.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.11.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.11.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.12.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.12.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.12.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.12.mamba.A_log": "model-00001-of-00002.safetensors",
82
+ "model.layers.12.mamba.D": "model-00001-of-00002.safetensors",
83
+ "model.layers.12.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
84
+ "model.layers.12.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.12.mamba.dt_bias": "model-00001-of-00002.safetensors",
86
+ "model.layers.12.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.12.mamba.norm.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.12.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.12.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.13.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.13.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.13.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.13.mamba.A_log": "model-00001-of-00002.safetensors",
99
+ "model.layers.13.mamba.D": "model-00001-of-00002.safetensors",
100
+ "model.layers.13.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
101
+ "model.layers.13.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.13.mamba.dt_bias": "model-00001-of-00002.safetensors",
103
+ "model.layers.13.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.13.mamba.norm.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.13.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.13.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
109
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
110
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.14.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
112
+ "model.layers.14.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
113
+ "model.layers.14.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
114
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
115
+ "model.layers.14.mamba.A_log": "model-00001-of-00002.safetensors",
116
+ "model.layers.14.mamba.D": "model-00001-of-00002.safetensors",
117
+ "model.layers.14.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
118
+ "model.layers.14.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.14.mamba.dt_bias": "model-00001-of-00002.safetensors",
120
+ "model.layers.14.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.14.mamba.norm.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.14.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.14.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
125
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
126
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
127
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
128
+ "model.layers.15.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
129
+ "model.layers.15.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
130
+ "model.layers.15.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
131
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
132
+ "model.layers.15.mamba.A_log": "model-00001-of-00002.safetensors",
133
+ "model.layers.15.mamba.D": "model-00001-of-00002.safetensors",
134
+ "model.layers.15.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
135
+ "model.layers.15.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
136
+ "model.layers.15.mamba.dt_bias": "model-00001-of-00002.safetensors",
137
+ "model.layers.15.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
138
+ "model.layers.15.mamba.norm.weight": "model-00001-of-00002.safetensors",
139
+ "model.layers.15.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
140
+ "model.layers.15.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
141
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
142
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
143
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
144
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
145
+ "model.layers.16.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
146
+ "model.layers.16.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
147
+ "model.layers.16.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
148
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
149
+ "model.layers.16.mamba.A_log": "model-00001-of-00002.safetensors",
150
+ "model.layers.16.mamba.D": "model-00001-of-00002.safetensors",
151
+ "model.layers.16.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
152
+ "model.layers.16.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
153
+ "model.layers.16.mamba.dt_bias": "model-00001-of-00002.safetensors",
154
+ "model.layers.16.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
155
+ "model.layers.16.mamba.norm.weight": "model-00001-of-00002.safetensors",
156
+ "model.layers.16.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
157
+ "model.layers.16.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
158
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
160
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
161
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
162
+ "model.layers.17.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
163
+ "model.layers.17.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
164
+ "model.layers.17.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
165
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
166
+ "model.layers.17.mamba.A_log": "model-00001-of-00002.safetensors",
167
+ "model.layers.17.mamba.D": "model-00001-of-00002.safetensors",
168
+ "model.layers.17.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
169
+ "model.layers.17.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
170
+ "model.layers.17.mamba.dt_bias": "model-00001-of-00002.safetensors",
171
+ "model.layers.17.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
172
+ "model.layers.17.mamba.norm.weight": "model-00001-of-00002.safetensors",
173
+ "model.layers.17.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
174
+ "model.layers.17.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
175
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
176
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
177
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
178
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
179
+ "model.layers.18.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
180
+ "model.layers.18.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
181
+ "model.layers.18.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
182
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
183
+ "model.layers.18.mamba.A_log": "model-00001-of-00002.safetensors",
184
+ "model.layers.18.mamba.D": "model-00001-of-00002.safetensors",
185
+ "model.layers.18.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
186
+ "model.layers.18.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
187
+ "model.layers.18.mamba.dt_bias": "model-00001-of-00002.safetensors",
188
+ "model.layers.18.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
189
+ "model.layers.18.mamba.norm.weight": "model-00001-of-00002.safetensors",
190
+ "model.layers.18.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
191
+ "model.layers.18.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
192
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
193
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
194
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
195
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
196
+ "model.layers.19.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
197
+ "model.layers.19.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
198
+ "model.layers.19.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
199
+ "model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
200
+ "model.layers.19.mamba.A_log": "model-00001-of-00002.safetensors",
201
+ "model.layers.19.mamba.D": "model-00001-of-00002.safetensors",
202
+ "model.layers.19.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
203
+ "model.layers.19.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
204
+ "model.layers.19.mamba.dt_bias": "model-00001-of-00002.safetensors",
205
+ "model.layers.19.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
206
+ "model.layers.19.mamba.norm.weight": "model-00001-of-00002.safetensors",
207
+ "model.layers.19.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
208
+ "model.layers.19.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
209
+ "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
210
+ "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
211
+ "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
212
+ "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
213
+ "model.layers.2.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
214
+ "model.layers.2.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
215
+ "model.layers.2.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
216
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
217
+ "model.layers.2.mamba.A_log": "model-00001-of-00002.safetensors",
218
+ "model.layers.2.mamba.D": "model-00001-of-00002.safetensors",
219
+ "model.layers.2.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
220
+ "model.layers.2.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
221
+ "model.layers.2.mamba.dt_bias": "model-00001-of-00002.safetensors",
222
+ "model.layers.2.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
223
+ "model.layers.2.mamba.norm.weight": "model-00001-of-00002.safetensors",
224
+ "model.layers.2.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
225
+ "model.layers.2.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
226
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
227
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
228
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
229
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
230
+ "model.layers.20.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
231
+ "model.layers.20.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
232
+ "model.layers.20.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
233
+ "model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
234
+ "model.layers.20.mamba.A_log": "model-00001-of-00002.safetensors",
235
+ "model.layers.20.mamba.D": "model-00001-of-00002.safetensors",
236
+ "model.layers.20.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
237
+ "model.layers.20.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
238
+ "model.layers.20.mamba.dt_bias": "model-00001-of-00002.safetensors",
239
+ "model.layers.20.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
240
+ "model.layers.20.mamba.norm.weight": "model-00001-of-00002.safetensors",
241
+ "model.layers.20.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
242
+ "model.layers.20.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
243
+ "model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
244
+ "model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
245
+ "model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
246
+ "model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
247
+ "model.layers.21.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
248
+ "model.layers.21.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
249
+ "model.layers.21.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
250
+ "model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
251
+ "model.layers.21.mamba.A_log": "model-00001-of-00002.safetensors",
252
+ "model.layers.21.mamba.D": "model-00001-of-00002.safetensors",
253
+ "model.layers.21.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
254
+ "model.layers.21.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
255
+ "model.layers.21.mamba.dt_bias": "model-00001-of-00002.safetensors",
256
+ "model.layers.21.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
257
+ "model.layers.21.mamba.norm.weight": "model-00001-of-00002.safetensors",
258
+ "model.layers.21.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
259
+ "model.layers.21.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
260
+ "model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
261
+ "model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
262
+ "model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
263
+ "model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
264
+ "model.layers.22.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
265
+ "model.layers.22.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
266
+ "model.layers.22.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
267
+ "model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
268
+ "model.layers.22.mamba.A_log": "model-00001-of-00002.safetensors",
269
+ "model.layers.22.mamba.D": "model-00001-of-00002.safetensors",
270
+ "model.layers.22.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
271
+ "model.layers.22.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
272
+ "model.layers.22.mamba.dt_bias": "model-00001-of-00002.safetensors",
273
+ "model.layers.22.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
274
+ "model.layers.22.mamba.norm.weight": "model-00001-of-00002.safetensors",
275
+ "model.layers.22.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
276
+ "model.layers.22.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
277
+ "model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
278
+ "model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
279
+ "model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
280
+ "model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
281
+ "model.layers.23.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
282
+ "model.layers.23.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
283
+ "model.layers.23.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
284
+ "model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
285
+ "model.layers.23.mamba.A_log": "model-00001-of-00002.safetensors",
286
+ "model.layers.23.mamba.D": "model-00001-of-00002.safetensors",
287
+ "model.layers.23.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
288
+ "model.layers.23.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
289
+ "model.layers.23.mamba.dt_bias": "model-00001-of-00002.safetensors",
290
+ "model.layers.23.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
291
+ "model.layers.23.mamba.norm.weight": "model-00001-of-00002.safetensors",
292
+ "model.layers.23.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
293
+ "model.layers.23.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
294
+ "model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
295
+ "model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
296
+ "model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
297
+ "model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
298
+ "model.layers.24.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
299
+ "model.layers.24.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
300
+ "model.layers.24.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
301
+ "model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
302
+ "model.layers.24.mamba.A_log": "model-00001-of-00002.safetensors",
303
+ "model.layers.24.mamba.D": "model-00001-of-00002.safetensors",
304
+ "model.layers.24.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
305
+ "model.layers.24.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
306
+ "model.layers.24.mamba.dt_bias": "model-00001-of-00002.safetensors",
307
+ "model.layers.24.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
308
+ "model.layers.24.mamba.norm.weight": "model-00001-of-00002.safetensors",
309
+ "model.layers.24.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
310
+ "model.layers.24.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
311
+ "model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
312
+ "model.layers.24.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
313
+ "model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
314
+ "model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
315
+ "model.layers.25.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
316
+ "model.layers.25.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
317
+ "model.layers.25.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
318
+ "model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
319
+ "model.layers.25.mamba.A_log": "model-00001-of-00002.safetensors",
320
+ "model.layers.25.mamba.D": "model-00001-of-00002.safetensors",
321
+ "model.layers.25.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
322
+ "model.layers.25.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
323
+ "model.layers.25.mamba.dt_bias": "model-00001-of-00002.safetensors",
324
+ "model.layers.25.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
325
+ "model.layers.25.mamba.norm.weight": "model-00001-of-00002.safetensors",
326
+ "model.layers.25.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
327
+ "model.layers.25.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
328
+ "model.layers.25.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
329
+ "model.layers.25.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
330
+ "model.layers.25.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
331
+ "model.layers.25.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
332
+ "model.layers.26.feed_forward.down_proj.weight": "model-00002-of-00002.safetensors",
333
+ "model.layers.26.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
334
+ "model.layers.26.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
335
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
336
+ "model.layers.26.mamba.A_log": "model-00002-of-00002.safetensors",
337
+ "model.layers.26.mamba.D": "model-00002-of-00002.safetensors",
338
+ "model.layers.26.mamba.conv1d.bias": "model-00002-of-00002.safetensors",
339
+ "model.layers.26.mamba.conv1d.weight": "model-00002-of-00002.safetensors",
340
+ "model.layers.26.mamba.dt_bias": "model-00002-of-00002.safetensors",
341
+ "model.layers.26.mamba.in_proj.weight": "model-00002-of-00002.safetensors",
342
+ "model.layers.26.mamba.norm.weight": "model-00002-of-00002.safetensors",
343
+ "model.layers.26.mamba.out_proj.weight": "model-00002-of-00002.safetensors",
344
+ "model.layers.26.pre_ff_layernorm.weight": "model-00002-of-00002.safetensors",
345
+ "model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
346
+ "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
347
+ "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
348
+ "model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
349
+ "model.layers.27.feed_forward.down_proj.weight": "model-00002-of-00002.safetensors",
350
+ "model.layers.27.feed_forward.gate_proj.weight": "model-00002-of-00002.safetensors",
351
+ "model.layers.27.feed_forward.up_proj.weight": "model-00002-of-00002.safetensors",
352
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
353
+ "model.layers.27.mamba.A_log": "model-00002-of-00002.safetensors",
354
+ "model.layers.27.mamba.D": "model-00002-of-00002.safetensors",
355
+ "model.layers.27.mamba.conv1d.bias": "model-00002-of-00002.safetensors",
356
+ "model.layers.27.mamba.conv1d.weight": "model-00002-of-00002.safetensors",
357
+ "model.layers.27.mamba.dt_bias": "model-00002-of-00002.safetensors",
358
+ "model.layers.27.mamba.in_proj.weight": "model-00002-of-00002.safetensors",
359
+ "model.layers.27.mamba.norm.weight": "model-00002-of-00002.safetensors",
360
+ "model.layers.27.mamba.out_proj.weight": "model-00002-of-00002.safetensors",
361
+ "model.layers.27.pre_ff_layernorm.weight": "model-00002-of-00002.safetensors",
362
+ "model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
363
+ "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
364
+ "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
365
+ "model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
366
+ "model.layers.28.feed_forward.down_proj.weight": "model-00002-of-00002.safetensors",
367
+ "model.layers.28.feed_forward.gate_proj.weight": "model-00002-of-00002.safetensors",
368
+ "model.layers.28.feed_forward.up_proj.weight": "model-00002-of-00002.safetensors",
369
+ "model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
370
+ "model.layers.28.mamba.A_log": "model-00002-of-00002.safetensors",
371
+ "model.layers.28.mamba.D": "model-00002-of-00002.safetensors",
372
+ "model.layers.28.mamba.conv1d.bias": "model-00002-of-00002.safetensors",
373
+ "model.layers.28.mamba.conv1d.weight": "model-00002-of-00002.safetensors",
374
+ "model.layers.28.mamba.dt_bias": "model-00002-of-00002.safetensors",
375
+ "model.layers.28.mamba.in_proj.weight": "model-00002-of-00002.safetensors",
376
+ "model.layers.28.mamba.norm.weight": "model-00002-of-00002.safetensors",
377
+ "model.layers.28.mamba.out_proj.weight": "model-00002-of-00002.safetensors",
378
+ "model.layers.28.pre_ff_layernorm.weight": "model-00002-of-00002.safetensors",
379
+ "model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
380
+ "model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
381
+ "model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
382
+ "model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
383
+ "model.layers.29.feed_forward.down_proj.weight": "model-00002-of-00002.safetensors",
384
+ "model.layers.29.feed_forward.gate_proj.weight": "model-00002-of-00002.safetensors",
385
+ "model.layers.29.feed_forward.up_proj.weight": "model-00002-of-00002.safetensors",
386
+ "model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
387
+ "model.layers.29.mamba.A_log": "model-00002-of-00002.safetensors",
388
+ "model.layers.29.mamba.D": "model-00002-of-00002.safetensors",
389
+ "model.layers.29.mamba.conv1d.bias": "model-00002-of-00002.safetensors",
390
+ "model.layers.29.mamba.conv1d.weight": "model-00002-of-00002.safetensors",
391
+ "model.layers.29.mamba.dt_bias": "model-00002-of-00002.safetensors",
392
+ "model.layers.29.mamba.in_proj.weight": "model-00002-of-00002.safetensors",
393
+ "model.layers.29.mamba.norm.weight": "model-00002-of-00002.safetensors",
394
+ "model.layers.29.mamba.out_proj.weight": "model-00002-of-00002.safetensors",
395
+ "model.layers.29.pre_ff_layernorm.weight": "model-00002-of-00002.safetensors",
396
+ "model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
397
+ "model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
398
+ "model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
399
+ "model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
400
+ "model.layers.3.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
401
+ "model.layers.3.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
402
+ "model.layers.3.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
403
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
404
+ "model.layers.3.mamba.A_log": "model-00001-of-00002.safetensors",
405
+ "model.layers.3.mamba.D": "model-00001-of-00002.safetensors",
406
+ "model.layers.3.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
407
+ "model.layers.3.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
408
+ "model.layers.3.mamba.dt_bias": "model-00001-of-00002.safetensors",
409
+ "model.layers.3.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
410
+ "model.layers.3.mamba.norm.weight": "model-00001-of-00002.safetensors",
411
+ "model.layers.3.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
412
+ "model.layers.3.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
413
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
414
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
415
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
416
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
417
+ "model.layers.30.feed_forward.down_proj.weight": "model-00002-of-00002.safetensors",
418
+ "model.layers.30.feed_forward.gate_proj.weight": "model-00002-of-00002.safetensors",
419
+ "model.layers.30.feed_forward.up_proj.weight": "model-00002-of-00002.safetensors",
420
+ "model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
421
+ "model.layers.30.mamba.A_log": "model-00002-of-00002.safetensors",
422
+ "model.layers.30.mamba.D": "model-00002-of-00002.safetensors",
423
+ "model.layers.30.mamba.conv1d.bias": "model-00002-of-00002.safetensors",
424
+ "model.layers.30.mamba.conv1d.weight": "model-00002-of-00002.safetensors",
425
+ "model.layers.30.mamba.dt_bias": "model-00002-of-00002.safetensors",
426
+ "model.layers.30.mamba.in_proj.weight": "model-00002-of-00002.safetensors",
427
+ "model.layers.30.mamba.norm.weight": "model-00002-of-00002.safetensors",
428
+ "model.layers.30.mamba.out_proj.weight": "model-00002-of-00002.safetensors",
429
+ "model.layers.30.pre_ff_layernorm.weight": "model-00002-of-00002.safetensors",
430
+ "model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
431
+ "model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
432
+ "model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
433
+ "model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
434
+ "model.layers.31.feed_forward.down_proj.weight": "model-00002-of-00002.safetensors",
435
+ "model.layers.31.feed_forward.gate_proj.weight": "model-00002-of-00002.safetensors",
436
+ "model.layers.31.feed_forward.up_proj.weight": "model-00002-of-00002.safetensors",
437
+ "model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
438
+ "model.layers.31.mamba.A_log": "model-00002-of-00002.safetensors",
439
+ "model.layers.31.mamba.D": "model-00002-of-00002.safetensors",
440
+ "model.layers.31.mamba.conv1d.bias": "model-00002-of-00002.safetensors",
441
+ "model.layers.31.mamba.conv1d.weight": "model-00002-of-00002.safetensors",
442
+ "model.layers.31.mamba.dt_bias": "model-00002-of-00002.safetensors",
443
+ "model.layers.31.mamba.in_proj.weight": "model-00002-of-00002.safetensors",
444
+ "model.layers.31.mamba.norm.weight": "model-00002-of-00002.safetensors",
445
+ "model.layers.31.mamba.out_proj.weight": "model-00002-of-00002.safetensors",
446
+ "model.layers.31.pre_ff_layernorm.weight": "model-00002-of-00002.safetensors",
447
+ "model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
448
+ "model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
449
+ "model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
450
+ "model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
451
+ "model.layers.4.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
452
+ "model.layers.4.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
453
+ "model.layers.4.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
454
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
455
+ "model.layers.4.mamba.A_log": "model-00001-of-00002.safetensors",
456
+ "model.layers.4.mamba.D": "model-00001-of-00002.safetensors",
457
+ "model.layers.4.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
458
+ "model.layers.4.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
459
+ "model.layers.4.mamba.dt_bias": "model-00001-of-00002.safetensors",
460
+ "model.layers.4.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
461
+ "model.layers.4.mamba.norm.weight": "model-00001-of-00002.safetensors",
462
+ "model.layers.4.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
463
+ "model.layers.4.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
464
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
465
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
466
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
467
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
468
+ "model.layers.5.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
469
+ "model.layers.5.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
470
+ "model.layers.5.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
471
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
472
+ "model.layers.5.mamba.A_log": "model-00001-of-00002.safetensors",
473
+ "model.layers.5.mamba.D": "model-00001-of-00002.safetensors",
474
+ "model.layers.5.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
475
+ "model.layers.5.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
476
+ "model.layers.5.mamba.dt_bias": "model-00001-of-00002.safetensors",
477
+ "model.layers.5.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
478
+ "model.layers.5.mamba.norm.weight": "model-00001-of-00002.safetensors",
479
+ "model.layers.5.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
480
+ "model.layers.5.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
481
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
482
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
483
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
484
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
485
+ "model.layers.6.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
486
+ "model.layers.6.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
487
+ "model.layers.6.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
488
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
489
+ "model.layers.6.mamba.A_log": "model-00001-of-00002.safetensors",
490
+ "model.layers.6.mamba.D": "model-00001-of-00002.safetensors",
491
+ "model.layers.6.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
492
+ "model.layers.6.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
493
+ "model.layers.6.mamba.dt_bias": "model-00001-of-00002.safetensors",
494
+ "model.layers.6.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
495
+ "model.layers.6.mamba.norm.weight": "model-00001-of-00002.safetensors",
496
+ "model.layers.6.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
497
+ "model.layers.6.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
498
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
499
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
500
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
501
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
502
+ "model.layers.7.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
503
+ "model.layers.7.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
504
+ "model.layers.7.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
505
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
506
+ "model.layers.7.mamba.A_log": "model-00001-of-00002.safetensors",
507
+ "model.layers.7.mamba.D": "model-00001-of-00002.safetensors",
508
+ "model.layers.7.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
509
+ "model.layers.7.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
510
+ "model.layers.7.mamba.dt_bias": "model-00001-of-00002.safetensors",
511
+ "model.layers.7.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
512
+ "model.layers.7.mamba.norm.weight": "model-00001-of-00002.safetensors",
513
+ "model.layers.7.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
514
+ "model.layers.7.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
515
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
516
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
517
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
518
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
519
+ "model.layers.8.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
520
+ "model.layers.8.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
521
+ "model.layers.8.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
522
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
523
+ "model.layers.8.mamba.A_log": "model-00001-of-00002.safetensors",
524
+ "model.layers.8.mamba.D": "model-00001-of-00002.safetensors",
525
+ "model.layers.8.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
526
+ "model.layers.8.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
527
+ "model.layers.8.mamba.dt_bias": "model-00001-of-00002.safetensors",
528
+ "model.layers.8.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
529
+ "model.layers.8.mamba.norm.weight": "model-00001-of-00002.safetensors",
530
+ "model.layers.8.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
531
+ "model.layers.8.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
532
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
533
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
534
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
535
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
536
+ "model.layers.9.feed_forward.down_proj.weight": "model-00001-of-00002.safetensors",
537
+ "model.layers.9.feed_forward.gate_proj.weight": "model-00001-of-00002.safetensors",
538
+ "model.layers.9.feed_forward.up_proj.weight": "model-00001-of-00002.safetensors",
539
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
540
+ "model.layers.9.mamba.A_log": "model-00001-of-00002.safetensors",
541
+ "model.layers.9.mamba.D": "model-00001-of-00002.safetensors",
542
+ "model.layers.9.mamba.conv1d.bias": "model-00001-of-00002.safetensors",
543
+ "model.layers.9.mamba.conv1d.weight": "model-00001-of-00002.safetensors",
544
+ "model.layers.9.mamba.dt_bias": "model-00001-of-00002.safetensors",
545
+ "model.layers.9.mamba.in_proj.weight": "model-00001-of-00002.safetensors",
546
+ "model.layers.9.mamba.norm.weight": "model-00001-of-00002.safetensors",
547
+ "model.layers.9.mamba.out_proj.weight": "model-00001-of-00002.safetensors",
548
+ "model.layers.9.pre_ff_layernorm.weight": "model-00001-of-00002.safetensors",
549
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
550
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
551
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
552
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors"
553
+ }
554
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,356 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|pad|>",
4
+ ">>ABSTRACT<<",
5
+ ">>INTRODUCTION<<",
6
+ ">>SUMMARY<<",
7
+ ">>COMMENT<<",
8
+ ">>ANSWER<<",
9
+ ">>QUESTION<<",
10
+ ">>DOMAIN<<",
11
+ ">>PREFIX<<",
12
+ ">>SUFFIX<<",
13
+ ">>MIDDLE<<",
14
+ "<|finetune_right_pad_id|>",
15
+ "<|start_header_id|>",
16
+ "<|end_header_id|>",
17
+ "<|eom_id|>",
18
+ "<|eot_id|>",
19
+ "<|begin_of_text|>",
20
+ ">>TITLE<<",
21
+ "<tool_response>",
22
+ "</tool_response>",
23
+ "<tool_call>",
24
+ "</tool_call>",
25
+ "<schema>",
26
+ "</schema>",
27
+ "<scratch_pad>",
28
+ "</scratch_pad>",
29
+ "<thinking>",
30
+ "</thinking>",
31
+ "<explanation>",
32
+ "</explanation>",
33
+ "<file_sep>",
34
+ "<repo_name>",
35
+ "<|im_end|>",
36
+ "<|im_start|>",
37
+ ">>UNUSED_119<<",
38
+ ">>UNUSED_120<<",
39
+ "<|system|>",
40
+ ">>UNUSED_218<<",
41
+ ">>UNUSED_219<<",
42
+ ">>UNUSED_220<<",
43
+ ">>UNUSED_221<<",
44
+ ">>UNUSED_222<<",
45
+ ">>UNUSED_223<<",
46
+ ">>UNUSED_224<<",
47
+ ">>UNUSED_225<<",
48
+ ">>UNUSED_226<<",
49
+ ">>UNUSED_227<<",
50
+ ">>UNUSED_228<<",
51
+ ">>UNUSED_229<<",
52
+ ">>UNUSED_230<<",
53
+ ">>UNUSED_231<<",
54
+ ">>UNUSED_232<<",
55
+ ">>UNUSED_233<<",
56
+ ">>UNUSED_234<<",
57
+ ">>UNUSED_235<<",
58
+ ">>UNUSED_236<<",
59
+ ">>UNUSED_237<<",
60
+ ">>UNUSED_238<<",
61
+ ">>UNUSED_239<<",
62
+ ">>UNUSED_240<<",
63
+ ">>UNUSED_241<<",
64
+ ">>UNUSED_242<<",
65
+ ">>UNUSED_243<<",
66
+ ">>UNUSED_244<<",
67
+ ">>UNUSED_245<<",
68
+ ">>UNUSED_246<<",
69
+ ">>UNUSED_247<<",
70
+ ">>UNUSED_248<<",
71
+ ">>UNUSED_249<<",
72
+ ">>UNUSED_250<<",
73
+ ">>UNUSED_251<<",
74
+ ">>UNUSED_252<<",
75
+ ">>UNUSED_253<<",
76
+ ">>UNUSED_254<<",
77
+ ">>UNUSED_255<<",
78
+ ">>UNUSED_256<<",
79
+ ">>UNUSED_257<<",
80
+ ">>UNUSED_258<<",
81
+ ">>UNUSED_259<<",
82
+ ">>UNUSED_260<<",
83
+ ">>UNUSED_261<<",
84
+ ">>UNUSED_262<<",
85
+ ">>UNUSED_263<<",
86
+ ">>UNUSED_264<<",
87
+ ">>UNUSED_265<<",
88
+ ">>UNUSED_266<<",
89
+ ">>UNUSED_267<<",
90
+ ">>UNUSED_268<<",
91
+ ">>UNUSED_269<<",
92
+ ">>UNUSED_270<<",
93
+ ">>UNUSED_271<<",
94
+ ">>UNUSED_272<<",
95
+ ">>UNUSED_273<<",
96
+ ">>UNUSED_274<<",
97
+ ">>UNUSED_275<<",
98
+ ">>UNUSED_276<<",
99
+ ">>UNUSED_277<<",
100
+ ">>UNUSED_278<<",
101
+ ">>UNUSED_279<<",
102
+ ">>UNUSED_280<<",
103
+ ">>UNUSED_281<<",
104
+ ">>UNUSED_282<<",
105
+ ">>UNUSED_283<<",
106
+ ">>UNUSED_284<<",
107
+ ">>UNUSED_285<<",
108
+ ">>UNUSED_286<<",
109
+ ">>UNUSED_287<<",
110
+ ">>UNUSED_288<<",
111
+ ">>UNUSED_289<<",
112
+ ">>UNUSED_290<<",
113
+ ">>UNUSED_291<<",
114
+ ">>UNUSED_292<<",
115
+ ">>UNUSED_293<<",
116
+ ">>UNUSED_294<<",
117
+ ">>UNUSED_295<<",
118
+ ">>UNUSED_296<<",
119
+ ">>UNUSED_297<<",
120
+ ">>UNUSED_298<<",
121
+ ">>UNUSED_299<<",
122
+ ">>UNUSED_300<<",
123
+ ">>UNUSED_301<<",
124
+ ">>UNUSED_302<<",
125
+ ">>UNUSED_303<<",
126
+ ">>UNUSED_304<<",
127
+ ">>UNUSED_305<<",
128
+ ">>UNUSED_306<<",
129
+ ">>UNUSED_307<<",
130
+ ">>UNUSED_308<<",
131
+ ">>UNUSED_309<<",
132
+ ">>UNUSED_310<<",
133
+ ">>UNUSED_311<<",
134
+ ">>UNUSED_312<<",
135
+ ">>UNUSED_313<<",
136
+ ">>UNUSED_314<<",
137
+ ">>UNUSED_315<<",
138
+ ">>UNUSED_316<<",
139
+ ">>UNUSED_317<<",
140
+ ">>UNUSED_318<<",
141
+ ">>UNUSED_319<<",
142
+ ">>UNUSED_320<<",
143
+ ">>UNUSED_321<<",
144
+ ">>UNUSED_322<<",
145
+ ">>UNUSED_323<<",
146
+ ">>UNUSED_324<<",
147
+ ">>UNUSED_325<<",
148
+ ">>UNUSED_326<<",
149
+ ">>UNUSED_327<<",
150
+ ">>UNUSED_328<<",
151
+ ">>UNUSED_329<<",
152
+ ">>UNUSED_330<<",
153
+ ">>UNUSED_331<<",
154
+ ">>UNUSED_332<<",
155
+ ">>UNUSED_333<<",
156
+ ">>UNUSED_334<<",
157
+ ">>UNUSED_335<<",
158
+ ">>UNUSED_336<<",
159
+ ">>UNUSED_337<<",
160
+ ">>UNUSED_338<<",
161
+ ">>UNUSED_339<<",
162
+ ">>UNUSED_340<<",
163
+ ">>UNUSED_341<<",
164
+ ">>UNUSED_342<<",
165
+ ">>UNUSED_343<<",
166
+ ">>UNUSED_344<<",
167
+ ">>UNUSED_345<<",
168
+ ">>UNUSED_346<<",
169
+ ">>UNUSED_347<<",
170
+ ">>UNUSED_348<<",
171
+ ">>UNUSED_349<<",
172
+ ">>UNUSED_350<<",
173
+ ">>UNUSED_351<<",
174
+ ">>UNUSED_352<<",
175
+ ">>UNUSED_353<<",
176
+ ">>UNUSED_354<<",
177
+ ">>UNUSED_355<<",
178
+ ">>UNUSED_356<<",
179
+ ">>UNUSED_357<<",
180
+ ">>UNUSED_358<<",
181
+ ">>UNUSED_359<<",
182
+ ">>UNUSED_360<<",
183
+ ">>UNUSED_361<<",
184
+ ">>UNUSED_362<<",
185
+ ">>UNUSED_363<<",
186
+ ">>UNUSED_364<<",
187
+ ">>UNUSED_365<<",
188
+ ">>UNUSED_366<<",
189
+ ">>UNUSED_367<<",
190
+ ">>UNUSED_368<<",
191
+ ">>UNUSED_369<<",
192
+ ">>UNUSED_370<<",
193
+ ">>UNUSED_371<<",
194
+ ">>UNUSED_372<<",
195
+ ">>UNUSED_373<<",
196
+ ">>UNUSED_374<<",
197
+ ">>UNUSED_375<<",
198
+ ">>UNUSED_376<<",
199
+ ">>UNUSED_377<<",
200
+ ">>UNUSED_378<<",
201
+ ">>UNUSED_379<<",
202
+ ">>UNUSED_380<<",
203
+ ">>UNUSED_381<<",
204
+ ">>UNUSED_382<<",
205
+ ">>UNUSED_383<<",
206
+ ">>UNUSED_384<<",
207
+ ">>UNUSED_385<<",
208
+ ">>UNUSED_386<<",
209
+ ">>UNUSED_387<<",
210
+ ">>UNUSED_388<<",
211
+ ">>UNUSED_389<<",
212
+ ">>UNUSED_390<<",
213
+ ">>UNUSED_391<<",
214
+ ">>UNUSED_392<<",
215
+ ">>UNUSED_393<<",
216
+ ">>UNUSED_394<<",
217
+ ">>UNUSED_395<<",
218
+ ">>UNUSED_396<<",
219
+ ">>UNUSED_397<<",
220
+ ">>UNUSED_398<<",
221
+ ">>UNUSED_399<<",
222
+ ">>UNUSED_400<<",
223
+ ">>UNUSED_401<<",
224
+ ">>UNUSED_402<<",
225
+ ">>UNUSED_403<<",
226
+ ">>UNUSED_404<<",
227
+ ">>UNUSED_405<<",
228
+ ">>UNUSED_406<<",
229
+ ">>UNUSED_407<<",
230
+ ">>UNUSED_408<<",
231
+ ">>UNUSED_409<<",
232
+ ">>UNUSED_410<<",
233
+ ">>UNUSED_411<<",
234
+ ">>UNUSED_412<<",
235
+ ">>UNUSED_413<<",
236
+ ">>UNUSED_414<<",
237
+ ">>UNUSED_415<<",
238
+ ">>UNUSED_416<<",
239
+ ">>UNUSED_417<<",
240
+ ">>UNUSED_418<<",
241
+ ">>UNUSED_419<<",
242
+ ">>UNUSED_420<<",
243
+ ">>UNUSED_421<<",
244
+ ">>UNUSED_422<<",
245
+ ">>UNUSED_423<<",
246
+ ">>UNUSED_424<<",
247
+ ">>UNUSED_425<<",
248
+ ">>UNUSED_426<<",
249
+ ">>UNUSED_427<<",
250
+ ">>UNUSED_428<<",
251
+ ">>UNUSED_429<<",
252
+ ">>UNUSED_430<<",
253
+ ">>UNUSED_431<<",
254
+ ">>UNUSED_432<<",
255
+ ">>UNUSED_433<<",
256
+ ">>UNUSED_434<<",
257
+ ">>UNUSED_435<<",
258
+ ">>UNUSED_436<<",
259
+ ">>UNUSED_437<<",
260
+ ">>UNUSED_438<<",
261
+ ">>UNUSED_439<<",
262
+ ">>UNUSED_440<<",
263
+ ">>UNUSED_441<<",
264
+ ">>UNUSED_442<<",
265
+ ">>UNUSED_443<<",
266
+ ">>UNUSED_444<<",
267
+ ">>UNUSED_445<<",
268
+ ">>UNUSED_446<<",
269
+ ">>UNUSED_447<<",
270
+ ">>UNUSED_448<<",
271
+ ">>UNUSED_449<<",
272
+ ">>UNUSED_450<<",
273
+ ">>UNUSED_451<<",
274
+ ">>UNUSED_452<<",
275
+ ">>UNUSED_453<<",
276
+ ">>UNUSED_454<<",
277
+ ">>UNUSED_455<<",
278
+ ">>UNUSED_456<<",
279
+ ">>UNUSED_457<<",
280
+ ">>UNUSED_458<<",
281
+ ">>UNUSED_459<<",
282
+ ">>UNUSED_460<<",
283
+ ">>UNUSED_461<<",
284
+ ">>UNUSED_462<<",
285
+ ">>UNUSED_463<<",
286
+ ">>UNUSED_464<<",
287
+ ">>UNUSED_465<<",
288
+ ">>UNUSED_466<<",
289
+ ">>UNUSED_467<<",
290
+ ">>UNUSED_468<<",
291
+ ">>UNUSED_469<<",
292
+ ">>UNUSED_470<<",
293
+ ">>UNUSED_471<<",
294
+ ">>UNUSED_472<<",
295
+ ">>UNUSED_473<<",
296
+ ">>UNUSED_474<<",
297
+ ">>UNUSED_475<<",
298
+ ">>UNUSED_476<<",
299
+ ">>UNUSED_477<<",
300
+ ">>UNUSED_478<<",
301
+ ">>UNUSED_479<<",
302
+ ">>UNUSED_480<<",
303
+ ">>UNUSED_481<<",
304
+ ">>UNUSED_482<<",
305
+ ">>UNUSED_483<<",
306
+ ">>UNUSED_484<<",
307
+ ">>UNUSED_485<<",
308
+ ">>UNUSED_486<<",
309
+ ">>UNUSED_487<<",
310
+ ">>UNUSED_488<<",
311
+ ">>UNUSED_489<<",
312
+ ">>UNUSED_490<<",
313
+ ">>UNUSED_491<<",
314
+ ">>UNUSED_492<<",
315
+ ">>UNUSED_493<<",
316
+ ">>UNUSED_494<<",
317
+ ">>UNUSED_495<<",
318
+ ">>UNUSED_496<<",
319
+ ">>UNUSED_497<<",
320
+ ">>UNUSED_498<<",
321
+ ">>UNUSED_499<<",
322
+ ">>UNUSED_500<<",
323
+ ">>UNUSED_501<<",
324
+ ">>UNUSED_502<<",
325
+ ">>UNUSED_503<<",
326
+ ">>UNUSED_504<<",
327
+ ">>UNUSED_505<<",
328
+ ">>UNUSED_506<<",
329
+ ">>UNUSED_507<<",
330
+ ">>UNUSED_508<<",
331
+ ">>UNUSED_509<<",
332
+ ">>UNUSED_510<<",
333
+ ">>UNUSED_511<<"
334
+ ],
335
+ "bos_token": {
336
+ "content": "<|begin_of_text|>",
337
+ "lstrip": false,
338
+ "normalized": false,
339
+ "rstrip": false,
340
+ "single_word": false
341
+ },
342
+ "eos_token": {
343
+ "content": "<|im_end|>",
344
+ "lstrip": false,
345
+ "normalized": false,
346
+ "rstrip": false,
347
+ "single_word": false
348
+ },
349
+ "pad_token": {
350
+ "content": "<pad>",
351
+ "lstrip": false,
352
+ "normalized": false,
353
+ "rstrip": false,
354
+ "single_word": false
355
+ }
356
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff