初始化项目,由ModelHub XC社区提供模型

Model: unsloth/granite-4.1-30b
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-31 21:21:22 +08:00
commit c308a1caf0
24 changed files with 603515 additions and 0 deletions

35
.gitattributes vendored Normal file
View File

@@ -0,0 +1,35 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text

622
README.md Normal file
View File

@@ -0,0 +1,622 @@
---
base_model:
- ibm-granite/granite-4.1-30b
license: apache-2.0
library_name: transformers
tags:
- language
- unsloth
- granite-4.0
---
> [!NOTE]
> Includes Unsloth **chat template fixes**! <br> For `llama.cpp`, use `--jinja`
>
<div>
<p style="margin-top: 0;margin-bottom: 0;">
<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>
</p>
<div style="display: flex; gap: 5px; align-items: center; ">
<a href="https://github.com/unslothai/unsloth/">
<img src="https://github.com/unslothai/unsloth/raw/main/images/unsloth%20new%20logo.png" width="133">
</a>
<a href="https://discord.gg/unsloth">
<img src="https://github.com/unslothai/unsloth/raw/main/images/Discord%20button.png" width="173">
</a>
<a href="https://docs.unsloth.ai/">
<img src="https://raw.githubusercontent.com/unslothai/unsloth/refs/heads/main/images/documentation%20green%20button.png" width="143">
</a>
</div>
</div>
[![mof-class3-qualified](https://mot.isitopen.ai/modules/mof/assets/badge_class3_qualified.png)](https://mot.isitopen.ai/model/1160)
# Granite-4.1-30B
**Model Summary:**
Granite-4.1-30B is a 30B parameter long-context instruct model finetuned from *Granite-4.1-30B-Base* using a combination of open source instruction datasets with permissive license and internally collected synthetic datasets. Granite 4.1 models have gone through an improved post-training pipeline, including supervised finetuning and reinforcement learning alignment, resulting in enhanced tool calling, instruction following, and chat capabilities.
- **Developers:** Granite Team, IBM
- **HF Collection:** [Granite 4.1 Language Models HF Collection](https://huggingface.co/collections/ibm-granite/granite-41-language-models)
- **Technical Blog:** [Granite-4.1 Blog](https://huggingface.co/blog/ibm-granite/granite-4-1)
- **GitHub Repository:** [ibm-granite/granite-4.1-language-models](https://github.com/ibm-granite/granite-4.1-language-models)
- **Website**: [Granite Docs](https://www.ibm.com/granite/docs/)
- **Release Date**: April 29th, 2026
- **License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
**Supported Languages:**
English, German, Spanish, French, Japanese, Portuguese, Arabic, Czech, Italian, Korean, Dutch, and Chinese. Users may finetune Granite 4.1 models for languages beyond these languages.
**Intended use:**
The model is designed to follow general instructions and can serve as the foundation for AI assistants across diverse domains, including business applications, as well as for LLM agents equipped with tool-use capabilities.
*Capabilities*
* Summarization
* Text classification
* Text extraction
* Question-answering
* Retrieval Augmented Generation (RAG)
* Code related tasks
* Function-calling tasks
* Multilingual dialog use cases
* Fill-In-the-Middle (FIM) code completions
<!-- <todo>Need to test the examples. (especially the tool calling and RAG ones)</todo>
-->
**Generation:**
This is a simple example of how to use Granite-4.1-30B model.
Install the following libraries:
```shell
pip install torch torchvision torchaudio
pip install accelerate
pip install transformers
```
Then, copy the snippet from the section that is relevant for your use case.
```python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda"
model_path = "ibm-granite/granite-4.1-30b"
tokenizer = AutoTokenizer.from_pretrained(model_path)
# drop device_map if running on CPU
model = AutoModelForCausalLM.from_pretrained(model_path, device_map=device)
model.eval()
# change input text as desired
chat = [
{ "role": "user", "content": "Please list one IBM Research laboratory located in the United States. You should only output its name and location." },
]
chat = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=True)
# tokenize the text
input_tokens = tokenizer(chat, return_tensors="pt").to(device)
# generate output tokens
output = model.generate(**input_tokens,
max_new_tokens=100)
# decode output tokens into text
output = tokenizer.batch_decode(output)
# print output
print(output[0])
```
Expected output:
```shell
<|start_of_role|>user<|end_of_role|>Please list one IBM Research laboratory located in the United States. You should only output its name and location.<|end_of_text|>
<|start_of_role|>assistant<|end_of_role|>IBM Research - Almaden, San Jose, California<|end_of_text|>
```
<!-- 📣 **Update [2025-10-07]:** Added a *default system prompt* to the chat template to guide the model towards more *professional, accurate, and safe* responses. -->
**Tool-calling:**
Granite-4.1-30B comes with enhanced tool calling capabilities, enabling seamless integration with external functions and APIs. To define a list of tools please follow OpenAI's function [definition schema](https://platform.openai.com/docs/guides/function-calling?api-mode=responses#defining-functions).
This is an example of how to use Granite-4.1-30B model tool-calling ability:
```python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda"
model_path = "ibm-granite/granite-4.1-30b"
tokenizer = AutoTokenizer.from_pretrained(model_path)
# drop device_map if running on CPU
model = AutoModelForCausalLM.from_pretrained(model_path, device_map=device)
model.eval()
tools = [
{
"type": "function",
"function": {
"name": "get_current_weather",
"description": "Get the current weather for a specified city.",
"parameters": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "Name of the city"
}
},
"required": ["city"]
}
}
}
]
# change input text as desired
chat = [
{ "role": "user", "content": "What's the weather like in Boston right now?" },
]
chat = tokenizer.apply_chat_template(chat, \
tokenize=False, \
tools=tools, \
add_generation_prompt=True)
# tokenize the text
input_tokens = tokenizer(chat, return_tensors="pt").to(device)
# generate output tokens
output = model.generate(**input_tokens,
max_new_tokens=100)
# decode output tokens into text
output = tokenizer.batch_decode(output)
# print output
print(output[0])
```
Expected output:
```shell
<|start_of_role|>system<|end_of_role|>You are a helpful assistant with access to the following tools. You may call one or more tools to assist with the user query.
You are provided with function signatures within <tools></tools> XML tags:
- <tools>
- unsloth
{"type": "function", "function": {"name": "get_current_weather", "description": "Get the current weather for a specified city.", "parameters": {"type": "object", "properties": {"city": {"type": "string", "description": "Name of the city"}}, "required": ["city"]}}}
</tools>
For each tool call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:
- <tool_call>
- unsloth
{"name": <function-name>, "arguments": <args-json-object>}
</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.<|end_of_text|>
<|start_of_role|>user<|end_of_role|>What's the weather like in Boston right now?<|end_of_text|>
<|start_of_role|>assistant<|end_of_role|><tool_call>
{"name": "get_current_weather", "arguments": {"city": "Boston"}}
</tool_call><|end_of_text|>
```
<!-- **Retrieval Augmented Generation:**
*Coming soon* -->
**Evaluation Results:**
<table>
<!-- <caption><b> All Results</b></caption> -->
<thead>
<tr>
<th style="text-align:left; background-color: #001d6c; color: white;">Benchmarks</th>
<th style="text-align:left; background-color: #001d6c; color: white;">Metric</th>
<th style="text-align:center; background-color: #001d6c; color: white;">3B Dense</th>
<th style="text-align:center; background-color: #001d6c; color: white;">8B Dense</th>
<th style="text-align:center; background-color: #001d6c; color: white;">30B Dense</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="5" style="text-align:center; background-color: #FFFFFF; color: #2D2D2D; font-style:italic;">
General Tasks
</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MMLU</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">5-shot</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">67.02</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">73.84</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">80.16</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MMLU-Pro</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">5-shot, CoT</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">49.83</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">55.99</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">64.09</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">BBH</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">3-shot, CoT</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">75.83</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">80.51</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">83.74</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">AGI EVAL</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">0-shot, CoT</td>
<td style="text-align:right; background-color:#FFFFFF; color: #2D2D2D;">65.16</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">72.43</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">77.80</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">GPQA</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">0-shot, CoT</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">31.70</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">41.96</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">45.76</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">SimpleQA</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">3.68</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">4.82</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">6.81</td>
</tr>
<tr>
<td colspan="5" style="text-align:center; background-color: #FFFFFF; color: #2D2D2D; font-style:italic;">
Alignment Tasks
</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">AlpacaEval 2.0</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">38.57</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">50.08</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">56.16</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">IFEval Avg</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">82.30</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">87.06</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">89.65</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">ArenaHard</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">37.80</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">68.98</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">71.02</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MTBench Avg</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">7.57</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">8.61</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">8.61</td>
</tr>
<tr>
<td colspan="5" style="text-align:center; background-color: #FFFFFF; color: #2D2D2D; font-style:italic;">
Math Tasks
</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">GSM8K</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">8-shot</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">86.88</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">92.49</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">94.16</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">GSM Symbolic</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">8-shot</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">81.32</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">83.70</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">75.70</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">Minerva Math</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">0-shot, CoT</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">67.94</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">80.10</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">81.32</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">DeepMind Math</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">0-shot, CoT</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">64.64</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">80.07</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">81.93</td>
</tr>
<tr>
<td colspan="5" style="text-align:center; background-color: #FFFFFF; color: #2D2D2D; font-style:italic;">
Code Tasks
</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">HumanEval</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">81.71</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">85.37</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">88.41</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">HumanEval+</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">76.83</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">79.88</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">85.37</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MBPP</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">71.16</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">87.30</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">85.45</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MBPP+</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">62.17</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">73.81</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">73.54</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">CRUXEval-O</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">40.75</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">47.63</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">55.75</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">BigCodeBench</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">32.19</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">35.00</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">38.77</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MULTIPLE</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">52.54</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">60.26</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">62.31</td>
</tr>
<tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">Eval+ Avg</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">pass@1</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">67.05</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">80.21</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">82.66</td>
</tr>
<tr>
<td colspan="5" style="text-align:center; background-color: #FFFFFF; color: #2D2D2D; font-style:italic;">
Tool Calling Tasks
</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">BFCL v3</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">60.80</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">68.27</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">73.68</td>
</tr>
<tr>
<td colspan="5" style="text-align:center; background-color: #FFFFFF; color: #2D2D2D; font-style:italic;">
Multilingual Tasks
</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MMMLU</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">5-shot</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">57.61</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">64.84</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">73.71</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">INCLUDE</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">5-shot</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">52.05</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">58.89</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">67.26</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MGSM</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">8-shot</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">70.00</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">82.32</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">71.12</td>
</tr>
<tr>
<td colspan="6" style="text-align:center; background-color: #FFFFFF; color: #2D2D2D; font-style:italic;">
Safety
</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">SALAD-Bench</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">93.95</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">95.80</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">96.41</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">AttaQ</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">81.88</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">81.19</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">85.76</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">Tulu3 Safety Eval Avg</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;"></td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">66.84</td>
<td style="text-align:right; background-color: #FFFFFF; color: #2D2D2D;">75.57</td>
<td style="text-align:right; background-color: #DAE8FF; color: #2D2D2D;">78.19</td>
</tr>
</tbody></table>
<table>
<caption><b>Multilingual Benchmarks and the included languages:</b></caption>
<thead>
<tr>
<th style="text-align:left; background-color: #001d6c; color: white;">Benchmarks</th>
<th style="text-align:left; background-color: #001d6c; color: white;"># Langs</th>
<th style="text-align:center; background-color: #001d6c; color: white;">Languages</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MMMLU</td>
<td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">11</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">ar, de, en, es, fr, ja, ko, pt, zh, bn, hi</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">INCLUDE</td>
<td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">14</td>
<!-- <td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">hindi, bengali, tamil, telugu, arabic, german, spanish, french, italian, japanese, korean, dutch, portuguese, chinese</td> -->
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">hi, bn, ta, te, ar, de, es, fr, it, ja, ko, nl, pt, zh</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">MGSM</td>
<td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">5</td>
<td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">en, es, fr, ja, zh</td>
</tr>
</tbody>
</table>
**Model Architecture:**
Granite-4.1-30B baseline is built on a decoder-only dense transformer architecture. Core components of this architecture are: GQA, RoPE, MLP with SwiGLU, RMSNorm, and shared input/output embeddings.
<table>
<thead>
<tr>
<th style="text-align:left; background-color: #001d6c; color: white;">Model</th>
<th style="text-align:center; background-color: #001d6c; color: white;">3B Dense</th>
<th style="text-align:center; background-color: #001d6c; color: white;">8B Dense</th>
<th style="text-align:center; background-color: #001d6c; color: white;">30B Dense</th>
</tr></thead>
<tbody>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Embedding size</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">2560</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">4096</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">4096</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Number of layers</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">40</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">40</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">64</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Attention head size</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">64</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">128</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">128</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Number of attention heads</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">40</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">32</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">32</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Number of KV heads</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">8</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">8</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">8</td>
</tr>
<!--<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Mamba2 state size</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">-</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;"></td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Number of Mamba2 heads</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
<td style="text-align:center; background-color: #DAE8FF; color: black;"></td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
</tr>-->
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">MLP / Shared expert hidden size</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">8192</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">12800</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">32768</td>
</tr>
<!--<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Num. Experts</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
<td style="text-align:center; background-color: #DAE8FF; color: black;"></td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Num. active Experts</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
<td style="text-align:center; background-color: #DAE8FF; color: black;"></td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Expert hidden size</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
<td style="text-align:center; background-color: #DAE8FF; color: black;"></td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
</tr>-->
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">MLP activation</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">SwiGLU</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">SwiGLU</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">SwiGLU</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Sequence length</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">131072</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">131072</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">131072</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;">Position embedding</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">RoPE</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">RoPE</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">RoPE</td>
</tr>
<tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;"># Parameters</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">3B</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;">8B</td>
<td style="text-align:center; background-color: #DAE8FF; color: black;">30B</td>
</tr>
<!-- <tr>
<td style="text-align:left; background-color: #FFFFFF; color: black;"># Active parameters</td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
<td style="text-align:center; background-color: #DAE8FF; color: black;"></td>
<td style="text-align:center; background-color: #FFFFFF; color: black;"></td>
</tr>-->
</tbody></table>
**Training Data:**
Overall, our SFT data is largely comprised of three key sources: (1) publicly available datasets with permissive license, (2) internal synthetic data targeting specific capabilities, and (3) a select set of human-curated data.
**Supervised Fine-Tuning and Reinforcement Learning:**
Instruct model has been fine tuned with significantly improved SFT-pipeline and Reinforcement learning pipelines with high quality mix of various datasets as mentioned above. With rigorous SFT-RL cycles we have improved Granite-4.1 model's tool calling, instruction following and chat capabilities. For further details please check our [Granite-4.1 Blog]((https://huggingface.co/blog/ibm-granite/granite-4-1)).
**Infrastructure:**
We trained the Granite 4.1 Language Models utilizing an NVIDIA GB200 NVL72 cluster hosted in CoreWeave. Intra-rack communication occurs via the 72-GPU NVLink domain, and a non-blocking, full Fat-Tree NDR 400 Gb/s InfiniBand network provides inter-rack communication. This cluster provides a scalable and efficient infrastructure for training our models over thousands of GPUs.
**Ethical Considerations and Limitations:**
Granite 4.1 Instruction Models are primarily finetuned using instruction-response pairs mostly in English, but also multilingual data covering multiple languages. Although this model can handle multilingual dialog use cases, its performance might not be similar to English tasks. In such cases, introducing a small number of examples (few-shot) can help the model in generating more accurate outputs. While this model has been aligned by keeping safety in consideration, the model may in some cases produce inaccurate, biased, or unsafe responses to user prompts. We urge the community to use this model with proper safety testing and tuning tailored for their specific tasks. To enhance safety in enterprise deployments, we recommend using Granite 4.1 Language models alongside [Granite Guardian](https://huggingface.co/ibm-granite/granite-guardian-4.1-8b), a model designed to detect and flag risks in inputs and outputs across key dimensions outlined in the IBM AI Risk Atlas.
**Resources**
- ⭐️ Learn about the latest updates with Granite: https://www.ibm.com/granite
- 📄 Get started with tutorials, best practices, and prompt engineering advice: https://www.ibm.com/granite/docs/
- 💡 Learn about the latest Granite learning resources: https://ibm.biz/granite-learning-resources
<!-- ## Citation
```
@misc{granite-models,
author = {author 1, author2, ...},
title = {},
journal = {},
volume = {},
year = {2024},
url = {https://arxiv.org/abs/0000.00000},
}
``` -->

114
chat_template.jinja Normal file
View File

@@ -0,0 +1,114 @@
{%- 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>' %}
{%- 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.' %}
{%- 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>' %}
{%- 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.' %}
{%- if available_tools is defined and available_tools %}
{%- set tools = available_tools %}
{%- endif %}
{%- set ns = namespace(tools_system_message=tools_system_message_prefix,
documents_system_message=documents_system_message_prefix,
system_message=''
) %}
{%- if tools %}
{%- for tool in tools %}
{%- set ns.tools_system_message = ns.tools_system_message + '\n' + (tool | tojson) %}
{%- endfor %}
{%- set ns.tools_system_message = ns.tools_system_message + tools_system_message_suffix %}
{%- else %}
{%- set ns.tools_system_message = '' %}
{%- endif %}
{%- if documents %}
{%- for document in documents %}
{%- set ns.documents_system_message = ns.documents_system_message + '\n' + (document | tojson) %}
{%- endfor %}
{%- set ns.documents_system_message = ns.documents_system_message + documents_system_message_suffix %}
{%- else %}
{%- set ns.documents_system_message = '' %}
{%- endif %}
{%- if messages[0].role == 'system' %}
{%- if messages[0].content is string %}
{%- set ns.system_message = messages[0].content %}
{%- elif messages[0].content is iterable %}
{%- for entry in messages[0].content %}
{%- if entry.type== 'text' %}
{%- if ns.system_message != '' %}
{%- set ns.system_message = ns.system_message + '\n' %}
{%- endif %}
{%- set ns.system_message = ns.system_message + entry.text %}
{%- endif %}
{%- endfor %}
{%- endif %}
{%- if tools and documents %}
{%- set ns.system_message = ns.system_message + '\n\n' + ns.tools_system_message + '\n\n' + ns.documents_system_message %}
{%- elif tools %}
{%- set ns.system_message = ns.system_message + '\n\n' + ns.tools_system_message %}
{%- elif documents %}
{%- set ns.system_message = ns.system_message + '\n\n' + ns.documents_system_message %}
{%- endif %}
{%- else %}
{%- if tools and documents %}
{%- set ns.system_message = ns.tools_system_message + '\n\n' + ns.documents_system_message %}
{%- elif tools %}
{%- set ns.system_message = ns.tools_system_message %}
{%- elif documents %}
{%- set ns.system_message = ns.documents_system_message %}
{%- endif %}
{%- endif %}
{%- if ns.system_message %}
{{- '<|start_of_role|>system<|end_of_role|>' + ns.system_message + '<|end_of_text|>\n' }}
{%- endif %}
{%- for message in messages %}
{%- set content = namespace(val='') %}
{%- if message.content is string %}
{%- set content.val = message.content %}
{%- else %}
{%- if message.content is iterable %}
{%- for entry in message.content %}
{%- if entry.type== 'text' %}
{%- if content.val != '' %}
{%- set content.val = content.val + '\n' %}
{%- endif %}
{%- set content.val = content.val + entry.text %}
{%- endif %}
{%- endfor %}
{%- endif %}
{%- endif %}
{%- if (message.role == 'user') or (message.role == 'system' and not loop.first) %}
{{- '<|start_of_role|>' + message.role + '<|end_of_role|>' + content.val + '<|end_of_text|>\n' }}
{%- elif message.role == 'assistant' %}
{{- '<|start_of_role|>' + message.role + '<|end_of_role|>' + content.val }}
{%- if message.tool_calls %}
{%- for tool_call in message.tool_calls %}
{%- if (loop.first and content.val) or (not loop.first) %}
{{- '\n' }}
{%- endif %}
{%- if tool_call.function %}
{%- set tool_call = tool_call.function %}
{%- endif %}
{{- '<tool_call>\n{"name": "' }}
{{- tool_call.name }}
{{- '", "arguments": ' }}
{%- if tool_call.arguments is string %}
{{- tool_call.arguments }}
{%- else %}
{{- tool_call.arguments | tojson }}
{%- endif %}
{{- '}\n</tool_call>' }}
{%- endfor %}
{%- endif %}
{{- '<|end_of_text|>\n' }}
{%- elif message.role == 'tool' %}
{%- if loop.first or (messages[loop.index0 - 1].role != 'tool') %}
{{- '<|start_of_role|>user<|end_of_role|>' }}
{%- endif %}
{{- '\n<tool_response>\n' }}
{{- content.val }}
{{- '\n</tool_response>' }}
{%- if loop.last or (messages[loop.index0 + 1].role != 'tool') %}
{{- '<|end_of_text|>\n' }}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|start_of_role|>assistant<|end_of_role|>' }}
{%- endif %}

34
config.json Normal file
View File

@@ -0,0 +1,34 @@
{
"architectures": [
"GraniteForCausalLM"
],
"attention_bias": false,
"attention_dropout": 0.0,
"attention_multiplier": 0.0078125,
"bos_token_id": 100257,
"torch_dtype": "bfloat16",
"embedding_multiplier": 12.0,
"eos_token_id": 100257,
"hidden_act": "silu",
"hidden_size": 4096,
"init_method": "mup",
"initializer_range": 0.1,
"intermediate_size": 32768,
"logits_scaling": 16.0,
"max_position_embeddings": 131072,
"mlp_bias": false,
"model_type": "granite",
"num_attention_heads": 32,
"num_hidden_layers": 64,
"num_key_value_heads": 8,
"pad_token_id": 100256,
"residual_multiplier": 0.175,
"rms_norm_eps": 1e-05,
"rope_scaling": null,
"rope_theta": 50000000,
"tie_word_embeddings": true,
"transformers_version": "4.57.6",
"unsloth_fixed": true,
"use_cache": true,
"vocab_size": 100352
}

7
generation_config.json Normal file
View File

@@ -0,0 +1,7 @@
{
"_from_model_config": true,
"bos_token_id": 100257,
"eos_token_id": 100257,
"pad_token_id": 100256,
"transformers_version": "4.53.3"
}

100001
merges.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3da68efc6d8f4521a5fbd2110c4bf7dc8980801a594263b4b37eae6d7e552461
size 4999680904

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5eb2adac81835084e75a6d6e72b5174928a2490cdf9e64d6a56ca61c11f77c35
size 4798388112

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a6ef358eb2e8b007241cae805a07a3e88dbd4690a6834f08645481f871aa4f1d
size 4982920568

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ae17279f089bd43784604484343cc74609877f9a558a02bdbe722a36570271a0
size 4798388168

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:04656afd99eb901dcfd317a5a1bb8f992b029375c5b41312d3733e2d8ceaa466
size 4982920568

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:988e01044e1cedef41ddb67ea0eebb485ac41ad66cfbb0aedaf7d1af7abf17e1
size 4798388168

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb26321978384faaf005dacd4d5cea2640c3b56a5345388ab745c98e13aab0cf
size 4982920568

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c5300bc74e67dfec4edae5357661702e9b3a13a39c665f704e7daed8d4fedb2c
size 4798388168

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66415273778086c2264be48f53106c08eff57a9108788a69a5574ae0459f9aaf
size 4982920568

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ebfeb0a76a4798ac825fb85cba6a56f160f1ee721dbd80c277d8c8d6c77b98f5
size 4798388168

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c1a625144f3ea50fd60508b843547b24a280603c1b34931c929d160b6cae6cb
size 4982920568

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d0f7c9dd784559d7be4c8abe9111267bb18ad57d26484cb75aeacd8e9af1397
size 3825300016

View File

@@ -0,0 +1,586 @@
{
"metadata": {
"total_parameters": 28865728512,
"total_size": 57731457024
},
"weight_map": {
"model.embed_tokens.weight": "model-00001-of-00012.safetensors",
"model.layers.0.input_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.1.input_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.10.input_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.10.mlp.down_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.10.mlp.gate_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.10.mlp.up_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.10.post_attention_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.11.input_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.11.mlp.down_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.11.mlp.gate_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.11.mlp.up_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.11.post_attention_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.11.self_attn.k_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.11.self_attn.o_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.11.self_attn.q_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.11.self_attn.v_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.12.input_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.12.mlp.down_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.12.mlp.gate_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.12.mlp.up_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.12.post_attention_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.12.self_attn.k_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.12.self_attn.o_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.12.self_attn.q_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.12.self_attn.v_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.13.input_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.13.mlp.down_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.13.mlp.gate_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.13.mlp.up_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.13.post_attention_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.13.self_attn.k_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.13.self_attn.o_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.13.self_attn.q_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.13.self_attn.v_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.14.input_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.14.mlp.down_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.14.mlp.gate_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.14.mlp.up_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.14.post_attention_layernorm.weight": "model-00003-of-00012.safetensors",
"model.layers.14.self_attn.k_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.14.self_attn.o_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.14.self_attn.q_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.14.self_attn.v_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.15.input_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.15.mlp.down_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.15.mlp.gate_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.15.mlp.up_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.15.post_attention_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.15.self_attn.k_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.15.self_attn.o_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.15.self_attn.q_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.15.self_attn.v_proj.weight": "model-00003-of-00012.safetensors",
"model.layers.16.input_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.16.mlp.down_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.16.mlp.gate_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.16.mlp.up_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.16.post_attention_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.16.self_attn.k_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.16.self_attn.o_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.16.self_attn.q_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.16.self_attn.v_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.17.input_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.17.mlp.down_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.17.mlp.gate_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.17.mlp.up_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.17.post_attention_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.17.self_attn.k_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.17.self_attn.o_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.17.self_attn.q_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.17.self_attn.v_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.18.input_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.18.mlp.down_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.18.mlp.gate_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.18.mlp.up_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.18.post_attention_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.18.self_attn.k_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.18.self_attn.o_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.18.self_attn.q_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.18.self_attn.v_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.19.input_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.19.mlp.down_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.19.mlp.gate_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.19.mlp.up_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.19.post_attention_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.19.self_attn.k_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.19.self_attn.o_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.19.self_attn.q_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.19.self_attn.v_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.2.input_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.20.input_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.20.mlp.down_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.20.mlp.gate_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.20.mlp.up_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.20.post_attention_layernorm.weight": "model-00004-of-00012.safetensors",
"model.layers.20.self_attn.k_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.20.self_attn.o_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.20.self_attn.q_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.20.self_attn.v_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.21.input_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.21.mlp.down_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.21.mlp.gate_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.21.mlp.up_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.21.post_attention_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.21.self_attn.k_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.21.self_attn.o_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.21.self_attn.q_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.21.self_attn.v_proj.weight": "model-00004-of-00012.safetensors",
"model.layers.22.input_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.22.mlp.down_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.22.mlp.gate_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.22.mlp.up_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.22.post_attention_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.22.self_attn.k_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.22.self_attn.o_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.22.self_attn.q_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.22.self_attn.v_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.23.input_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.23.mlp.down_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.23.mlp.gate_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.23.mlp.up_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.23.post_attention_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.23.self_attn.k_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.23.self_attn.o_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.23.self_attn.q_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.23.self_attn.v_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.24.input_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.24.mlp.down_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.24.mlp.gate_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.24.mlp.up_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.24.post_attention_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.24.self_attn.k_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.24.self_attn.o_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.24.self_attn.q_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.24.self_attn.v_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.25.input_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.25.mlp.down_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.25.mlp.gate_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.25.mlp.up_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.25.post_attention_layernorm.weight": "model-00005-of-00012.safetensors",
"model.layers.25.self_attn.k_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.25.self_attn.o_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.25.self_attn.q_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.25.self_attn.v_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.26.input_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.26.mlp.down_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.26.mlp.gate_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.26.mlp.up_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.26.post_attention_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.26.self_attn.k_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.26.self_attn.o_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.26.self_attn.q_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.26.self_attn.v_proj.weight": "model-00005-of-00012.safetensors",
"model.layers.27.input_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.27.mlp.down_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.27.mlp.gate_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.27.mlp.up_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.27.post_attention_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.27.self_attn.k_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.27.self_attn.o_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.27.self_attn.q_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.27.self_attn.v_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.28.input_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.28.mlp.down_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.28.mlp.gate_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.28.mlp.up_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.28.post_attention_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.28.self_attn.k_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.28.self_attn.o_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.28.self_attn.q_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.28.self_attn.v_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.29.input_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.29.mlp.down_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.29.mlp.gate_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.29.mlp.up_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.29.post_attention_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.29.self_attn.k_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.29.self_attn.o_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.29.self_attn.q_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.29.self_attn.v_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.3.input_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00012.safetensors",
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.30.input_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.30.mlp.down_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.30.mlp.gate_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.30.mlp.up_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.30.post_attention_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.30.self_attn.k_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.30.self_attn.o_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.30.self_attn.q_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.30.self_attn.v_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.31.input_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.31.mlp.down_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.31.mlp.gate_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.31.mlp.up_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.31.post_attention_layernorm.weight": "model-00006-of-00012.safetensors",
"model.layers.31.self_attn.k_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.31.self_attn.o_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.31.self_attn.q_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.31.self_attn.v_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.32.input_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.32.mlp.down_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.32.mlp.gate_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.32.mlp.up_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.32.post_attention_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.32.self_attn.k_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.32.self_attn.o_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.32.self_attn.q_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.32.self_attn.v_proj.weight": "model-00006-of-00012.safetensors",
"model.layers.33.input_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.33.mlp.down_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.33.mlp.gate_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.33.mlp.up_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.33.post_attention_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.33.self_attn.k_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.33.self_attn.o_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.33.self_attn.q_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.33.self_attn.v_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.34.input_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.34.mlp.down_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.34.mlp.gate_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.34.mlp.up_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.34.post_attention_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.34.self_attn.k_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.34.self_attn.o_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.34.self_attn.q_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.34.self_attn.v_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.35.input_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.35.mlp.down_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.35.mlp.gate_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.35.mlp.up_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.35.post_attention_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.35.self_attn.k_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.35.self_attn.o_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.35.self_attn.q_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.35.self_attn.v_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.36.input_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.36.mlp.down_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.36.mlp.gate_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.36.mlp.up_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.36.post_attention_layernorm.weight": "model-00007-of-00012.safetensors",
"model.layers.36.self_attn.k_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.36.self_attn.o_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.36.self_attn.q_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.36.self_attn.v_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.37.input_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.37.mlp.down_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.37.mlp.gate_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.37.mlp.up_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.37.post_attention_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.37.self_attn.k_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.37.self_attn.o_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.37.self_attn.q_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.37.self_attn.v_proj.weight": "model-00007-of-00012.safetensors",
"model.layers.38.input_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.38.mlp.down_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.38.mlp.gate_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.38.mlp.up_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.38.post_attention_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.38.self_attn.k_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.38.self_attn.o_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.38.self_attn.q_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.38.self_attn.v_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.39.input_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.39.mlp.down_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.39.mlp.gate_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.39.mlp.up_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.39.post_attention_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.39.self_attn.k_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.39.self_attn.o_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.39.self_attn.q_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.39.self_attn.v_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.4.input_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.4.mlp.down_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.4.post_attention_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00012.safetensors",
"model.layers.40.input_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.40.mlp.down_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.40.mlp.gate_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.40.mlp.up_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.40.post_attention_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.40.self_attn.k_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.40.self_attn.o_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.40.self_attn.q_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.40.self_attn.v_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.41.input_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.41.mlp.down_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.41.mlp.gate_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.41.mlp.up_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.41.post_attention_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.41.self_attn.k_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.41.self_attn.o_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.41.self_attn.q_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.41.self_attn.v_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.42.input_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.42.mlp.down_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.42.mlp.gate_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.42.mlp.up_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.42.post_attention_layernorm.weight": "model-00008-of-00012.safetensors",
"model.layers.42.self_attn.k_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.42.self_attn.o_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.42.self_attn.q_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.42.self_attn.v_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.43.input_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.43.mlp.down_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.43.mlp.gate_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.43.mlp.up_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.43.post_attention_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.43.self_attn.k_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.43.self_attn.o_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.43.self_attn.q_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.43.self_attn.v_proj.weight": "model-00008-of-00012.safetensors",
"model.layers.44.input_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.44.mlp.down_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.44.mlp.gate_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.44.mlp.up_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.44.post_attention_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.44.self_attn.k_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.44.self_attn.o_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.44.self_attn.q_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.44.self_attn.v_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.45.input_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.45.mlp.down_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.45.mlp.gate_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.45.mlp.up_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.45.post_attention_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.45.self_attn.k_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.45.self_attn.o_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.45.self_attn.q_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.45.self_attn.v_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.46.input_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.46.mlp.down_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.46.mlp.gate_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.46.mlp.up_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.46.post_attention_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.46.self_attn.k_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.46.self_attn.o_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.46.self_attn.q_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.46.self_attn.v_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.47.input_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.47.mlp.down_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.47.mlp.gate_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.47.mlp.up_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.47.post_attention_layernorm.weight": "model-00009-of-00012.safetensors",
"model.layers.47.self_attn.k_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.47.self_attn.o_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.47.self_attn.q_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.47.self_attn.v_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.48.input_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.48.mlp.down_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.48.mlp.gate_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.48.mlp.up_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.48.post_attention_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.48.self_attn.k_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.48.self_attn.o_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.48.self_attn.q_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.48.self_attn.v_proj.weight": "model-00009-of-00012.safetensors",
"model.layers.49.input_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.49.mlp.down_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.49.mlp.gate_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.49.mlp.up_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.49.post_attention_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.49.self_attn.k_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.49.self_attn.o_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.49.self_attn.q_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.49.self_attn.v_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.5.input_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.5.mlp.down_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.5.mlp.gate_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.5.mlp.up_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.5.post_attention_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.5.self_attn.k_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.5.self_attn.o_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.5.self_attn.q_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.5.self_attn.v_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.50.input_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.50.mlp.down_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.50.mlp.gate_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.50.mlp.up_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.50.post_attention_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.50.self_attn.k_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.50.self_attn.o_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.50.self_attn.q_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.50.self_attn.v_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.51.input_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.51.mlp.down_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.51.mlp.gate_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.51.mlp.up_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.51.post_attention_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.51.self_attn.k_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.51.self_attn.o_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.51.self_attn.q_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.51.self_attn.v_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.52.input_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.52.mlp.down_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.52.mlp.gate_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.52.mlp.up_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.52.post_attention_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.52.self_attn.k_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.52.self_attn.o_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.52.self_attn.q_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.52.self_attn.v_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.53.input_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.53.mlp.down_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.53.mlp.gate_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.53.mlp.up_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.53.post_attention_layernorm.weight": "model-00010-of-00012.safetensors",
"model.layers.53.self_attn.k_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.53.self_attn.o_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.53.self_attn.q_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.53.self_attn.v_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.54.input_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.54.mlp.down_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.54.mlp.gate_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.54.mlp.up_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.54.post_attention_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.54.self_attn.k_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.54.self_attn.o_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.54.self_attn.q_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.54.self_attn.v_proj.weight": "model-00010-of-00012.safetensors",
"model.layers.55.input_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.55.mlp.down_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.55.mlp.gate_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.55.mlp.up_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.55.post_attention_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.55.self_attn.k_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.55.self_attn.o_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.55.self_attn.q_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.55.self_attn.v_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.56.input_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.56.mlp.down_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.56.mlp.gate_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.56.mlp.up_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.56.post_attention_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.56.self_attn.k_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.56.self_attn.o_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.56.self_attn.q_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.56.self_attn.v_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.57.input_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.57.mlp.down_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.57.mlp.gate_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.57.mlp.up_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.57.post_attention_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.57.self_attn.k_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.57.self_attn.o_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.57.self_attn.q_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.57.self_attn.v_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.58.input_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.58.mlp.down_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.58.mlp.gate_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.58.mlp.up_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.58.post_attention_layernorm.weight": "model-00011-of-00012.safetensors",
"model.layers.58.self_attn.k_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.58.self_attn.o_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.58.self_attn.q_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.58.self_attn.v_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.59.input_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.59.mlp.down_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.59.mlp.gate_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.59.mlp.up_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.59.post_attention_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.59.self_attn.k_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.59.self_attn.o_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.59.self_attn.q_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.59.self_attn.v_proj.weight": "model-00011-of-00012.safetensors",
"model.layers.6.input_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.6.mlp.down_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.6.mlp.gate_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.6.mlp.up_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.6.post_attention_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.6.self_attn.k_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.6.self_attn.o_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.6.self_attn.q_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.6.self_attn.v_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.60.input_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.60.mlp.down_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.60.mlp.gate_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.60.mlp.up_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.60.post_attention_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.60.self_attn.k_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.60.self_attn.o_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.60.self_attn.q_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.60.self_attn.v_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.61.input_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.61.mlp.down_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.61.mlp.gate_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.61.mlp.up_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.61.post_attention_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.61.self_attn.k_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.61.self_attn.o_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.61.self_attn.q_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.61.self_attn.v_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.62.input_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.62.mlp.down_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.62.mlp.gate_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.62.mlp.up_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.62.post_attention_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.62.self_attn.k_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.62.self_attn.o_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.62.self_attn.q_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.62.self_attn.v_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.63.input_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.63.mlp.down_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.63.mlp.gate_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.63.mlp.up_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.63.post_attention_layernorm.weight": "model-00012-of-00012.safetensors",
"model.layers.63.self_attn.k_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.63.self_attn.o_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.63.self_attn.q_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.63.self_attn.v_proj.weight": "model-00012-of-00012.safetensors",
"model.layers.7.input_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.7.mlp.gate_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.7.mlp.up_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.7.self_attn.k_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.7.self_attn.o_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.7.self_attn.q_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.7.self_attn.v_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.8.input_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.8.self_attn.k_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.8.self_attn.q_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.8.self_attn.v_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.9.input_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00012.safetensors",
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00012.safetensors",
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00012.safetensors",
"model.norm.weight": "model-00012-of-00012.safetensors"
}
}

1
model.sig Normal file

File diff suppressed because one or more lines are too long

30
special_tokens_map.json Normal file
View File

@@ -0,0 +1,30 @@
{
"bos_token": {
"content": "<|end_of_text|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"eos_token": {
"content": "<|end_of_text|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"pad_token": {
"content": "<|pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"unk_token": {
"content": "<|unk|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
}
}

501264
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

784
tokenizer_config.json Normal file

File diff suppressed because one or more lines are too long

1
vocab.json Normal file

File diff suppressed because one or more lines are too long