初始化项目,由ModelHub XC社区提供模型
Model: microsoft/FastContext-1.0-4B-SFT Source: Original Platform
This commit is contained in:
36
.gitattributes
vendored
Normal file
36
.gitattributes
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
*.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
|
||||
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
||||
124
README.md
Normal file
124
README.md
Normal file
@@ -0,0 +1,124 @@
|
||||
---
|
||||
language:
|
||||
- en
|
||||
license: mit
|
||||
tags:
|
||||
- Explorer SubAgent
|
||||
- Repository Exploration
|
||||
library_name: transformers
|
||||
base_model:
|
||||
- Qwen/Qwen3-4B-Instruct-2507
|
||||
---
|
||||
|
||||
|
||||
## 1. Model Introduction
|
||||
|
||||
**FastContext-1.0** is a lightweight **repository-exploration subagent** for LLM coding agents. Instead of letting a single model both explore the repository and solve the task, FastContext separates these two roles: it is invoked on demand by a main coding agent, issues **parallel read-only tool calls** (READ, GLOB, GREP), and returns **compact file paths and line ranges** as focused context.
|
||||
|
||||
Repository exploration is a major bottleneck in modern coding agents — locating relevant code consumes a large share of the token budget and pollutes the solver's context with irrelevant snippets. In our analysis of GPT-5.4 trajectories, reading and searching account for **56.2% of all tool-use turns** and **46.5% of the main agent's total tokens**. FastContext moves this work into a dedicated subagent so the main agent receives clean, grounded evidence rather than the long trail of exploratory reads and searches.
|
||||
|
||||
The model family spans **4B–30B parameters**, bootstrapped from strong reference-model trajectories via supervised fine-tuning (SFT) and refined with task-grounded reinforcement learning (RL) for broad first-turn search, multi-turn evidence gathering, and precise citation generation.
|
||||
|
||||
- **Backbones:** Qwen3-4B-Instruct (4B explorer) and Qwen3-Coder-30B-A3B (30B explorer)
|
||||
- **Variants:** `FC-4B-SFT`, `FC-4B-RL` (deployment targets), `FC-30B-SFT` (scaling reference)
|
||||
- **Context length:** up to 262K tokens
|
||||
- **Paper:** *FastContext: Training Efficient Repository Explorer for Coding Agents*
|
||||
- **Code & data:** https://github.com/microsoft/fastcontext
|
||||
|
||||
### How it works
|
||||
|
||||
```
|
||||
Coding Agent ──query──▶ FastContext ──read/search──▶ Repository
|
||||
▲ │
|
||||
└──── file-line ────────┘
|
||||
citations
|
||||
```
|
||||
|
||||
Internally, FastContext runs an exploration loop:
|
||||
|
||||
1. **Query understanding** — translate the issue into search intents.
|
||||
2. **Parallel tool calling** — issue multiple `READ` / `GLOB` / `GREP` calls in a single turn to cover complementary hypotheses.
|
||||
3. **Observation-driven refinement** — use tool outputs to guide the next search turn.
|
||||
4. **Final citations** — return a compact `<final_answer>` block of file paths and line ranges.
|
||||
|
||||
|
||||
## 2. Evaluation Results
|
||||
|
||||
### End-to-end performance (Mini-SWE-Agent)
|
||||
|
||||
Integrating FastContext into Mini-SWE-Agent improves end-to-end resolution rates by **up to 5.5%** while reducing main-agent token consumption by **up to 60%**, with only marginal overhead. Scores, tokens, and turns are measured on the main-agent trajectory; deltas are relative to `w/o Explore` for the same main agent.
|
||||
|
||||
| Main Agent | Subagent | SWE-bench Multilingual | SWE-bench Pro | SWE-QA |
|
||||
|---|---|---|---|---|
|
||||
| **GPT-5.4** | w/o Explore | 71.7 / 457k | 46.0 / 818k | 81.3 / 418k |
|
||||
| | FC-30B-SFT | **75.0** (↑3.3) / 356k (↓22.1%) | 49.0 (↑3.0) / 688k (↓15.9%) | **82.0** (↑0.7) / 206k (↓50.7%) |
|
||||
| | FC-4B-SFT | 73.3 (↑1.6) / 364k (↓20.4%) | 47.0 (↑1.0) / 689k (↓15.8%) | 81.9 (↑0.6) / 213k (↓49.0%) |
|
||||
| | FC-4B-RL | 74.7 (↑3.0) / 338k (↓26.0%) | 48.5 (↑2.5) / 701k (↓14.3%) | **82.0** (↑0.7) / 210k (↓49.8%) |
|
||||
| **GLM-5.1** | w/o Explore | 72.3 / 2514k | 17.5 / 2692k | 72.7 / 401k |
|
||||
| | FC-30B-SFT | 73.7 (↑1.4) / 1797k (↓28.5%) | 20.0 (↑2.5) / 2370k (↓12.0%) | 73.3 (↑0.6) / 292k (↓27.2%) |
|
||||
| | FC-4B-SFT | 73.3 (↑1.0) / 1919k (↓23.7%) | 18.0 (↑0.5) / 2279k (↓15.3%) | 73.4 (↑0.7) / 306k (↓23.7%) |
|
||||
| | FC-4B-RL | 73.7 (↑1.4) / 1971k (↓21.6%) | **22.5** (↑5.0) / 2210k (↓17.9%) | 73.5 (↑0.8) / 302k (↓24.7%) |
|
||||
| **Kimi-K2.6** | w/o Explore | 76.3 / 1553k | 31.0 / 2383k | 71.6 / 510k |
|
||||
| | FC-30B-SFT | 76.7 (↑0.4) / 1360k (↓12.4%) | 33.0 (↑2.0) / 2150k (↓9.8%) | 72.8 (↑1.2) / 373k (↓26.9%) |
|
||||
| | FC-4B-SFT | 75.3 (↓1.0) / 1306k (↓15.9%) | 32.5 (↑1.5) / 2159k (↓9.4%) | 72.6 (↑1.0) / 402k (↓21.2%) |
|
||||
| | FC-4B-RL | **78.3** (↑2.0) / 1384k (↓10.9%) | **33.5** (↑2.5) / 2158k (↓9.4%) | 72.6 (↑1.0) / 378k (↓25.9%) |
|
||||
|
||||
*Score / Tokens shown per cell. Best result per main-agent block in bold.*
|
||||
|
||||
**Highlights:**
|
||||
- FastContext improves end-to-end accuracy for **every main agent and benchmark**; the largest gains appear on SWE-bench Pro (e.g. GPT-5.4 +5.5, GLM-5.1 +5.0).
|
||||
- The biggest token savings reach **60.3%** (GPT-5.4 on SWE-QA).
|
||||
- The compact **4B-RL** explorer can outperform the larger **30B-SFT** explorer — e.g. on GLM-5.1 SWE-bench Pro it reaches 22.5 vs. 20.0 while using fewer tokens.
|
||||
|
||||
|
||||
## 3. Quick Start
|
||||
|
||||
Launch the model with an OpenAI-compatible server (e.g. SGLang). The example below serves the 4B explorer:
|
||||
|
||||
```bash
|
||||
python3 -m sglang.launch_server \
|
||||
--model-path FastContext-1.0-4B-SFT \
|
||||
--tool-call-parser qwen \
|
||||
--context-length 262144 \
|
||||
--trust-remote-code \
|
||||
--dtype bfloat16 \
|
||||
--host 0.0.0.0 \
|
||||
--port 30000 \
|
||||
--tp-size 1 \
|
||||
--mem-fraction-static 0.8
|
||||
```
|
||||
|
||||
FastContext exposes only three read-only tools to the model:
|
||||
|
||||
| Tool | Purpose |
|
||||
|---|---|
|
||||
| `READ` | Return line-numbered file contents |
|
||||
| `GLOB` | Path discovery by glob pattern |
|
||||
| `GREP` | Regex search over repository text (ripgrep-style) |
|
||||
|
||||
At each turn the explorer either issues one or more (parallel) tool calls or stops with a final `<final_answer>` evidence list. Wire FastContext into a coding agent (e.g. Mini-SWE-Agent) as an exploration subagent the main agent can invoke on demand.
|
||||
|
||||
## 4. Training Recipe
|
||||
|
||||
FastContext is trained in two stages:
|
||||
|
||||
- **Supervised fine-tuning (SFT):** The exploration traces, split into three sources matching the runtime behavior of the subagent — `parallel_toolcalls` (broad first-turn search), `multiturn_traj` (multi-turn evidence gathering), and `linerange` (precise citation generation).
|
||||
- **Reinforcement learning (RL):** The model is rolled out as the actual subagent and optimized with **GRPO** using a deterministic reward combining file- and line-level F1, a bonus for bounded parallel exploration, and format penalties.
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the MIT License.
|
||||
|
||||
## Citation
|
||||
|
||||
```bibtex
|
||||
@misc{zhang2026fastcontexttrainingefficientrepository,
|
||||
title={FastContext: Training Efficient Repository Explorer for Coding Agents},
|
||||
author={Shaoqiu Zhang and Maoquan Wang and Yuling Shi and Yuhang Wang and Xiaodong Gu and Yongqiang Yao and Tori Gong and Sheng Chen and Rao Fu and Anisha Agarwal and Spandan Garg and Gabriel Ryan and Colin Merkel and Yufan Huang and Shengyu Fu},
|
||||
year={2026},
|
||||
eprint={2606.14066},
|
||||
archivePrefix={arXiv},
|
||||
primaryClass={cs.SE},
|
||||
url={https://arxiv.org/abs/2606.14066},
|
||||
}
|
||||
```
|
||||
30
config.json
Normal file
30
config.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"architectures": [
|
||||
"Qwen3ForCausalLM"
|
||||
],
|
||||
"attention_bias": false,
|
||||
"attention_dropout": 0.0,
|
||||
"bos_token_id": 151643,
|
||||
"eos_token_id": 151645,
|
||||
"head_dim": 128,
|
||||
"hidden_act": "silu",
|
||||
"hidden_size": 2560,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 9728,
|
||||
"max_position_embeddings": 262144,
|
||||
"max_window_layers": 36,
|
||||
"model_type": "qwen3",
|
||||
"num_attention_heads": 32,
|
||||
"num_hidden_layers": 36,
|
||||
"num_key_value_heads": 8,
|
||||
"rms_norm_eps": 1e-06,
|
||||
"rope_scaling": null,
|
||||
"rope_theta": 5000000,
|
||||
"sliding_window": null,
|
||||
"tie_word_embeddings": true,
|
||||
"torch_dtype": "bfloat16",
|
||||
"transformers_version": "4.51.0",
|
||||
"use_cache": true,
|
||||
"use_sliding_window": false,
|
||||
"vocab_size": 151936
|
||||
}
|
||||
13
generation_config.json
Normal file
13
generation_config.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"bos_token_id": 151643,
|
||||
"do_sample": true,
|
||||
"eos_token_id": [
|
||||
151645,
|
||||
151643
|
||||
],
|
||||
"pad_token_id": 151643,
|
||||
"temperature": 0.7,
|
||||
"top_k": 20,
|
||||
"top_p": 0.8,
|
||||
"transformers_version": "4.51.0"
|
||||
}
|
||||
151387
merges.txt
Normal file
151387
merges.txt
Normal file
File diff suppressed because it is too large
Load Diff
3
model-00000-of-00002.safetensors
Normal file
3
model-00000-of-00002.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4c5beb7b969e94809ee4d3b4020f259904d9293ecaa1748d824fe042e9f1b882
|
||||
size 5355373240
|
||||
3
model-00001-of-00002.safetensors
Normal file
3
model-00001-of-00002.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5acce04f0ba341f6090ae6c8a9b67f7c2737be1233a4a5673d29fd406635b426
|
||||
size 2689608768
|
||||
405
model.safetensors.index.json
Normal file
405
model.safetensors.index.json
Normal file
@@ -0,0 +1,405 @@
|
||||
{
|
||||
"metadata": {
|
||||
"total_size": 8044936192
|
||||
},
|
||||
"weight_map": {
|
||||
"model.embed_tokens.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.10.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.11.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.12.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.13.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.14.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.15.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.16.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.17.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.input_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.input_layernorm.weight": "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.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.2.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.v_proj.weight": "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.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.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.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.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.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.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.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.18.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.self_attn.q_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.10.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.11.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.12.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.13.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.14.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.15.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.16.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.17.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.self_attn.k_norm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.10.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.11.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.12.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.13.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.14.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.15.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.16.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.17.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.post_attention_layernorm.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.10.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.11.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.12.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.13.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.14.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.15.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.16.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.17.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.18.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.19.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.20.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.21.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.22.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.23.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.24.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.25.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.26.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.27.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.28.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.29.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.30.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.31.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.32.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.33.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.34.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.35.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.0.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.1.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.2.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.3.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.4.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.5.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.6.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.7.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.8.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
||||
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.23.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.24.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.25.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.26.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.27.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.28.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.29.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.30.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.30.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.31.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.31.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.32.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.32.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.33.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.33.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.34.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.34.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.35.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.layers.35.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
||||
"model.norm.weight": "model-00001-of-00002.safetensors"
|
||||
}
|
||||
}
|
||||
BIN
tokenizer.json
(Stored with Git LFS)
Normal file
BIN
tokenizer.json
(Stored with Git LFS)
Normal file
Binary file not shown.
239
tokenizer_config.json
Normal file
239
tokenizer_config.json
Normal file
@@ -0,0 +1,239 @@
|
||||
{
|
||||
"add_prefix_space": false,
|
||||
"added_tokens_decoder": {
|
||||
"151643": {
|
||||
"content": "<|endoftext|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151644": {
|
||||
"content": "<|im_start|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151645": {
|
||||
"content": "<|im_end|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151646": {
|
||||
"content": "<|object_ref_start|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151647": {
|
||||
"content": "<|object_ref_end|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151648": {
|
||||
"content": "<|box_start|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151649": {
|
||||
"content": "<|box_end|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151650": {
|
||||
"content": "<|quad_start|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151651": {
|
||||
"content": "<|quad_end|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151652": {
|
||||
"content": "<|vision_start|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151653": {
|
||||
"content": "<|vision_end|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151654": {
|
||||
"content": "<|vision_pad|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151655": {
|
||||
"content": "<|image_pad|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151656": {
|
||||
"content": "<|video_pad|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": true
|
||||
},
|
||||
"151657": {
|
||||
"content": "<tool_call>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151658": {
|
||||
"content": "</tool_call>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151659": {
|
||||
"content": "<|fim_prefix|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151660": {
|
||||
"content": "<|fim_middle|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151661": {
|
||||
"content": "<|fim_suffix|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151662": {
|
||||
"content": "<|fim_pad|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151663": {
|
||||
"content": "<|repo_name|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151664": {
|
||||
"content": "<|file_sep|>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151665": {
|
||||
"content": "<tool_response>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151666": {
|
||||
"content": "</tool_response>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151667": {
|
||||
"content": "<think>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
},
|
||||
"151668": {
|
||||
"content": "</think>",
|
||||
"lstrip": false,
|
||||
"normalized": false,
|
||||
"rstrip": false,
|
||||
"single_word": false,
|
||||
"special": false
|
||||
}
|
||||
},
|
||||
"additional_special_tokens": [
|
||||
"<|im_start|>",
|
||||
"<|im_end|>",
|
||||
"<|object_ref_start|>",
|
||||
"<|object_ref_end|>",
|
||||
"<|box_start|>",
|
||||
"<|box_end|>",
|
||||
"<|quad_start|>",
|
||||
"<|quad_end|>",
|
||||
"<|vision_start|>",
|
||||
"<|vision_end|>",
|
||||
"<|vision_pad|>",
|
||||
"<|image_pad|>",
|
||||
"<|video_pad|>"
|
||||
],
|
||||
"bos_token": null,
|
||||
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\\n\\n' }}\n {%- endif %}\n {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function 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><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if message.content is string %}\n {%- set content = message.content %}\n {%- else %}\n {%- set content = '' %}\n {%- endif %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}",
|
||||
"clean_up_tokenization_spaces": false,
|
||||
"eos_token": "<|im_end|>",
|
||||
"errors": "replace",
|
||||
"model_max_length": 1010000,
|
||||
"pad_token": "<|endoftext|>",
|
||||
"split_special_tokens": false,
|
||||
"tokenizer_class": "Qwen2Tokenizer",
|
||||
"unk_token": null,
|
||||
"add_bos_token": false
|
||||
}
|
||||
1
vocab.json
Normal file
1
vocab.json
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user