Commit
·
fe95b77
0
Parent(s):
Duplicate from GetSoloTech/GPT-OSS-Code-Reasoning-20B
Browse filesCo-authored-by: Zeeshaan Mohammed <zeeshaan-ai@users.noreply.huggingface.co>
- .gitattributes +37 -0
- README.md +143 -0
- chat_template.jinja +315 -0
- config.json +77 -0
- generation_config.json +11 -0
- gpt-oss-reasoning.png +3 -0
- model-00000-of-00002.safetensors +3 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +1 -0
- special_tokens_map.json +23 -0
- tokenizer.json +3 -0
- tokenizer_config.json +185 -0
.gitattributes
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
gpt-oss-reasoning.png filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
datasets:
|
| 3 |
+
- nvidia/OpenCodeReasoning-2
|
| 4 |
+
- GetSoloTech/Code-Reasoning
|
| 5 |
+
base_model:
|
| 6 |
+
- openai/gpt-oss-20b
|
| 7 |
+
library_name: transformers
|
| 8 |
+
tags:
|
| 9 |
+
- code-reasoning
|
| 10 |
+
- coding
|
| 11 |
+
- reasoning
|
| 12 |
+
- problem-solving
|
| 13 |
+
- algorithms
|
| 14 |
+
- python
|
| 15 |
+
- c++
|
| 16 |
+
- competitive-programming
|
| 17 |
+
- vllm
|
| 18 |
+
pipeline_tag: text-generation
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
<img src="gpt-oss-reasoning.png" width="700"/>
|
| 22 |
+
|
| 23 |
+
### Overview
|
| 24 |
+
|
| 25 |
+
- Base model: `openai/gpt-oss-20b`
|
| 26 |
+
- Objective: Supervised fine-tuning for competitive programming and algorithmic reasoning
|
| 27 |
+
- Dataset: `nvidia/OpenCodeReasoning-2` (OCR-2), combining `python` and `cpp` splits. Each sample reconstructs the upstream question and uses the dataset's `r1_generation` as the assistant response
|
| 28 |
+
- Context length: 4096 tokens
|
| 29 |
+
- Training method: LoRA SFT via TRL `SFTTrainer`
|
| 30 |
+
|
| 31 |
+
### Intended Use
|
| 32 |
+
|
| 33 |
+
- Intended: Generating Python/C++ solutions and reasoning for competitive programming tasks
|
| 34 |
+
- Out of scope: Safety-critical applications. May hallucinate or produce incorrect/inefficient code
|
| 35 |
+
|
| 36 |
+
### Prompt Format
|
| 37 |
+
|
| 38 |
+
This model was trained in a chat format. Recommended structure:
|
| 39 |
+
|
| 40 |
+
```python
|
| 41 |
+
messages = [
|
| 42 |
+
{"role": "system", "content": "You are an expert competitive programmer. Read the problem and produce a correct, efficient solution. Include reasoning if helpful."},
|
| 43 |
+
{"role": "user", "content": problem_text},
|
| 44 |
+
]
|
| 45 |
+
|
| 46 |
+
prompt = tokenizer.apply_chat_template(
|
| 47 |
+
messages,
|
| 48 |
+
tokenize=False,
|
| 49 |
+
add_generation_prompt=True,
|
| 50 |
+
)
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
If you prefer plain text, place the problem text after a brief instruction, but chat format generally yields better results.
|
| 54 |
+
|
| 55 |
+
### Reasoning Effort
|
| 56 |
+
|
| 57 |
+
Specify reasoning effort in `apply_chat_template` (supported values: "low", "medium" (default), or "high"):
|
| 58 |
+
|
| 59 |
+
```python
|
| 60 |
+
messages = [
|
| 61 |
+
{"role": "system", "content": "Always respond in riddles"},
|
| 62 |
+
{"role": "user", "content": "Explain why the meaning of life is 42"},
|
| 63 |
+
]
|
| 64 |
+
|
| 65 |
+
inputs = tokenizer.apply_chat_template(
|
| 66 |
+
messages,
|
| 67 |
+
add_generation_prompt=True,
|
| 68 |
+
return_tensors="pt",
|
| 69 |
+
return_dict=True,
|
| 70 |
+
reasoning_effort="high",
|
| 71 |
+
).to(model.device)
|
| 72 |
+
|
| 73 |
+
generated = model.generate(**inputs, max_new_tokens=500)
|
| 74 |
+
print(tokenizer.decode(generated[0][inputs["input_ids"].shape[-1]:]))
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
### Quick Start (Transformers)
|
| 78 |
+
|
| 79 |
+
```python
|
| 80 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 81 |
+
import torch
|
| 82 |
+
|
| 83 |
+
model_id = "GetSoloTech/GPT-OSS-Code-Reasoning-20B"
|
| 84 |
+
|
| 85 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 86 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 87 |
+
model_id,
|
| 88 |
+
torch_dtype=auto,
|
| 89 |
+
device_map="auto",
|
| 90 |
+
)
|
| 91 |
+
|
| 92 |
+
problem_text = """
|
| 93 |
+
You are given an array of integers ... (your problem here)
|
| 94 |
+
"""
|
| 95 |
+
|
| 96 |
+
messages = [
|
| 97 |
+
{"role": "system", "content": "You are an expert competitive programmer. Read the problem and produce a correct, efficient solution. Include reasoning if helpful."},
|
| 98 |
+
{"role": "user", "content": problem_text},
|
| 99 |
+
]
|
| 100 |
+
|
| 101 |
+
input_text = tokenizer.apply_chat_template(
|
| 102 |
+
messages,
|
| 103 |
+
tokenize=False,
|
| 104 |
+
add_generation_prompt=True,
|
| 105 |
+
reasoning_effort="medium",
|
| 106 |
+
)
|
| 107 |
+
|
| 108 |
+
inputs = tokenizer([input_text], return_tensors="pt").to(model.device)
|
| 109 |
+
outputs = model.generate(
|
| 110 |
+
**inputs,
|
| 111 |
+
max_new_tokens=768,
|
| 112 |
+
temperature=0.3,
|
| 113 |
+
top_p=0.9,
|
| 114 |
+
repetition_penalty=1.1,
|
| 115 |
+
)
|
| 116 |
+
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 117 |
+
```
|
| 118 |
+
|
| 119 |
+
### Generation Tips
|
| 120 |
+
|
| 121 |
+
- Reasoning style: Lower temperature (0.2–0.5) for clearer step-by-step reasoning
|
| 122 |
+
- Length: Use `max_new_tokens` 512–1024 for full solutions; shorter for hints
|
| 123 |
+
- Stop tokens: If you only want final code, consider post-processing the model output to extract the last code block
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
### Dataset Construction Notes
|
| 127 |
+
|
| 128 |
+
- Source: `nvidia/OpenCodeReasoning-2` with `python` and `cpp` splits
|
| 129 |
+
- For each split, the script:
|
| 130 |
+
- Shuffles and selects up to `--take_samples` examples per split
|
| 131 |
+
- Reconstructs the problem statement from upstream benchmarks (TACO, APPS, DeepMind CodeContests, `open-r1/codeforces`)
|
| 132 |
+
- Filters out rows with missing/empty questions or assistant responses
|
| 133 |
+
- Builds chat-style `messages` and a formatted `text` field with the tokenizer's chat template
|
| 134 |
+
- The final training set is the concatenation of both splits, followed by an optional `train_test_split` according to `--eval_ratio`
|
| 135 |
+
|
| 136 |
+
|
| 137 |
+
### Acknowledgements
|
| 138 |
+
|
| 139 |
+
- Unsloth (`FastLanguageModel`) for efficient 4-bit loading and fast PEFT
|
| 140 |
+
- TRL (`SFTTrainer`) for straightforward supervised fine-tuning
|
| 141 |
+
- NVIDIA OpenCodeReasoning-2 and upstream benchmarks (TACO, APPS, CodeContests, `open-r1/codeforces`)
|
| 142 |
+
|
| 143 |
+
---
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,315 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{# Copyright 2025-present Unsloth. Apache 2.0 License. Unsloth chat template fixes. Edited from ggml-org & OpenAI #}
|
| 2 |
+
{#-
|
| 3 |
+
In addition to the normal inputs of `messages` and `tools`, this template also accepts the
|
| 4 |
+
following kwargs:
|
| 5 |
+
- "builtin_tools": A list, can contain "browser" and/or "python".
|
| 6 |
+
- "model_identity": A string that optionally describes the model identity.
|
| 7 |
+
- "reasoning_effort": A string that describes the reasoning effort, defaults to "medium".
|
| 8 |
+
#}
|
| 9 |
+
|
| 10 |
+
{#- Tool Definition Rendering ============================================== #}
|
| 11 |
+
{%- macro render_typescript_type(param_spec, required_params, is_nullable=false) -%}
|
| 12 |
+
{%- if param_spec.type == "array" -%}
|
| 13 |
+
{%- if param_spec['items'] -%}
|
| 14 |
+
{%- if param_spec['items']['type'] == "string" -%}
|
| 15 |
+
{{- "string[]" }}
|
| 16 |
+
{%- elif param_spec['items']['type'] == "number" -%}
|
| 17 |
+
{{- "number[]" }}
|
| 18 |
+
{%- elif param_spec['items']['type'] == "integer" -%}
|
| 19 |
+
{{- "number[]" }}
|
| 20 |
+
{%- elif param_spec['items']['type'] == "boolean" -%}
|
| 21 |
+
{{- "boolean[]" }}
|
| 22 |
+
{%- else -%}
|
| 23 |
+
{%- set inner_type = render_typescript_type(param_spec['items'], required_params) -%}
|
| 24 |
+
{%- if inner_type == "object | object" or inner_type|length > 50 -%}
|
| 25 |
+
{{- "any[]" }}
|
| 26 |
+
{%- else -%}
|
| 27 |
+
{{- inner_type + "[]" }}
|
| 28 |
+
{%- endif -%}
|
| 29 |
+
{%- endif -%}
|
| 30 |
+
{%- if param_spec.nullable -%}
|
| 31 |
+
{{- " | null" }}
|
| 32 |
+
{%- endif -%}
|
| 33 |
+
{%- else -%}
|
| 34 |
+
{{- "any[]" }}
|
| 35 |
+
{%- if param_spec.nullable -%}
|
| 36 |
+
{{- " | null" }}
|
| 37 |
+
{%- endif -%}
|
| 38 |
+
{%- endif -%}
|
| 39 |
+
{%- elif param_spec.type is defined and param_spec.type is iterable and param_spec.type is not string and param_spec.type is not mapping and param_spec.type[0] is defined -%}
|
| 40 |
+
{#- Handle array of types like ["object", "object"] from Union[dict, list] #}
|
| 41 |
+
{%- if param_spec.type | length > 1 -%}
|
| 42 |
+
{{- param_spec.type | join(" | ") }}
|
| 43 |
+
{%- else -%}
|
| 44 |
+
{{- param_spec.type[0] }}
|
| 45 |
+
{%- endif -%}
|
| 46 |
+
{%- elif param_spec.oneOf -%}
|
| 47 |
+
{#- Handle oneOf schemas - check for complex unions and fallback to any #}
|
| 48 |
+
{%- set has_object_variants = false -%}
|
| 49 |
+
{%- for variant in param_spec.oneOf -%}
|
| 50 |
+
{%- if variant.type == "object" -%}
|
| 51 |
+
{%- set has_object_variants = true -%}
|
| 52 |
+
{%- endif -%}
|
| 53 |
+
{%- endfor -%}
|
| 54 |
+
{%- if has_object_variants and param_spec.oneOf|length > 1 -%}
|
| 55 |
+
{{- "any" }}
|
| 56 |
+
{%- else -%}
|
| 57 |
+
{%- for variant in param_spec.oneOf -%}
|
| 58 |
+
{{- render_typescript_type(variant, required_params) -}}
|
| 59 |
+
{%- if variant.description %}
|
| 60 |
+
{{- "// " + variant.description }}
|
| 61 |
+
{%- endif -%}
|
| 62 |
+
{%- if variant.default is defined %}
|
| 63 |
+
{{ "// default: " + variant.default|tojson }}
|
| 64 |
+
{%- endif -%}
|
| 65 |
+
{%- if not loop.last %}
|
| 66 |
+
{{- " | " }}
|
| 67 |
+
{% endif -%}
|
| 68 |
+
{%- endfor -%}
|
| 69 |
+
{%- endif -%}
|
| 70 |
+
{%- elif param_spec.type == "string" -%}
|
| 71 |
+
{%- if param_spec.enum -%}
|
| 72 |
+
{{- '"' + param_spec.enum|join('" | "') + '"' -}}
|
| 73 |
+
{%- else -%}
|
| 74 |
+
{{- "string" }}
|
| 75 |
+
{%- if param_spec.nullable %}
|
| 76 |
+
{{- " | null" }}
|
| 77 |
+
{%- endif -%}
|
| 78 |
+
{%- endif -%}
|
| 79 |
+
{%- elif param_spec.type == "number" -%}
|
| 80 |
+
{{- "number" }}
|
| 81 |
+
{%- elif param_spec.type == "integer" -%}
|
| 82 |
+
{{- "number" }}
|
| 83 |
+
{%- elif param_spec.type == "boolean" -%}
|
| 84 |
+
{{- "boolean" }}
|
| 85 |
+
|
| 86 |
+
{%- elif param_spec.type == "object" -%}
|
| 87 |
+
{%- if param_spec.properties -%}
|
| 88 |
+
{{- "{\n" }}
|
| 89 |
+
{%- for prop_name, prop_spec in param_spec.properties.items() -%}
|
| 90 |
+
{{- prop_name -}}
|
| 91 |
+
{%- if prop_name not in (param_spec.required or []) -%}
|
| 92 |
+
{{- "?" }}
|
| 93 |
+
{%- endif -%}
|
| 94 |
+
{{- ": " }}
|
| 95 |
+
{{ render_typescript_type(prop_spec, param_spec.required or []) }}
|
| 96 |
+
{%- if not loop.last -%}
|
| 97 |
+
{{-", " }}
|
| 98 |
+
{%- endif -%}
|
| 99 |
+
{%- endfor -%}
|
| 100 |
+
{{- "}" }}
|
| 101 |
+
{%- else -%}
|
| 102 |
+
{{- "object" }}
|
| 103 |
+
{%- endif -%}
|
| 104 |
+
{%- else -%}
|
| 105 |
+
{{- "any" }}
|
| 106 |
+
{%- endif -%}
|
| 107 |
+
{%- endmacro -%}
|
| 108 |
+
|
| 109 |
+
{%- macro render_tool_namespace(namespace_name, tools) -%}
|
| 110 |
+
{{- "## " + namespace_name + "\n\n" }}
|
| 111 |
+
{{- "namespace " + namespace_name + " {\n\n" }}
|
| 112 |
+
{%- for tool in tools %}
|
| 113 |
+
{%- set tool = tool.function %}
|
| 114 |
+
{{- "// " + tool.description + "\n" }}
|
| 115 |
+
{{- "type "+ tool.name + " = " }}
|
| 116 |
+
{%- if tool.parameters and tool.parameters.properties -%}
|
| 117 |
+
{{- "(_: " }}
|
| 118 |
+
{{- "{\n" }}
|
| 119 |
+
{%- for param_name, param_spec in tool.parameters.properties.items() %}
|
| 120 |
+
{{- "// " + param_spec.description + "\n" }}
|
| 121 |
+
{{- param_name }}
|
| 122 |
+
{%- if param_name not in (tool.parameters.required or []) -%}
|
| 123 |
+
{{- "?" }}
|
| 124 |
+
{%- endif -%}
|
| 125 |
+
{{- ": " }}
|
| 126 |
+
{{- render_typescript_type(param_spec, tool.parameters.required or []) }}
|
| 127 |
+
{%- if param_spec.default is defined -%}
|
| 128 |
+
{%- if param_spec.enum %}
|
| 129 |
+
{{- ", // default: " + param_spec.default }}
|
| 130 |
+
{%- elif param_spec.oneOf %}
|
| 131 |
+
{{- "// default: " + param_spec.default }}
|
| 132 |
+
{%- else %}
|
| 133 |
+
{{- ", // default: " + param_spec.default|tojson }}
|
| 134 |
+
{%- endif -%}
|
| 135 |
+
{%- endif -%}
|
| 136 |
+
{%- if not loop.last %}
|
| 137 |
+
{{- ",\n" }}
|
| 138 |
+
{%- else %}
|
| 139 |
+
{{- "\n" }}
|
| 140 |
+
{%- endif -%}
|
| 141 |
+
{%- endfor %}
|
| 142 |
+
{{- "}) => any;\n\n" }}
|
| 143 |
+
{%- else -%}
|
| 144 |
+
{{- "() => any;\n\n" }}
|
| 145 |
+
{%- endif -%}
|
| 146 |
+
{%- endfor %}
|
| 147 |
+
{{- "} // namespace " + namespace_name }}
|
| 148 |
+
{%- endmacro -%}
|
| 149 |
+
|
| 150 |
+
{%- macro render_builtin_tools(browser_tool, python_tool) -%}
|
| 151 |
+
{%- if browser_tool %}
|
| 152 |
+
{{- "## browser\n\n" }}
|
| 153 |
+
{{- "// Tool for browsing.\n" }}
|
| 154 |
+
{{- "// The `cursor` appears in brackets before each browsing display: `[{cursor}]`.\n" }}
|
| 155 |
+
{{- "// Cite information from the tool using the following format:\n" }}
|
| 156 |
+
{{- "// `【{cursor}†L{line_start}(-L{line_end})?】`, for example: `【6†L9-L11】` or `【8†L3】`.\n" }}
|
| 157 |
+
{{- "// Do not quote more than 10 words directly from the tool output.\n" }}
|
| 158 |
+
{{- "// sources=web (default: web)\n" }}
|
| 159 |
+
{{- "namespace browser {\n\n" }}
|
| 160 |
+
{{- "// Searches for information related to `query` and displays `topn` results.\n" }}
|
| 161 |
+
{{- "type search = (_: {\n" }}
|
| 162 |
+
{{- "query: string,\n" }}
|
| 163 |
+
{{- "topn?: number, // default: 10\n" }}
|
| 164 |
+
{{- "source?: string,\n" }}
|
| 165 |
+
{{- "}) => any;\n\n" }}
|
| 166 |
+
{{- "// Opens the link `id` from the page indicated by `cursor` starting at line number `loc`, showing `num_lines` lines.\n" }}
|
| 167 |
+
{{- "// Valid link ids are displayed with the formatting: `【{id}†.*】`.\n" }}
|
| 168 |
+
{{- "// If `cursor` is not provided, the most recent page is implied.\n" }}
|
| 169 |
+
{{- "// If `id` is a string, it is treated as a fully qualified URL associated with `source`.\n" }}
|
| 170 |
+
{{- "// If `loc` is not provided, the viewport will be positioned at the beginning of the document or centered on the most relevant passage, if available.\n" }}
|
| 171 |
+
{{- "// Use this function without `id` to scroll to a new location of an opened page.\n" }}
|
| 172 |
+
{{- "type open = (_: {\n" }}
|
| 173 |
+
{{- "id?: number | string, // default: -1\n" }}
|
| 174 |
+
{{- "cursor?: number, // default: -1\n" }}
|
| 175 |
+
{{- "loc?: number, // default: -1\n" }}
|
| 176 |
+
{{- "num_lines?: number, // default: -1\n" }}
|
| 177 |
+
{{- "view_source?: boolean, // default: false\n" }}
|
| 178 |
+
{{- "source?: string,\n" }}
|
| 179 |
+
{{- "}) => any;\n\n" }}
|
| 180 |
+
{{- "// Finds exact matches of `pattern` in the current page, or the page given by `cursor`.\n" }}
|
| 181 |
+
{{- "type find = (_: {\n" }}
|
| 182 |
+
{{- "pattern: string,\n" }}
|
| 183 |
+
{{- "cursor?: number, // default: -1\n" }}
|
| 184 |
+
{{- "}) => any;\n\n" }}
|
| 185 |
+
{{- "} // namespace browser\n\n" }}
|
| 186 |
+
{%- endif -%}
|
| 187 |
+
|
| 188 |
+
{%- if python_tool %}
|
| 189 |
+
{{- "## python\n\n" }}
|
| 190 |
+
{{- "Use this tool to execute Python code in your chain of thought. The code will not be shown to the user. This tool should be used for internal reasoning, but not for code that is intended to be visible to the user (e.g. when creating plots, tables, or files).\n\n" }}
|
| 191 |
+
{{- "When you send a message containing Python code to python, it will be executed in a stateful Jupyter notebook environment. python will respond with the output of the execution or time out after 120.0 seconds. The drive at '/mnt/data' can be used to save and persist user files. Internet access for this session is UNKNOWN. Depends on the cluster.\n\n" }}
|
| 192 |
+
{%- endif -%}
|
| 193 |
+
{%- endmacro -%}
|
| 194 |
+
|
| 195 |
+
{#- System Message Construction ============================================ #}
|
| 196 |
+
{%- macro build_system_message() -%}
|
| 197 |
+
{%- if model_identity is not defined %}
|
| 198 |
+
{{- "You are ChatGPT, a large language model trained by OpenAI.\n" -}}
|
| 199 |
+
{%- else %}
|
| 200 |
+
{{- model_identity }}
|
| 201 |
+
{%- endif %}
|
| 202 |
+
{{- "Knowledge cutoff: 2024-06\n" }}
|
| 203 |
+
{{- "Current date: " + strftime_now("%Y-%m-%d") + "\n\n" }}
|
| 204 |
+
{%- if reasoning_effort is not defined %}
|
| 205 |
+
{%- set reasoning_effort = "medium" %}
|
| 206 |
+
{%- endif %}
|
| 207 |
+
{{- "Reasoning: " + reasoning_effort + "\n\n" }}
|
| 208 |
+
{%- if builtin_tools is defined %}
|
| 209 |
+
{{- "# Tools\n\n" }}
|
| 210 |
+
{%- set available_builtin_tools = namespace(browser=false, python=false) %}
|
| 211 |
+
{%- for tool in builtin_tools %}
|
| 212 |
+
{%- if tool == "browser" %}
|
| 213 |
+
{%- set available_builtin_tools.browser = true %}
|
| 214 |
+
{%- elif tool == "python" %}
|
| 215 |
+
{%- set available_builtin_tools.python = true %}
|
| 216 |
+
{%- endif %}
|
| 217 |
+
{%- endfor %}
|
| 218 |
+
{{- render_builtin_tools(available_builtin_tools.browser, available_builtin_tools.python) }}
|
| 219 |
+
{%- endif -%}
|
| 220 |
+
{{- "# Valid channels: analysis, commentary, final. Channel must be included for every message." }}
|
| 221 |
+
{%- if tools is defined -%}
|
| 222 |
+
{{- "\nCalls to these tools must go to the commentary channel: 'functions'." }}
|
| 223 |
+
{%- endif -%}
|
| 224 |
+
{%- endmacro -%}
|
| 225 |
+
|
| 226 |
+
{#- Main Template Logic ================================================= #}
|
| 227 |
+
{#- Set defaults #}
|
| 228 |
+
|
| 229 |
+
{#- Render system message #}
|
| 230 |
+
{{- "<|start|>system<|message|>" }}
|
| 231 |
+
{{- build_system_message() }}
|
| 232 |
+
{{- "<|end|>" }}
|
| 233 |
+
|
| 234 |
+
{#- Extract developer message #}
|
| 235 |
+
{%- if messages[0].role == "developer" or messages[0].role == "system" %}
|
| 236 |
+
{%- set developer_message = messages[0].content %}
|
| 237 |
+
{%- set loop_messages = messages[1:] %}
|
| 238 |
+
{%- else %}
|
| 239 |
+
{%- set developer_message = "" %}
|
| 240 |
+
{%- set loop_messages = messages %}
|
| 241 |
+
{%- endif %}
|
| 242 |
+
|
| 243 |
+
{#- Render developer message #}
|
| 244 |
+
{%- if developer_message or tools %}
|
| 245 |
+
{{- "<|start|>developer<|message|>" }}
|
| 246 |
+
{%- if developer_message %}
|
| 247 |
+
{{- "# Instructions\n\n" }}
|
| 248 |
+
{{- developer_message }}
|
| 249 |
+
{%- endif %}
|
| 250 |
+
{%- if tools -%}
|
| 251 |
+
{{- "\n\n" }}
|
| 252 |
+
{{- "# Tools\n\n" }}
|
| 253 |
+
{{- render_tool_namespace("functions", tools) }}
|
| 254 |
+
{%- endif -%}
|
| 255 |
+
{{- "<|end|>" }}
|
| 256 |
+
{%- endif %}
|
| 257 |
+
|
| 258 |
+
{#- Render messages #}
|
| 259 |
+
{%- set last_tool_call = namespace(name=none) %}
|
| 260 |
+
{%- for message in loop_messages -%}
|
| 261 |
+
{#- At this point only assistant/user/tool messages should remain #}
|
| 262 |
+
{%- if message.role == 'assistant' -%}
|
| 263 |
+
{%- if "tool_calls" in message %}
|
| 264 |
+
{#- We assume max 1 tool call per message, and so we infer the tool call name #}
|
| 265 |
+
{#- in "tool" messages from the most recent assistant tool call name #}
|
| 266 |
+
{%- set tool_call = message.tool_calls[0] %}
|
| 267 |
+
{%- if tool_call.function %}
|
| 268 |
+
{%- set tool_call = tool_call.function %}
|
| 269 |
+
{%- endif %}
|
| 270 |
+
{%- if message.content %}
|
| 271 |
+
{{- "<|start|>assistant<|channel|>analysis<|message|>" + message.content + "<|end|>" }}
|
| 272 |
+
{%- endif %}
|
| 273 |
+
{{- "<|start|>assistant to=" }}
|
| 274 |
+
{{- "functions." + tool_call.name + "<|channel|>commentary json<|message|>" }}
|
| 275 |
+
{{- tool_call.arguments|tojson }}
|
| 276 |
+
{{- "<|call|>" }}
|
| 277 |
+
{%- set last_tool_call.name = tool_call.name %}
|
| 278 |
+
{%- elif "thinking" in message and loop.last and not add_generation_prompt %}
|
| 279 |
+
{#- Only render the CoT if the final turn is an assistant turn and add_generation_prompt is false #}
|
| 280 |
+
{#- This is a situation that should only occur in training, never in inference. #}
|
| 281 |
+
{{- "<|start|>assistant<|channel|>analysis<|message|>" + message.thinking + "<|end|>" }}
|
| 282 |
+
{#- <|return|> indicates the end of generation, but <|end|> does not #}
|
| 283 |
+
{#- <|return|> should never be an input to the model, but we include it as the final token #}
|
| 284 |
+
{#- when training, so the model learns to emit it. #}
|
| 285 |
+
{{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|return|>" }}
|
| 286 |
+
{%- set last_tool_call.name = none %}
|
| 287 |
+
{%- elif "thinking" in message %}
|
| 288 |
+
{#- CoT is dropped during all previous turns, so we never render it for inference #}
|
| 289 |
+
{{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|end|>" }}
|
| 290 |
+
{%- set last_tool_call.name = none %}
|
| 291 |
+
{%- elif loop.last and not add_generation_prompt %}
|
| 292 |
+
{#- <|return|> indicates the end of generation, but <|end|> does not #}
|
| 293 |
+
{#- <|return|> should never be an input to the model, but we include it as the final token #}
|
| 294 |
+
{#- when training, so the model learns to emit it. #}
|
| 295 |
+
{{- "<|start|>assistant<|message|>" + message.content + "<|return|>" }}
|
| 296 |
+
{%- else %}
|
| 297 |
+
{{- "<|start|>assistant<|message|>" + message.content + "<|end|>" }}
|
| 298 |
+
{%- set last_tool_call.name = none %}
|
| 299 |
+
{%- endif %}
|
| 300 |
+
{%- elif message.role == 'tool' -%}
|
| 301 |
+
{%- if last_tool_call.name is none %}
|
| 302 |
+
{{- raise_exception("Message has tool role, but there was no previous assistant message with a tool call!") }}
|
| 303 |
+
{%- endif %}
|
| 304 |
+
{{- "<|start|>functions." + last_tool_call.name }}
|
| 305 |
+
{{- " to=assistant<|channel|>commentary<|message|>" + message.content|tojson + "<|end|>" }}
|
| 306 |
+
{%- else -%}
|
| 307 |
+
{{- "<|start|>user<|message|>" + message.content + "<|end|>" }}
|
| 308 |
+
{%- endif -%}
|
| 309 |
+
{%- endfor -%}
|
| 310 |
+
|
| 311 |
+
{#- Generation prompt #}
|
| 312 |
+
{%- if add_generation_prompt -%}
|
| 313 |
+
<|start|>assistant
|
| 314 |
+
{%- endif -%}
|
| 315 |
+
{# Copyright 2025-present Unsloth. Apache 2.0 License. Unsloth chat template fixes. Edited from ggml-org & OpenAI #}
|
config.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"GptOssForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": true,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"eos_token_id": 200002,
|
| 8 |
+
"experts_per_token": 4,
|
| 9 |
+
"head_dim": 64,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 2880,
|
| 12 |
+
"initial_context_length": 4096,
|
| 13 |
+
"initializer_range": 0.02,
|
| 14 |
+
"intermediate_size": 2880,
|
| 15 |
+
"layer_types": [
|
| 16 |
+
"sliding_attention",
|
| 17 |
+
"full_attention",
|
| 18 |
+
"sliding_attention",
|
| 19 |
+
"full_attention",
|
| 20 |
+
"sliding_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"sliding_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"sliding_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"sliding_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"sliding_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"sliding_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"sliding_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"sliding_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"sliding_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"sliding_attention",
|
| 39 |
+
"full_attention"
|
| 40 |
+
],
|
| 41 |
+
"max_position_embeddings": 131072,
|
| 42 |
+
"model_type": "gpt_oss",
|
| 43 |
+
"num_attention_heads": 64,
|
| 44 |
+
"num_experts_per_tok": 4,
|
| 45 |
+
"num_hidden_layers": 24,
|
| 46 |
+
"num_key_value_heads": 8,
|
| 47 |
+
"num_local_experts": 32,
|
| 48 |
+
"output_router_logits": false,
|
| 49 |
+
"pad_token_id": 200017,
|
| 50 |
+
"quantization_config": {
|
| 51 |
+
"modules_to_not_convert": [
|
| 52 |
+
"model.layers.*.self_attn",
|
| 53 |
+
"model.layers.*.mlp.router",
|
| 54 |
+
"model.embed_tokens",
|
| 55 |
+
"lm_head"
|
| 56 |
+
],
|
| 57 |
+
"quant_method": "mxfp4"
|
| 58 |
+
},
|
| 59 |
+
"rms_norm_eps": 1e-05,
|
| 60 |
+
"rope_scaling": {
|
| 61 |
+
"beta_fast": 32.0,
|
| 62 |
+
"beta_slow": 1.0,
|
| 63 |
+
"factor": 32.0,
|
| 64 |
+
"original_max_position_embeddings": 4096,
|
| 65 |
+
"rope_type": "yarn",
|
| 66 |
+
"truncate": false
|
| 67 |
+
},
|
| 68 |
+
"rope_theta": 150000,
|
| 69 |
+
"router_aux_loss_coef": 0.9,
|
| 70 |
+
"sliding_window": 128,
|
| 71 |
+
"swiglu_limit": 7.0,
|
| 72 |
+
"tie_word_embeddings": false,
|
| 73 |
+
"transformers_version": "4.55.0",
|
| 74 |
+
"unsloth_fixed": true,
|
| 75 |
+
"use_cache": true,
|
| 76 |
+
"vocab_size": 201088
|
| 77 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 199998,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
200002,
|
| 6 |
+
199999
|
| 7 |
+
],
|
| 8 |
+
"max_length": 131072,
|
| 9 |
+
"pad_token_id": 199999,
|
| 10 |
+
"transformers_version": "4.56.0.dev0"
|
| 11 |
+
}
|
gpt-oss-reasoning.png
ADDED
|
Git LFS Details
|
model-00000-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6da22bf1fbff1e5ace0038a0525b8d389cb219e32255434d1f6bbab221fa80d1
|
| 3 |
+
size 4792272520
|
model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27a9456f094cf88fd86b5df602f97b8b82bfbf741ffefefd636dfaa676ff006f
|
| 3 |
+
size 4798702216
|
model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83252e49559aa0a4fb54db7d4cf360863d4c53e4e45593cebec56b5a6441e80b
|
| 3 |
+
size 4170342264
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"metadata": {"total_size": 13761264768}, "weight_map": {"model.layers.0.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.0.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.0.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.0.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.0.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.0.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.0.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.0.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.0.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.0.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.1.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.1.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.1.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.1.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.1.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.1.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.1.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.1.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.1.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.1.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.10.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.10.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.10.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.10.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.10.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.10.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.10.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.10.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.10.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.10.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.11.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.11.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.11.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.11.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.11.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.11.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.11.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.11.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.11.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.11.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.12.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.12.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.12.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.12.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.12.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.12.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.12.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.12.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.12.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.12.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.13.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.13.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.13.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.13.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.13.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.13.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.13.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.13.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.13.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.13.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.14.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.14.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.14.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.14.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.14.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.14.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.14.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.14.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.14.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.14.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.15.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.15.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.15.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.15.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.15.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.15.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.15.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.15.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.15.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.15.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.16.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.16.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.16.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.16.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.16.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.16.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.16.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.16.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.16.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.16.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.17.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00000-of-00002.safetensors", "model.layers.17.self_attn.sinks": "model-00000-of-00002.safetensors", "model.layers.17.mlp.router.bias": "model-00000-of-00002.safetensors", "model.layers.17.mlp.router.weight": "model-00000-of-00002.safetensors", "model.layers.17.mlp.experts.gate_up_proj_bias": "model-00000-of-00002.safetensors", "model.layers.17.mlp.experts.gate_up_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.17.mlp.experts.gate_up_proj_scales": "model-00000-of-00002.safetensors", "model.layers.17.mlp.experts.down_proj_bias": "model-00000-of-00002.safetensors", "model.layers.17.mlp.experts.down_proj_blocks": "model-00000-of-00002.safetensors", "model.layers.17.mlp.experts.down_proj_scales": "model-00000-of-00002.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.18.input_layernorm.weight": "model-00000-of-00002.safetensors", "model.layers.18.self_attn.o_proj.bias": "model-00000-of-00002.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00000-of-00002.safetensors", "model.layers.18.self_attn.q_proj.bias": "model-00000-of-00002.safetensors", "model.layers.18.self_attn.k_proj.bias": "model-00000-of-00002.safetensors", "model.layers.18.self_attn.v_proj.bias": "model-00000-of-00002.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.18.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.18.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.18.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.18.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.18.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.18.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.18.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.18.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.18.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.19.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.19.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.19.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.19.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.19.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.19.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.19.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.19.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.19.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.2.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.2.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.2.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.2.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.2.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.2.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.2.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.2.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.2.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.20.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.20.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.20.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.20.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.20.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.20.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.20.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.20.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.20.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.21.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.21.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.21.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.21.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.21.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.21.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.21.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.21.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.21.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.22.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.22.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.22.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.22.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.22.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.22.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.22.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.22.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.22.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.23.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.23.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.23.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.23.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.23.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.23.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.23.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.23.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.23.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.3.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.3.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.3.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.3.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.3.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.3.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.3.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.3.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.3.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.4.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.4.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.4.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.4.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.4.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.4.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.4.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.4.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.4.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.5.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.5.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.5.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.5.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.5.mlp.experts.gate_up_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.5.mlp.experts.gate_up_proj_scales": "model-00001-of-00002.safetensors", "model.layers.5.mlp.experts.down_proj_bias": "model-00001-of-00002.safetensors", "model.layers.5.mlp.experts.down_proj_blocks": "model-00001-of-00002.safetensors", "model.layers.5.mlp.experts.down_proj_scales": "model-00001-of-00002.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.o_proj.bias": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.q_proj.bias": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.k_proj.bias": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.v_proj.bias": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", "model.layers.6.self_attn.sinks": "model-00001-of-00002.safetensors", "model.layers.6.mlp.router.bias": "model-00001-of-00002.safetensors", "model.layers.6.mlp.router.weight": "model-00001-of-00002.safetensors", "model.layers.6.mlp.experts.gate_up_proj_bias": "model-00001-of-00002.safetensors", "model.layers.6.mlp.experts.gate_up_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.6.mlp.experts.gate_up_proj_scales": "model-00002-of-00002.safetensors", "model.layers.6.mlp.experts.down_proj_bias": "model-00002-of-00002.safetensors", "model.layers.6.mlp.experts.down_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.6.mlp.experts.down_proj_scales": "model-00002-of-00002.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00002.safetensors", "model.layers.7.input_layernorm.weight": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.o_proj.bias": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.q_proj.bias": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.k_proj.bias": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.v_proj.bias": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00002.safetensors", "model.layers.7.self_attn.sinks": "model-00002-of-00002.safetensors", "model.layers.7.mlp.router.bias": "model-00002-of-00002.safetensors", "model.layers.7.mlp.router.weight": "model-00002-of-00002.safetensors", "model.layers.7.mlp.experts.gate_up_proj_bias": "model-00002-of-00002.safetensors", "model.layers.7.mlp.experts.gate_up_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.7.mlp.experts.gate_up_proj_scales": "model-00002-of-00002.safetensors", "model.layers.7.mlp.experts.down_proj_bias": "model-00002-of-00002.safetensors", "model.layers.7.mlp.experts.down_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.7.mlp.experts.down_proj_scales": "model-00002-of-00002.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00002.safetensors", "model.layers.8.input_layernorm.weight": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.o_proj.bias": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.q_proj.bias": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.k_proj.bias": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.v_proj.bias": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00002.safetensors", "model.layers.8.self_attn.sinks": "model-00002-of-00002.safetensors", "model.layers.8.mlp.router.bias": "model-00002-of-00002.safetensors", "model.layers.8.mlp.router.weight": "model-00002-of-00002.safetensors", "model.layers.8.mlp.experts.gate_up_proj_bias": "model-00002-of-00002.safetensors", "model.layers.8.mlp.experts.gate_up_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.8.mlp.experts.gate_up_proj_scales": "model-00002-of-00002.safetensors", "model.layers.8.mlp.experts.down_proj_bias": "model-00002-of-00002.safetensors", "model.layers.8.mlp.experts.down_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.8.mlp.experts.down_proj_scales": "model-00002-of-00002.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00002.safetensors", "model.layers.9.input_layernorm.weight": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.o_proj.bias": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.q_proj.bias": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.k_proj.bias": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.v_proj.bias": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00002.safetensors", "model.layers.9.self_attn.sinks": "model-00002-of-00002.safetensors", "model.layers.9.mlp.router.bias": "model-00002-of-00002.safetensors", "model.layers.9.mlp.router.weight": "model-00002-of-00002.safetensors", "model.layers.9.mlp.experts.gate_up_proj_bias": "model-00002-of-00002.safetensors", "model.layers.9.mlp.experts.gate_up_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.9.mlp.experts.gate_up_proj_scales": "model-00002-of-00002.safetensors", "model.layers.9.mlp.experts.down_proj_bias": "model-00002-of-00002.safetensors", "model.layers.9.mlp.experts.down_proj_blocks": "model-00002-of-00002.safetensors", "model.layers.9.mlp.experts.down_proj_scales": "model-00002-of-00002.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00002.safetensors", "model.embed_tokens.weight": "model-00002-of-00002.safetensors", "model.norm.weight": "model-00002-of-00002.safetensors", "lm_head.weight": "model-00002-of-00002.safetensors"}}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|startoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|return|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|reserved_200017|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0614fe83cadab421296e664e1f48f4261fa8fef6e03e63bb75c20f38e37d07d3
|
| 3 |
+
size 27868174
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,185 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"199998": {
|
| 4 |
+
"content": "<|startoftext|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"199999": {
|
| 12 |
+
"content": "<|endoftext|>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"200000": {
|
| 20 |
+
"content": "<|reserved_200000|>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"200001": {
|
| 28 |
+
"content": "<|reserved_200001|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"200002": {
|
| 36 |
+
"content": "<|return|>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"200003": {
|
| 44 |
+
"content": "<|constrain|>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"200004": {
|
| 52 |
+
"content": "<|reserved_200004|>",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"200005": {
|
| 60 |
+
"content": "<|channel|>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"200006": {
|
| 68 |
+
"content": "<|start|>",
|
| 69 |
+
"lstrip": false,
|
| 70 |
+
"normalized": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"200007": {
|
| 76 |
+
"content": "<|end|>",
|
| 77 |
+
"lstrip": false,
|
| 78 |
+
"normalized": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"single_word": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"200008": {
|
| 84 |
+
"content": "<|message|>",
|
| 85 |
+
"lstrip": false,
|
| 86 |
+
"normalized": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"single_word": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"200009": {
|
| 92 |
+
"content": "<|reserved_200009|>",
|
| 93 |
+
"lstrip": false,
|
| 94 |
+
"normalized": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"single_word": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"200010": {
|
| 100 |
+
"content": "<|reserved_200010|>",
|
| 101 |
+
"lstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"single_word": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"200011": {
|
| 108 |
+
"content": "<|reserved_200011|>",
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"normalized": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"single_word": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"200012": {
|
| 116 |
+
"content": "<|call|>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"200013": {
|
| 124 |
+
"content": "<|reserved_200013|>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"200014": {
|
| 132 |
+
"content": "<|reserved_200014|>",
|
| 133 |
+
"lstrip": false,
|
| 134 |
+
"normalized": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"single_word": false,
|
| 137 |
+
"special": true
|
| 138 |
+
},
|
| 139 |
+
"200015": {
|
| 140 |
+
"content": "<|reserved_200015|>",
|
| 141 |
+
"lstrip": false,
|
| 142 |
+
"normalized": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"special": true
|
| 146 |
+
},
|
| 147 |
+
"200016": {
|
| 148 |
+
"content": "<|reserved_200016|>",
|
| 149 |
+
"lstrip": false,
|
| 150 |
+
"normalized": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"single_word": false,
|
| 153 |
+
"special": true
|
| 154 |
+
},
|
| 155 |
+
"200017": {
|
| 156 |
+
"content": "<|reserved_200017|>",
|
| 157 |
+
"lstrip": false,
|
| 158 |
+
"normalized": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"single_word": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"200018": {
|
| 164 |
+
"content": "<|endofprompt|>",
|
| 165 |
+
"lstrip": false,
|
| 166 |
+
"normalized": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"single_word": false,
|
| 169 |
+
"special": true
|
| 170 |
+
}
|
| 171 |
+
},
|
| 172 |
+
"bos_token": "<|startoftext|>",
|
| 173 |
+
"clean_up_tokenization_spaces": false,
|
| 174 |
+
"eos_token": "<|return|>",
|
| 175 |
+
"extra_special_tokens": {},
|
| 176 |
+
"model_input_names": [
|
| 177 |
+
"input_ids",
|
| 178 |
+
"attention_mask"
|
| 179 |
+
],
|
| 180 |
+
"model_max_length": 131072,
|
| 181 |
+
"pad_token": "<|reserved_200017|>",
|
| 182 |
+
"padding_side": "right",
|
| 183 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
| 184 |
+
"unk_token": null
|
| 185 |
+
}
|