Text Generation
Transformers
Safetensors
qwen3_5
image-text-to-text
vlm
vision
agentic
conversational
Instructions to use InternScience/Agents-A1-4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use InternScience/Agents-A1-4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="InternScience/Agents-A1-4B") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("InternScience/Agents-A1-4B") model = AutoModelForMultimodalLM.from_pretrained("InternScience/Agents-A1-4B", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use InternScience/Agents-A1-4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "InternScience/Agents-A1-4B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "InternScience/Agents-A1-4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/InternScience/Agents-A1-4B
- SGLang
How to use InternScience/Agents-A1-4B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "InternScience/Agents-A1-4B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "InternScience/Agents-A1-4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "InternScience/Agents-A1-4B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "InternScience/Agents-A1-4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use InternScience/Agents-A1-4B with Docker Model Runner:
docker model run hf.co/InternScience/Agents-A1-4B
Commit ·
945c40a
0
Parent(s):
Super-squash branch 'main' using huggingface_hub
Browse files- .gitattributes +38 -0
- README.md +409 -0
- chat_template.jinja +168 -0
- config.json +104 -0
- figures/24px.svg +1 -0
- figures/github-logo.svg +3 -0
- figures/hf-logo.svg +8 -0
- figures/logo_nobg.png +3 -0
- figures/modelscope-logo.svg +12 -0
- model-00000-of-00002.safetensors +3 -0
- model-00001-of-00002.safetensors +3 -0
- model.safetensors.index.json +730 -0
- preprocessor_config.json +21 -0
- processor_config.json +60 -0
- tokenizer.json +3 -0
- tokenizer_config.json +305 -0
.gitattributes
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
figures/a1_benchmarks_altair_grid.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
figures/logo_nobg.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,409 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- vlm
|
| 7 |
+
- vision
|
| 8 |
+
- agentic
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Agents-A1: Scaling the Horizon, Not the Parameters: Reaching Trillion-Parameter Performance with a 35B Agent
|
| 12 |
+
|
| 13 |
+
<div style="display: flex; flex-direction: column; align-items: center; line-height: 1.2;">
|
| 14 |
+
<div style="display: flex; justify-content: center; align-items: center; gap: 10px; height: 30px;">
|
| 15 |
+
<span style="font-size: 16px;" role="img" aria-label="Homepage">🏠</span>
|
| 16 |
+
<a href="https://internscience.github.io/Agents-A1/"><b>Homepage</b></a>
|
| 17 |
+
<span style="color: #ccc;">|</span>
|
| 18 |
+
<img src="./figures/24px.svg" width="16" height="16" alt="Technical Report" style="filter: invert(0.5);">
|
| 19 |
+
<a href="https://arxiv.org/abs/2606.30616"><b>Technical Report</b></a>
|
| 20 |
+
</div>
|
| 21 |
+
|
| 22 |
+
<div style="display: flex; justify-content: center; align-items: center; gap: 10px; height: 30px; margin-top: 2px;">
|
| 23 |
+
<img src="./figures/hf-logo.svg" width="16" height="16" alt="Hugging Face">
|
| 24 |
+
<a href="https://huggingface.co/InternScience/Agents-A1"><b>Hugging Face</b></a>
|
| 25 |
+
<span style="color: #ccc;">|</span>
|
| 26 |
+
<img src="./figures/github-logo.svg" width="16" height="16" alt="GitHub">
|
| 27 |
+
<a href="https://github.com/InternScience/Agents-A1"><b>Github</b></a>
|
| 28 |
+
<span style="color: #ccc;">|</span>
|
| 29 |
+
<img src="./figures/modelscope-logo.svg" width="16" height="16" alt="Model Scope">
|
| 30 |
+
<a href="https://modelscope.cn/models/InternScience/Agents-A1"><b>ModelScope</b></a>
|
| 31 |
+
</div>
|
| 32 |
+
</div>
|
| 33 |
+
|
| 34 |
+
> [!Note]
|
| 35 |
+
> This repository contains model weights and configuration files for Agents-A1 in the Hugging Face Transformers format.
|
| 36 |
+
>
|
| 37 |
+
> These artifacts are compatible with Hugging Face Transformers, vLLM, SGLang, etc.
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
---
|
| 41 |
+
|
| 42 |
+
## 🔥 News
|
| 43 |
+
- **2026.7.14**: 🔥🔥 The 4B model has been released.
|
| 44 |
+
|
| 45 |
+
- **2026.7.8**: 🔥🔥 By popular demand from the community, our 4B model is coming in the next few days — making it faster and easier to build your own local AI assistant.
|
| 46 |
+
|
| 47 |
+
- **2026.7.2**: 🔥🔥 Based on Agents-A1, we have released a series of quantized model variants. Please refer to the [Agents-A1 collection](https://huggingface.co/collections/InternScience/agents-a1). Besides, we’d like to thank the [mlx-community](https://huggingface.co/collections/mlx-community/agents-a1) for providing quantized versions at multiple scales. Try running Agents-A1 on your Mac!
|
| 48 |
+
|
| 49 |
+
- **2026.6.26**: 🔥🔥 We have open-sourced the Agents-A1 35B-A3B model, along with the evaluation code for selected domains and the technical report.
|
| 50 |
+
|
| 51 |
+
---
|
| 52 |
+
|
| 53 |
+
**Agents‑A1** is a long-horizon agentic model from [InternScience](https://huggingface.co/InternScience), built to scale heterogeneous agentic abilities across multiple domains including **Long‑horizon Search, Engineering, Scientific Research, Instruction Following, and Tool-calling**. We investigate agent-horizon scaling from two perspectives: scaling long-horizon trajectories and scaling heterogeneous agent abilities.
|
| 54 |
+
|
| 55 |
+
From the scaling of long-horizon trajectories, **Agents‑A1** is trained with the assistance of a domain-grounded knowledge-action infrastructure that jointly constructs actions, observations, and verifier outcomes, turning the agent's process into a trainable target. From the scaling of heterogeneous agent abilities, **Agents‑A1** presents a three-stage training paradigm for building scalable general-purpose agentic model. First, we perform full-domain supervised fine-tuning to align the base model with broad agentic behaviors. Second, we train domain-level teacher models to capture specialized expertise in each domain. Third, we propose multi-teacher multi-domain on-policy distillation with heterogeneity-aware optimization to improve knowledge transfer efficiency across different domains.
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
## Highlights
|
| 59 |
+
|
| 60 |
+
- **Agentic Reasoning**: Agents-A1 excels at decomposing complex tasks into executable sub-steps, planning ahead, and adapting its strategy based on intermediate results.
|
| 61 |
+
- **Tool Use**: Natively supports function calling and tool integration, enabling seamless interaction with APIs, code interpreters, search engines, and other external tools.
|
| 62 |
+
- **Scientific and Professional Reasoning**: Handles tool-integrated scientific reasoning and professional knowledge question answering.
|
| 63 |
+
- **Instruction Following**: Precisely follows detailed, multi-constraint instructions across diverse domains.
|
| 64 |
+
|
| 65 |
+
We welcome developers and enterprises to integrate and try Agents-A1 and share their feedback.
|
| 66 |
+
|
| 67 |
+
## Performance
|
| 68 |
+
|
| 69 |
+
We release the dense model Agents-A1-4B with only 4B parameters, yet it delivers impressive performance across long-horizon search, engineering & research, instruction following, and general/scientific agentic tasks. It significantly outperforms similarly-sized models on BrowseComp (66.8), XBench-DS-2510 (90.0), GAIA (95.1), FrontierScience-Research (33.3), and IFEval (94.8), with some scores approaching or even surpassing larger MoE models like Nex-N2-mini and Qwen3.6. Compared to the flagship 35B Agents-A1, the 4B variant achieves strong competitiveness with a fraction of the parameters, demonstrating the series' excellent balance between efficiency and performance, and continuously narrowing the gap between small models and frontier systems.
|
| 70 |
+
|
| 71 |
+
<p>
|
| 72 |
+
🥇 Overall Best Performance Among Models in the Table
|
| 73 |
+
</p>
|
| 74 |
+
|
| 75 |
+
<table>
|
| 76 |
+
<thead>
|
| 77 |
+
<tr>
|
| 78 |
+
<th rowspan="2" align="left">Benchmark</th>
|
| 79 |
+
<th colspan="2" align="center" style="text-align:center;">
|
| 80 |
+
🧠 Dense Models (~4B)
|
| 81 |
+
</th>
|
| 82 |
+
<th colspan="4" align="center" style="text-align:center;">
|
| 83 |
+
🔀 MoE Models (35B-A3B)
|
| 84 |
+
</th>
|
| 85 |
+
|
| 86 |
+
</tr>
|
| 87 |
+
|
| 88 |
+
<tr>
|
| 89 |
+
<th align="center">Qwen3.5-4B</th>
|
| 90 |
+
<th align="center">Agents-A1-4B</th>
|
| 91 |
+
<th align="center">Qwen3.5</th>
|
| 92 |
+
<th align="center">Qwen3.6</th>
|
| 93 |
+
<th align="center">Nex-N2-mini</th>
|
| 94 |
+
|
| 95 |
+
<th align="center">Agents-A1</th>
|
| 96 |
+
</tr>
|
| 97 |
+
</thead>
|
| 98 |
+
|
| 99 |
+
<tbody>
|
| 100 |
+
|
| 101 |
+
<tr>
|
| 102 |
+
<td colspan="7" align="left"><b>🔍 Long-horizon Search</b></td>
|
| 103 |
+
</tr>
|
| 104 |
+
|
| 105 |
+
<tr>
|
| 106 |
+
<td align="left">BrowseComp</td>
|
| 107 |
+
<td align="center">47.2</td>
|
| 108 |
+
<td align="center">66.8</td>
|
| 109 |
+
<td align="center">61.0</td>
|
| 110 |
+
<td align="center">67.9</td>
|
| 111 |
+
<td align="center">74.1</td>
|
| 112 |
+
<td align="center">🥇 75.5</td>
|
| 113 |
+
</tr>
|
| 114 |
+
|
| 115 |
+
<tr>
|
| 116 |
+
<td align="left">XBench-DS-2510</td>
|
| 117 |
+
<td align="center">73.0</td>
|
| 118 |
+
<td align="center">🥇 90.0</td>
|
| 119 |
+
<td align="center">77.0</td>
|
| 120 |
+
<td align="center">71.0</td>
|
| 121 |
+
<td align="center">82.0</td>
|
| 122 |
+
<td align="center">86.0</td>
|
| 123 |
+
</tr>
|
| 124 |
+
|
| 125 |
+
<tr>
|
| 126 |
+
<td align="left">Seal0</td>
|
| 127 |
+
<td align="center">31.5</td>
|
| 128 |
+
<td align="center">45.8</td>
|
| 129 |
+
<td align="center">41.4</td>
|
| 130 |
+
<td align="center">38.7</td>
|
| 131 |
+
<td align="center">49.6</td>
|
| 132 |
+
<td align="center">🥇 56.4</td>
|
| 133 |
+
</tr>
|
| 134 |
+
|
| 135 |
+
<tr>
|
| 136 |
+
<td align="left">GAIA</td>
|
| 137 |
+
<td align="center">58.3</td>
|
| 138 |
+
<td align="center">95.1</td>
|
| 139 |
+
<td align="center">59.8</td>
|
| 140 |
+
<td align="center">78.6</td>
|
| 141 |
+
<td align="center">82.5</td>
|
| 142 |
+
<td align="center">🥇 96.0</td>
|
| 143 |
+
</tr>
|
| 144 |
+
|
| 145 |
+
<tr>
|
| 146 |
+
<td colspan="7" align="left"><b>⚙️ Engineering & Research Tasks</b></td>
|
| 147 |
+
</tr>
|
| 148 |
+
|
| 149 |
+
<tr>
|
| 150 |
+
<td align="left">SciCode</td>
|
| 151 |
+
<td align="center">16.1</td>
|
| 152 |
+
<td align="center">29.6</td>
|
| 153 |
+
<td align="center">37.7</td>
|
| 154 |
+
<td align="center">35.8</td>
|
| 155 |
+
<td align="center">29.9</td>
|
| 156 |
+
<td align="center">🥇 44.3</td>
|
| 157 |
+
</tr>
|
| 158 |
+
|
| 159 |
+
<tr>
|
| 160 |
+
<td align="left">MLE-Lite</td>
|
| 161 |
+
<td align="center">7.6</td>
|
| 162 |
+
<td align="center">22.7</td>
|
| 163 |
+
<td align="center">24.2</td>
|
| 164 |
+
<td align="center">34.9</td>
|
| 165 |
+
<td align="center">34.9</td>
|
| 166 |
+
<td align="center">🥇 43.9</td>
|
| 167 |
+
</tr>
|
| 168 |
+
|
| 169 |
+
<tr>
|
| 170 |
+
<td align="left">LiveCodeBench-V6</td>
|
| 171 |
+
<td align="center">55.8</td>
|
| 172 |
+
<td align="center">59.6</td>
|
| 173 |
+
<td align="center">76.2</td>
|
| 174 |
+
<td align="center">🥇 78.1</td>
|
| 175 |
+
<td align="center">59.1</td>
|
| 176 |
+
<td align="center">76.2</td>
|
| 177 |
+
</tr>
|
| 178 |
+
|
| 179 |
+
<tr>
|
| 180 |
+
<td align="left">FrontierScience-Research</td>
|
| 181 |
+
<td align="center">1.7</td>
|
| 182 |
+
<td align="center">33.3</td>
|
| 183 |
+
<td align="center">2.5</td>
|
| 184 |
+
<td align="center">2.9</td>
|
| 185 |
+
<td align="center">5.0</td>
|
| 186 |
+
<td align="center">🥇 40.0</td>
|
| 187 |
+
</tr>
|
| 188 |
+
|
| 189 |
+
<tr>
|
| 190 |
+
<td colspan="7" align="left"><b>📋 Instruction Following</b></td>
|
| 191 |
+
</tr>
|
| 192 |
+
|
| 193 |
+
<tr>
|
| 194 |
+
<td align="left">IFBench</td>
|
| 195 |
+
<td align="center">59.2</td>
|
| 196 |
+
<td align="center">69.1</td>
|
| 197 |
+
<td align="center">70.2</td>
|
| 198 |
+
<td align="center">64.4</td>
|
| 199 |
+
<td align="center">54.1</td>
|
| 200 |
+
<td align="center">🥇 80.6</td>
|
| 201 |
+
</tr>
|
| 202 |
+
|
| 203 |
+
<tr>
|
| 204 |
+
<td align="left">LongBench-v2</td>
|
| 205 |
+
<td align="center">50.0</td>
|
| 206 |
+
<td align="center">52.1</td>
|
| 207 |
+
<td align="center">59.0</td>
|
| 208 |
+
<td align="center">57.7</td>
|
| 209 |
+
<td align="center">59.6</td>
|
| 210 |
+
<td align="center">🥇 60.2</td>
|
| 211 |
+
</tr>
|
| 212 |
+
|
| 213 |
+
<tr>
|
| 214 |
+
<td align="left">IFEval</td>
|
| 215 |
+
<td align="center">89.8</td>
|
| 216 |
+
<td align="center">🥇 94.8</td>
|
| 217 |
+
<td align="center">91.9</td>
|
| 218 |
+
<td align="center">91.3</td>
|
| 219 |
+
<td align="center">88.4</td>
|
| 220 |
+
<td align="center">🥇 94.8</td>
|
| 221 |
+
</tr>
|
| 222 |
+
|
| 223 |
+
<tr>
|
| 224 |
+
<td colspan="7" align="left"><b>🤖 General & Scientific Agentic Tasks</b></td>
|
| 225 |
+
</tr>
|
| 226 |
+
|
| 227 |
+
<tr>
|
| 228 |
+
<td align="left">τ<sup>2</sup>-Bench</td>
|
| 229 |
+
<td align="center">79.9</td>
|
| 230 |
+
<td align="center">78.2</td>
|
| 231 |
+
<td align="center">🥇 81.2</td>
|
| 232 |
+
<td align="center">79.0</td>
|
| 233 |
+
<td align="center">74.5</td>
|
| 234 |
+
<td align="center">79.8</td>
|
| 235 |
+
</tr>
|
| 236 |
+
|
| 237 |
+
<tr>
|
| 238 |
+
<td align="left">VitaBench</td>
|
| 239 |
+
<td align="center">22.0</td>
|
| 240 |
+
<td align="center">🥇 40.3</td>
|
| 241 |
+
<td align="center">31.9</td>
|
| 242 |
+
<td align="center">35.6</td>
|
| 243 |
+
<td align="center">23.0</td>
|
| 244 |
+
<td align="center">38.8</td>
|
| 245 |
+
</tr>
|
| 246 |
+
|
| 247 |
+
<tr>
|
| 248 |
+
<td align="left">MatTools</td>
|
| 249 |
+
<td align="center">10.9</td>
|
| 250 |
+
<td align="center">🥇 49.3</td>
|
| 251 |
+
<td align="center">21.0</td>
|
| 252 |
+
<td align="center">15.9</td>
|
| 253 |
+
<td align="center">34.1</td>
|
| 254 |
+
<td align="center">47.1</td>
|
| 255 |
+
</tr>
|
| 256 |
+
|
| 257 |
+
</tbody>
|
| 258 |
+
</table>
|
| 259 |
+
|
| 260 |
+
|
| 261 |
+
## Usage
|
| 262 |
+
|
| 263 |
+
### SGLang
|
| 264 |
+
|
| 265 |
+
[SGLang](https://github.com/sgl-project/sglang) is a fast serving framework for large language models and vision language models.
|
| 266 |
+
|
| 267 |
+
Install SGLang with uv:
|
| 268 |
+
|
| 269 |
+
```shell
|
| 270 |
+
uv venv --python 3.12 --seed --managed-python
|
| 271 |
+
source .venv/bin/activate
|
| 272 |
+
|
| 273 |
+
uv pip install sglang
|
| 274 |
+
```
|
| 275 |
+
|
| 276 |
+
See [its documentation](https://docs.sglang.ai/get_started/install.html) for more details.
|
| 277 |
+
|
| 278 |
+
The following commands create API endpoints at `http://localhost:8000/v1`:
|
| 279 |
+
|
| 280 |
+
- **Standard Version** (1 GPUs, 262K context):
|
| 281 |
+
|
| 282 |
+
```shell
|
| 283 |
+
python -m sglang.launch_server \
|
| 284 |
+
--model-path InternScience/Agents-A1-4B \
|
| 285 |
+
--port 8000 \
|
| 286 |
+
--tp-size 1 \
|
| 287 |
+
--mem-fraction-static 0.8 \
|
| 288 |
+
--context-length 262144 \
|
| 289 |
+
--reasoning-parser qwen3
|
| 290 |
+
```
|
| 291 |
+
- **Tool Use**:
|
| 292 |
+
|
| 293 |
+
```shell
|
| 294 |
+
python -m sglang.launch_server \
|
| 295 |
+
--model-path InternScience/Agents-A1-4B \
|
| 296 |
+
--port 8000 \
|
| 297 |
+
--tp-size 1 \
|
| 298 |
+
--mem-fraction-static 0.8 \
|
| 299 |
+
--context-length 262144 \
|
| 300 |
+
--reasoning-parser qwen3 \
|
| 301 |
+
--tool-call-parser qwen3_coder
|
| 302 |
+
```
|
| 303 |
+
|
| 304 |
+
### vLLM
|
| 305 |
+
|
| 306 |
+
[vLLM](https://github.com/vllm-project/vllm) is a high-throughput and memory-efficient inference and serving engine for LLMs.
|
| 307 |
+
|
| 308 |
+
Install vLLM from the main branch via uv:
|
| 309 |
+
|
| 310 |
+
```shell
|
| 311 |
+
uv venv --python 3.12 --seed --managed-python
|
| 312 |
+
source .venv/bin/activate
|
| 313 |
+
|
| 314 |
+
uv pip install vllm --torch-backend=auto
|
| 315 |
+
```
|
| 316 |
+
|
| 317 |
+
See [its documentation](https://docs.vllm.ai/en/stable/getting_started/installation/index.html) for more details.
|
| 318 |
+
|
| 319 |
+
The following commands create API endpoints at `http://localhost:8000/v1`:
|
| 320 |
+
|
| 321 |
+
- **Standard Version** (1 GPUs, 262K context):
|
| 322 |
+
|
| 323 |
+
```shell
|
| 324 |
+
vllm serve InternScience/Agents-A1-4B \
|
| 325 |
+
--port 8000 \
|
| 326 |
+
--tensor-parallel-size 1 \
|
| 327 |
+
--max-model-len 262144 \
|
| 328 |
+
--reasoning-parser qwen3
|
| 329 |
+
```
|
| 330 |
+
- **Tool Call**:
|
| 331 |
+
|
| 332 |
+
```shell
|
| 333 |
+
vllm serve InternScience/Agents-A1-4B \
|
| 334 |
+
--port 8000 \
|
| 335 |
+
--tensor-parallel-size 1 \
|
| 336 |
+
--max-model-len 262144 \
|
| 337 |
+
--reasoning-parser qwen3 \
|
| 338 |
+
--enable-auto-tool-choice \
|
| 339 |
+
--tool-call-parser qwen3_coder
|
| 340 |
+
```
|
| 341 |
+
- **Text-Only** (skips vision encoder to free KV cache memory):
|
| 342 |
+
|
| 343 |
+
```shell
|
| 344 |
+
vllm serve InternScience/Agents-A1-4B \
|
| 345 |
+
--port 8000 \
|
| 346 |
+
--tensor-parallel-size 1 \
|
| 347 |
+
--max-model-len 262144 \
|
| 348 |
+
--reasoning-parser qwen3 \
|
| 349 |
+
--language-model-only
|
| 350 |
+
```
|
| 351 |
+
|
| 352 |
+
### Recommended Sampling Parameters & System Prompt
|
| 353 |
+
|
| 354 |
+
For the best generation quality and more stable multi-turn behavior, we recommend using the following sampling parameters:
|
| 355 |
+
|
| 356 |
+
* `temperature`: 0.85
|
| 357 |
+
* `top_p`: 0.95
|
| 358 |
+
* `top_k`: 20
|
| 359 |
+
* `min_p`: 0.0
|
| 360 |
+
* `presence_penalty`: 1.1
|
| 361 |
+
* `repetition_penalty`: 1.0
|
| 362 |
+
|
| 363 |
+
We also recommend using the following **system prompt**:
|
| 364 |
+
|
| 365 |
+
```text
|
| 366 |
+
You are Intern-A1, a deep research assistant developed by InternAgent Team, Shanghai Artificial Intelligence Laboratory. 你是Intern-A1, 一个由上海人工智能实验室的InternAgent团队开发的深度研究人工智能助手。 You can have natural multi-turn conversations with users on any topic.
|
| 367 |
+
|
| 368 |
+
## Daily Chat & Simple Questions
|
| 369 |
+
For everyday conversations, greetings, opinions, coding help, factual lookups, definitions, calculations, explanations, and any question you can confidently answer from your knowledge — just respond directly and naturally in the user's language as Intern-A1. Do NOT use any tools for these.
|
| 370 |
+
|
| 371 |
+
## Research & Search Questions
|
| 372 |
+
Only when the user's question requires up-to-date information, in-depth investigation, multi-source verification, or involves recent events, niche topics, or anything you are uncertain about, use the available tool **tavily_search**.
|
| 373 |
+
|
| 374 |
+
Research strategy:
|
| 375 |
+
- Start with a focused search query to get an overview.
|
| 376 |
+
- If the initial search is insufficient, refine your query with more specific terms.
|
| 377 |
+
- Stop searching once you have enough information to provide a comprehensive answer. Do not over-research.
|
| 378 |
+
|
| 379 |
+
Current date: 2026-07-13
|
| 380 |
+
```
|
| 381 |
+
|
| 382 |
+
> [!Note]
|
| 383 |
+
> The current date should be updated dynamically when possible.
|
| 384 |
+
|
| 385 |
+
|
| 386 |
+
## Agent Capability Evaluation
|
| 387 |
+
|
| 388 |
+
To provide the community with a unified agent evaluation codebase for fair comparison, we have also open-sourced an evaluation framework for assessing agentic models across core capabilities, including tool use and multi-step reasoning. The evaluation code is included in the [Agents-A1/evaluation](https://github.com/InternScience/Agents-A1/tree/main/evaluation) of this repository.
|
| 389 |
+
|
| 390 |
+
We use this framework to evaluate the released model under a standardized and reproducible setting.
|
| 391 |
+
Specifically, the model is tested on a set of agent-oriented tasks that require it to understand user goals, decompose complex instructions, interact with tools or environments when necessary, and produce final results. The evaluation results reported in [Model Card](https://huggingface.co/InternScience/Agents-A1) are generated using the open-source framework above, so that users can reproduce the experiments, compare other models under the same protocol, and further extend the benchmark for new agent scenarios. (**Note that:** To ensure a fair comparison, we report the benchmark results from their original technical reports. If a model does not report the corresponding benchmark results, we evaluate it using the same evaluation protocol as our model.)
|
| 392 |
+
|
| 393 |
+
For detailed evaluation scripts, task definitions, metrics, and reproduction instructions, please refer to the evaluation codebase.
|
| 394 |
+
|
| 395 |
+
## Citation
|
| 396 |
+
|
| 397 |
+
If you find our work helpful, feel free to give us a cite.
|
| 398 |
+
|
| 399 |
+
```
|
| 400 |
+
@misc{bai2026scalinghorizonparametersreaching,
|
| 401 |
+
title={Scaling the Horizon, Not the Parameters: Reaching Trillion-Parameter Performance with a 35B Agent},
|
| 402 |
+
author={Lei Bai and Zongsheng Cao and Yang Chen and Zhiyao Cui and Shangheng Du and Yue Fan and Shiyang Feng and Zijie Guo and Haonan He and Liang He and Xiaohan He and Shuyue Hu and Yusong Hu and Songtao Huang and Yichen Jiang and Hao Li and Xin Li and Dahua Lin and Weihao Lin and Fenghua Ling and Dongrui Liu and Zhuo Liu and Runmin Ma and Chunjiang Mu and Haoyang Peng and Tianshuo Peng and Jinxin Shi and Luohe Shi and Boyuan Sun and Zelin Tan and Shengji Tang and Qianyi Wang and Yiming Wu and Yi Xie and Xiangchao Yan and Jingqi Ye and Peng Ye and Fangchen Yu and Jiakang Yuan and Bihao Zhan and Bo Zhang and Chen Zhang and Shufei Zhang and Shuaiyu Zhang and Wenlong Zhang and Yiqun Zhang and Junpeng Zhao and Zhijie Zhong and Bowen Zhou and Yuhao Zhou},
|
| 403 |
+
year={2026},
|
| 404 |
+
eprint={2606.30616},
|
| 405 |
+
archivePrefix={arXiv},
|
| 406 |
+
primaryClass={cs.CL},
|
| 407 |
+
url={https://arxiv.org/abs/2606.30616},
|
| 408 |
+
}
|
| 409 |
+
```
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set image_count = namespace(value=0) %}
|
| 2 |
+
{%- set video_count = namespace(value=0) %}
|
| 3 |
+
{%- macro render_content(content, do_vision_count, is_system_content=false) %}
|
| 4 |
+
{%- if content is string %}
|
| 5 |
+
{{- content }}
|
| 6 |
+
{%- elif content is iterable and content is not mapping %}
|
| 7 |
+
{%- for item in content %}
|
| 8 |
+
{%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
|
| 9 |
+
{%- if is_system_content %}
|
| 10 |
+
{{- raise_exception('System message cannot contain images.') }}
|
| 11 |
+
{%- endif %}
|
| 12 |
+
{%- if do_vision_count %}
|
| 13 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{%- if add_vision_id %}
|
| 16 |
+
{{- 'Picture ' ~ image_count.value ~ ': ' }}
|
| 17 |
+
{%- endif %}
|
| 18 |
+
{{- '<|vision_start|><|image_pad|><|vision_end|>' }}
|
| 19 |
+
{%- elif 'video' in item or item.type == 'video' %}
|
| 20 |
+
{%- if is_system_content %}
|
| 21 |
+
{{- raise_exception('System message cannot contain videos.') }}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if do_vision_count %}
|
| 24 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 25 |
+
{%- endif %}
|
| 26 |
+
{%- if add_vision_id %}
|
| 27 |
+
{{- 'Video ' ~ video_count.value ~ ': ' }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{{- '<|vision_start|><|video_pad|><|vision_end|>' }}
|
| 30 |
+
{%- elif 'text' in item %}
|
| 31 |
+
{{- item.text }}
|
| 32 |
+
{%- else %}
|
| 33 |
+
{{- raise_exception('Unexpected item type in content.') }}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- endfor %}
|
| 36 |
+
{%- elif content is none or content is undefined %}
|
| 37 |
+
{{- '' }}
|
| 38 |
+
{%- else %}
|
| 39 |
+
{{- raise_exception('Unexpected content type.') }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endmacro %}
|
| 42 |
+
{%- set default_system_prompt -%}
|
| 43 |
+
You are Intern-A1, a deep research assistant developed by InternAgent Team, Shanghai Artificial Intelligence Laboratory. 你是Intern-A1, 一个由上海人工智能实验室的InternAgent团队开发的深度研究人工智能助手。 You can have natural multi-turn conversations with users on any topic.
|
| 44 |
+
|
| 45 |
+
## Daily Chat & Simple Questions
|
| 46 |
+
For everyday conversations, greetings, opinions, coding help, factual lookups, definitions, calculations, explanations, and any question you can confidently answer from your knowledge — just respond directly and naturally in the user's language as Intern-A1. Do NOT use any tools for these.
|
| 47 |
+
|
| 48 |
+
## Research & Search Questions
|
| 49 |
+
Only when the user's question requires up-to-date information, in-depth investigation, multi-source verification, or involves recent events, niche topics, or anything you are uncertain about, use the available tools.
|
| 50 |
+
|
| 51 |
+
Research strategy:
|
| 52 |
+
- Start with a focused search query to get an overview.
|
| 53 |
+
- If the initial search is insufficient, refine your query with more specific terms.
|
| 54 |
+
- Stop searching once you have enough information to provide a comprehensive answer. Do not over-research.
|
| 55 |
+
|
| 56 |
+
Current date: 2026-07-14
|
| 57 |
+
{%- endset -%}
|
| 58 |
+
{%- if not messages %}
|
| 59 |
+
{{- raise_exception('No messages provided.') }}
|
| 60 |
+
{%- endif %}
|
| 61 |
+
{%- set user_system_content = render_content(messages[0].content, false, true)|trim if messages[0].role == 'system' else '' %}
|
| 62 |
+
{%- set system_content = user_system_content if user_system_content else default_system_prompt %}
|
| 63 |
+
{%- if tools and tools is iterable and tools is not mapping %}
|
| 64 |
+
{{- '<|im_start|>system\n' }}
|
| 65 |
+
{{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
|
| 66 |
+
{%- for tool in tools %}
|
| 67 |
+
{{- "\n" }}
|
| 68 |
+
{{- tool | tojson }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{{- "\n</tools>" }}
|
| 71 |
+
{{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
|
| 72 |
+
{%- if system_content %}
|
| 73 |
+
{{- '\n\n' + system_content }}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{{- '<|im_end|>\n' }}
|
| 76 |
+
{%- else %}
|
| 77 |
+
{%- if system_content %}
|
| 78 |
+
{{- '<|im_start|>system\n' + system_content + '<|im_end|>\n' }}
|
| 79 |
+
{%- endif %}
|
| 80 |
+
{%- endif %}
|
| 81 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 82 |
+
{%- for message in messages[::-1] %}
|
| 83 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 84 |
+
{%- if ns.multi_step_tool and message.role == "user" %}
|
| 85 |
+
{%- set content = render_content(message.content, false)|trim %}
|
| 86 |
+
{%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
|
| 87 |
+
{%- set ns.multi_step_tool = false %}
|
| 88 |
+
{%- set ns.last_query_index = index %}
|
| 89 |
+
{%- endif %}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- endfor %}
|
| 92 |
+
{%- if ns.multi_step_tool %}
|
| 93 |
+
{{- raise_exception('No user query found in messages.') }}
|
| 94 |
+
{%- endif %}
|
| 95 |
+
{%- for message in messages %}
|
| 96 |
+
{%- set content = render_content(message.content, true)|trim %}
|
| 97 |
+
{%- if message.role == "system" %}
|
| 98 |
+
{%- if not loop.first %}
|
| 99 |
+
{{- raise_exception('System message must be at the beginning.') }}
|
| 100 |
+
{%- endif %}
|
| 101 |
+
{%- elif message.role == "user" %}
|
| 102 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 103 |
+
{%- elif message.role == "assistant" %}
|
| 104 |
+
{%- set reasoning_content = '' %}
|
| 105 |
+
{%- if message.reasoning_content is string %}
|
| 106 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 107 |
+
{%- else %}
|
| 108 |
+
{%- if '</think>' in content %}
|
| 109 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 110 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 111 |
+
{%- endif %}
|
| 112 |
+
{%- endif %}
|
| 113 |
+
{%- set reasoning_content = reasoning_content|trim %}
|
| 114 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 115 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
|
| 116 |
+
{%- else %}
|
| 117 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 118 |
+
{%- endif %}
|
| 119 |
+
{%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
|
| 120 |
+
{%- for tool_call in message.tool_calls %}
|
| 121 |
+
{%- if tool_call.function is defined %}
|
| 122 |
+
{%- set tool_call = tool_call.function %}
|
| 123 |
+
{%- endif %}
|
| 124 |
+
{%- if loop.first %}
|
| 125 |
+
{%- if content|trim %}
|
| 126 |
+
{{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 127 |
+
{%- else %}
|
| 128 |
+
{{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 129 |
+
{%- endif %}
|
| 130 |
+
{%- else %}
|
| 131 |
+
{{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 132 |
+
{%- endif %}
|
| 133 |
+
{%- if tool_call.arguments is defined %}
|
| 134 |
+
{%- for args_name, args_value in tool_call.arguments|items %}
|
| 135 |
+
{{- '<parameter=' + args_name + '>\n' }}
|
| 136 |
+
{%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
|
| 137 |
+
{{- args_value }}
|
| 138 |
+
{{- '\n</parameter>\n' }}
|
| 139 |
+
{%- endfor %}
|
| 140 |
+
{%- endif %}
|
| 141 |
+
{{- '</function>\n</tool_call>' }}
|
| 142 |
+
{%- endfor %}
|
| 143 |
+
{%- endif %}
|
| 144 |
+
{{- '<|im_end|>\n' }}
|
| 145 |
+
{%- elif message.role == "tool" %}
|
| 146 |
+
{%- if loop.previtem and loop.previtem.role != "tool" %}
|
| 147 |
+
{{- '<|im_start|>user' }}
|
| 148 |
+
{%- endif %}
|
| 149 |
+
{{- '\n<tool_response>\n' }}
|
| 150 |
+
{{- content }}
|
| 151 |
+
{{- '\n</tool_response>' }}
|
| 152 |
+
{%- if not loop.last and loop.nextitem.role != "tool" %}
|
| 153 |
+
{{- '<|im_end|>\n' }}
|
| 154 |
+
{%- elif loop.last %}
|
| 155 |
+
{{- '<|im_end|>\n' }}
|
| 156 |
+
{%- endif %}
|
| 157 |
+
{%- else %}
|
| 158 |
+
{{- raise_exception('Unexpected message role.') }}
|
| 159 |
+
{%- endif %}
|
| 160 |
+
{%- endfor %}
|
| 161 |
+
{%- if add_generation_prompt %}
|
| 162 |
+
{{- '<|im_start|>assistant\n' }}
|
| 163 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 164 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 165 |
+
{%- else %}
|
| 166 |
+
{{- '<think>\n' }}
|
| 167 |
+
{%- endif %}
|
| 168 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3_5ForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"image_token_id": 248056,
|
| 6 |
+
"model_type": "qwen3_5",
|
| 7 |
+
"text_config": {
|
| 8 |
+
"attention_bias": false,
|
| 9 |
+
"attention_dropout": 0.0,
|
| 10 |
+
"attn_output_gate": true,
|
| 11 |
+
"dtype": "bfloat16",
|
| 12 |
+
"eos_token_id": 248044,
|
| 13 |
+
"full_attention_interval": 4,
|
| 14 |
+
"head_dim": 256,
|
| 15 |
+
"hidden_act": "silu",
|
| 16 |
+
"hidden_size": 2560,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 9216,
|
| 19 |
+
"layer_types": [
|
| 20 |
+
"linear_attention",
|
| 21 |
+
"linear_attention",
|
| 22 |
+
"linear_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"linear_attention",
|
| 25 |
+
"linear_attention",
|
| 26 |
+
"linear_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"linear_attention",
|
| 29 |
+
"linear_attention",
|
| 30 |
+
"linear_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"linear_attention",
|
| 33 |
+
"linear_attention",
|
| 34 |
+
"linear_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"linear_attention",
|
| 37 |
+
"linear_attention",
|
| 38 |
+
"linear_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"linear_attention",
|
| 41 |
+
"linear_attention",
|
| 42 |
+
"linear_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"linear_attention",
|
| 45 |
+
"linear_attention",
|
| 46 |
+
"linear_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"linear_attention",
|
| 49 |
+
"linear_attention",
|
| 50 |
+
"linear_attention",
|
| 51 |
+
"full_attention"
|
| 52 |
+
],
|
| 53 |
+
"linear_conv_kernel_dim": 4,
|
| 54 |
+
"linear_key_head_dim": 128,
|
| 55 |
+
"linear_num_key_heads": 16,
|
| 56 |
+
"linear_num_value_heads": 32,
|
| 57 |
+
"linear_value_head_dim": 128,
|
| 58 |
+
"max_position_embeddings": 262144,
|
| 59 |
+
"mlp_only_layers": [],
|
| 60 |
+
"model_type": "qwen3_5_text",
|
| 61 |
+
"mtp_num_hidden_layers": 1,
|
| 62 |
+
"mtp_use_dedicated_embeddings": false,
|
| 63 |
+
"num_attention_heads": 16,
|
| 64 |
+
"num_hidden_layers": 32,
|
| 65 |
+
"num_key_value_heads": 4,
|
| 66 |
+
"rms_norm_eps": 1e-06,
|
| 67 |
+
"tie_word_embeddings": true,
|
| 68 |
+
"use_cache": true,
|
| 69 |
+
"vocab_size": 248320,
|
| 70 |
+
"mamba_ssm_dtype": "float32",
|
| 71 |
+
"rope_parameters": {
|
| 72 |
+
"mrope_interleaved": true,
|
| 73 |
+
"mrope_section": [
|
| 74 |
+
11,
|
| 75 |
+
11,
|
| 76 |
+
10
|
| 77 |
+
],
|
| 78 |
+
"rope_type": "default",
|
| 79 |
+
"rope_theta": 10000000,
|
| 80 |
+
"partial_rotary_factor": 0.25
|
| 81 |
+
}
|
| 82 |
+
},
|
| 83 |
+
"tie_word_embeddings": true,
|
| 84 |
+
"transformers_version": "4.57.0.dev0",
|
| 85 |
+
"video_token_id": 248057,
|
| 86 |
+
"vision_config": {
|
| 87 |
+
"deepstack_visual_indexes": [],
|
| 88 |
+
"depth": 24,
|
| 89 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 90 |
+
"hidden_size": 1024,
|
| 91 |
+
"in_channels": 3,
|
| 92 |
+
"initializer_range": 0.02,
|
| 93 |
+
"intermediate_size": 4096,
|
| 94 |
+
"model_type": "qwen3_5",
|
| 95 |
+
"num_heads": 16,
|
| 96 |
+
"num_position_embeddings": 2304,
|
| 97 |
+
"out_hidden_size": 2560,
|
| 98 |
+
"patch_size": 16,
|
| 99 |
+
"spatial_merge_size": 2,
|
| 100 |
+
"temporal_patch_size": 2
|
| 101 |
+
},
|
| 102 |
+
"vision_end_token_id": 248054,
|
| 103 |
+
"vision_start_token_id": 248053
|
| 104 |
+
}
|
figures/24px.svg
ADDED
|
|
figures/github-logo.svg
ADDED
|
|
figures/hf-logo.svg
ADDED
|
|
figures/logo_nobg.png
ADDED
|
Git LFS Details
|
figures/modelscope-logo.svg
ADDED
|
|
model-00000-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc19e22bc1251efa260225a8c5d4a29ca7a063c8db755aa4d13d13f808bf29a3
|
| 3 |
+
size 5363484352
|
model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2376df4875ae41823039bff405cfc1f61e4205e6864c7961998e87c418789bf
|
| 3 |
+
size 3715136104
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,730 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 550694249472
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"model.language_model.layers.0.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 7 |
+
"model.language_model.layers.1.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 8 |
+
"model.language_model.layers.7.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 9 |
+
"model.language_model.layers.7.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 10 |
+
"model.language_model.layers.8.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 11 |
+
"model.language_model.layers.9.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 12 |
+
"model.language_model.layers.11.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 13 |
+
"model.language_model.layers.11.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 14 |
+
"model.language_model.layers.15.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 15 |
+
"model.language_model.layers.15.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 16 |
+
"model.language_model.layers.16.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 17 |
+
"model.language_model.layers.18.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 18 |
+
"model.language_model.layers.21.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 19 |
+
"model.language_model.layers.21.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 20 |
+
"model.language_model.layers.21.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 21 |
+
"model.language_model.layers.22.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 22 |
+
"model.language_model.layers.25.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 23 |
+
"model.language_model.layers.25.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 24 |
+
"model.language_model.layers.28.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 25 |
+
"model.language_model.layers.29.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 26 |
+
"model.language_model.layers.31.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 27 |
+
"model.language_model.layers.31.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 28 |
+
"model.language_model.layers.5.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 29 |
+
"model.language_model.layers.9.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 30 |
+
"model.language_model.layers.9.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 31 |
+
"model.language_model.layers.10.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 32 |
+
"model.language_model.layers.10.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 33 |
+
"model.language_model.layers.11.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
| 34 |
+
"model.language_model.layers.11.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
| 35 |
+
"model.language_model.layers.11.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
| 36 |
+
"model.language_model.layers.13.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 37 |
+
"model.language_model.layers.17.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 38 |
+
"model.language_model.layers.17.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 39 |
+
"model.language_model.layers.20.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 40 |
+
"model.language_model.layers.20.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 41 |
+
"model.language_model.layers.23.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 42 |
+
"model.language_model.layers.27.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 43 |
+
"model.language_model.layers.27.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 44 |
+
"model.language_model.layers.30.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 45 |
+
"model.language_model.layers.30.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 46 |
+
"model.language_model.layers.1.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 47 |
+
"model.language_model.layers.1.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 48 |
+
"model.language_model.layers.9.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 49 |
+
"model.language_model.layers.9.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 50 |
+
"model.language_model.layers.11.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 51 |
+
"model.language_model.layers.17.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 52 |
+
"model.language_model.layers.19.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 53 |
+
"model.language_model.layers.19.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 54 |
+
"model.language_model.layers.21.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 55 |
+
"model.language_model.layers.22.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 56 |
+
"model.language_model.layers.22.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 57 |
+
"model.language_model.layers.29.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 58 |
+
"model.language_model.layers.29.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 59 |
+
"model.language_model.layers.30.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 60 |
+
"model.language_model.layers.31.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 61 |
+
"model.language_model.layers.6.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 62 |
+
"model.language_model.layers.6.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 63 |
+
"model.language_model.layers.9.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 64 |
+
"model.language_model.layers.14.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 65 |
+
"model.language_model.layers.14.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 66 |
+
"model.language_model.layers.15.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
| 67 |
+
"model.language_model.layers.15.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
| 68 |
+
"model.language_model.layers.15.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
| 69 |
+
"model.language_model.layers.17.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 70 |
+
"model.language_model.layers.24.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 71 |
+
"model.language_model.layers.24.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 72 |
+
"model.language_model.layers.27.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 73 |
+
"model.language_model.layers.0.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 74 |
+
"model.language_model.layers.2.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 75 |
+
"model.language_model.layers.4.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 76 |
+
"model.language_model.layers.4.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 77 |
+
"model.language_model.layers.5.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 78 |
+
"model.language_model.layers.8.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 79 |
+
"model.language_model.layers.8.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 80 |
+
"model.language_model.layers.10.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 81 |
+
"model.language_model.layers.12.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 82 |
+
"model.language_model.layers.12.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 83 |
+
"model.language_model.layers.12.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 84 |
+
"model.language_model.layers.16.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 85 |
+
"model.language_model.layers.16.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 86 |
+
"model.language_model.layers.19.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 87 |
+
"model.language_model.layers.22.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 88 |
+
"model.language_model.layers.22.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 89 |
+
"model.language_model.layers.23.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
| 90 |
+
"model.language_model.layers.24.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 91 |
+
"model.language_model.layers.25.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 92 |
+
"model.language_model.layers.26.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 93 |
+
"model.language_model.layers.26.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 94 |
+
"model.language_model.layers.29.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 95 |
+
"model.language_model.layers.10.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 96 |
+
"model.language_model.layers.11.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
| 97 |
+
"model.language_model.layers.18.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 98 |
+
"model.language_model.layers.18.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 99 |
+
"model.language_model.layers.19.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
| 100 |
+
"model.language_model.layers.19.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
| 101 |
+
"model.language_model.layers.19.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
| 102 |
+
"model.language_model.layers.20.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 103 |
+
"model.language_model.layers.28.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 104 |
+
"model.language_model.layers.28.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 105 |
+
"model.language_model.layers.30.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 106 |
+
"model.language_model.layers.31.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
| 107 |
+
"model.language_model.layers.1.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 108 |
+
"model.language_model.layers.1.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 109 |
+
"model.language_model.layers.2.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 110 |
+
"model.language_model.layers.2.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 111 |
+
"model.language_model.layers.2.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 112 |
+
"model.language_model.layers.3.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 113 |
+
"model.language_model.layers.3.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 114 |
+
"model.language_model.layers.4.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 115 |
+
"model.language_model.layers.5.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 116 |
+
"model.language_model.layers.12.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 117 |
+
"model.language_model.layers.12.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 118 |
+
"model.language_model.layers.13.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 119 |
+
"model.language_model.layers.22.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 120 |
+
"model.language_model.layers.25.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 121 |
+
"model.language_model.layers.26.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 122 |
+
"model.language_model.layers.27.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
| 123 |
+
"model.language_model.layers.6.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 124 |
+
"model.language_model.layers.7.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
| 125 |
+
"model.language_model.layers.14.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 126 |
+
"model.language_model.layers.15.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
| 127 |
+
"model.language_model.layers.23.self_attn.q_proj.weight": "model-00000-of-00002.safetensors",
|
| 128 |
+
"model.language_model.layers.23.self_attn.k_proj.weight": "model-00000-of-00002.safetensors",
|
| 129 |
+
"model.language_model.layers.23.self_attn.v_proj.weight": "model-00000-of-00002.safetensors",
|
| 130 |
+
"model.language_model.layers.24.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 131 |
+
"model.language_model.layers.3.self_attn.o_proj.weight": "model-00000-of-00002.safetensors",
|
| 132 |
+
"model.language_model.layers.5.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 133 |
+
"model.language_model.layers.5.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 134 |
+
"model.language_model.layers.6.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 135 |
+
"model.language_model.layers.8.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 136 |
+
"model.language_model.layers.13.linear_attn.in_proj_qkv.weight": "model-00000-of-00002.safetensors",
|
| 137 |
+
"model.language_model.layers.13.linear_attn.out_proj.weight": "model-00000-of-00002.safetensors",
|
| 138 |
+
"model.language_model.layers.13.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 139 |
+
"model.language_model.layers.13.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 140 |
+
"model.language_model.layers.16.mlp.down_proj.weight": "model-00000-of-00002.safetensors",
|
| 141 |
+
"model.language_model.layers.20.linear_attn.in_proj_z.weight": "model-00000-of-00002.safetensors",
|
| 142 |
+
"model.language_model.layers.23.mlp.gate_proj.weight": "model-00000-of-00002.safetensors",
|
| 143 |
+
"model.language_model.layers.23.mlp.up_proj.weight": "model-00000-of-00002.safetensors",
|
| 144 |
+
"model.language_model.layers.26.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 145 |
+
"model.language_model.layers.26.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 146 |
+
"model.language_model.layers.26.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 147 |
+
"model.language_model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 148 |
+
"model.language_model.layers.27.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 149 |
+
"model.language_model.layers.27.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 150 |
+
"model.language_model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
+
"model.language_model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 152 |
+
"model.language_model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 153 |
+
"model.language_model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 154 |
+
"model.language_model.layers.6.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 155 |
+
"model.language_model.layers.14.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 156 |
+
"model.language_model.layers.14.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 157 |
+
"model.language_model.layers.20.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 158 |
+
"model.language_model.layers.28.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 159 |
+
"model.language_model.layers.28.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 160 |
+
"model.language_model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 161 |
+
"model.language_model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 162 |
+
"model.language_model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 163 |
+
"model.language_model.layers.8.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 164 |
+
"model.language_model.layers.14.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 165 |
+
"model.language_model.layers.16.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 166 |
+
"model.language_model.layers.21.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 167 |
+
"model.language_model.layers.28.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 168 |
+
"model.language_model.layers.29.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 169 |
+
"model.language_model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 170 |
+
"model.language_model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 171 |
+
"model.language_model.layers.25.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 172 |
+
"model.language_model.layers.31.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 173 |
+
"model.language_model.layers.31.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 174 |
+
"model.language_model.layers.31.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 175 |
+
"model.language_model.layers.0.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 176 |
+
"model.language_model.layers.0.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 177 |
+
"model.language_model.layers.0.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 178 |
+
"model.language_model.layers.1.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 179 |
+
"model.language_model.layers.1.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 180 |
+
"model.language_model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 181 |
+
"model.language_model.layers.2.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 182 |
+
"model.language_model.layers.2.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 183 |
+
"model.language_model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 184 |
+
"model.language_model.layers.4.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 185 |
+
"model.language_model.layers.4.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 186 |
+
"model.language_model.layers.5.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 187 |
+
"model.language_model.layers.5.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 188 |
+
"model.language_model.layers.5.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 189 |
+
"model.language_model.layers.5.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 190 |
+
"model.language_model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 191 |
+
"model.language_model.layers.6.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 192 |
+
"model.language_model.layers.6.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 193 |
+
"model.language_model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 194 |
+
"model.language_model.layers.8.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 195 |
+
"model.language_model.layers.8.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 196 |
+
"model.language_model.layers.8.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 197 |
+
"model.language_model.layers.8.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 198 |
+
"model.language_model.layers.9.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 199 |
+
"model.language_model.layers.9.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 200 |
+
"model.language_model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 201 |
+
"model.language_model.layers.10.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 202 |
+
"model.language_model.layers.10.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 203 |
+
"model.language_model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 204 |
+
"model.language_model.layers.12.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 205 |
+
"model.language_model.layers.12.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 206 |
+
"model.language_model.layers.13.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 207 |
+
"model.language_model.layers.13.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 208 |
+
"model.language_model.layers.13.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 209 |
+
"model.language_model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 210 |
+
"model.language_model.layers.14.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 211 |
+
"model.language_model.layers.14.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 212 |
+
"model.language_model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 213 |
+
"model.language_model.layers.16.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 214 |
+
"model.language_model.layers.16.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 215 |
+
"model.language_model.layers.16.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 216 |
+
"model.language_model.layers.17.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 217 |
+
"model.language_model.layers.17.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 218 |
+
"model.language_model.layers.17.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 219 |
+
"model.language_model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 220 |
+
"model.language_model.layers.18.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 221 |
+
"model.language_model.layers.18.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 222 |
+
"model.language_model.layers.18.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 223 |
+
"model.language_model.layers.18.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 224 |
+
"model.language_model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 225 |
+
"model.language_model.layers.20.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 226 |
+
"model.language_model.layers.20.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 227 |
+
"model.language_model.layers.20.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 228 |
+
"model.language_model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 229 |
+
"model.language_model.layers.21.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 230 |
+
"model.language_model.layers.21.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 231 |
+
"model.language_model.layers.21.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 232 |
+
"model.language_model.layers.22.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 233 |
+
"model.language_model.layers.22.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 234 |
+
"model.language_model.layers.22.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 235 |
+
"model.language_model.layers.22.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 236 |
+
"model.language_model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 237 |
+
"model.language_model.layers.24.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 238 |
+
"model.language_model.layers.24.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 239 |
+
"model.language_model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 240 |
+
"model.language_model.layers.25.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 241 |
+
"model.language_model.layers.25.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 242 |
+
"model.language_model.layers.25.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 243 |
+
"model.language_model.layers.26.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 244 |
+
"model.language_model.layers.26.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 245 |
+
"model.language_model.layers.26.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 246 |
+
"model.language_model.layers.28.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 247 |
+
"model.language_model.layers.28.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 248 |
+
"model.language_model.layers.28.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 249 |
+
"model.language_model.layers.28.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 250 |
+
"model.language_model.layers.28.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 251 |
+
"model.language_model.layers.29.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 252 |
+
"model.language_model.layers.29.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 253 |
+
"model.language_model.layers.29.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 254 |
+
"model.language_model.layers.30.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 255 |
+
"model.language_model.layers.30.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 256 |
+
"model.language_model.layers.30.linear_attn.in_proj_b.weight": "model-00001-of-00002.safetensors",
|
| 257 |
+
"model.language_model.layers.30.linear_attn.in_proj_a.weight": "model-00001-of-00002.safetensors",
|
| 258 |
+
"model.language_model.layers.31.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 259 |
+
"model.language_model.norm.weight": "model-00001-of-00002.safetensors",
|
| 260 |
+
"model.language_model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 261 |
+
"model.language_model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 262 |
+
"model.language_model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 263 |
+
"model.language_model.layers.0.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 264 |
+
"model.language_model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 265 |
+
"model.language_model.layers.1.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"model.language_model.layers.2.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"model.language_model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 268 |
+
"model.language_model.layers.4.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"model.language_model.layers.4.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 270 |
+
"model.language_model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"model.language_model.layers.5.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 272 |
+
"model.language_model.layers.6.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 273 |
+
"model.language_model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 274 |
+
"model.language_model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 275 |
+
"model.language_model.layers.8.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 276 |
+
"model.language_model.layers.8.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 277 |
+
"model.language_model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 278 |
+
"model.language_model.layers.10.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 279 |
+
"model.language_model.layers.10.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 280 |
+
"model.language_model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 281 |
+
"model.language_model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 282 |
+
"model.language_model.layers.12.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 283 |
+
"model.language_model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 284 |
+
"model.language_model.layers.13.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 285 |
+
"model.language_model.layers.14.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 286 |
+
"model.language_model.layers.14.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 287 |
+
"model.language_model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 288 |
+
"model.language_model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 289 |
+
"model.language_model.layers.16.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 290 |
+
"model.language_model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 291 |
+
"model.language_model.layers.17.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 292 |
+
"model.language_model.layers.17.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 293 |
+
"model.language_model.layers.18.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 294 |
+
"model.language_model.layers.18.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 295 |
+
"model.language_model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 296 |
+
"model.language_model.layers.20.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 297 |
+
"model.language_model.layers.20.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 298 |
+
"model.language_model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 299 |
+
"model.language_model.layers.22.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 300 |
+
"model.language_model.layers.23.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 301 |
+
"model.language_model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 302 |
+
"model.language_model.layers.24.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 303 |
+
"model.language_model.layers.24.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 304 |
+
"model.language_model.layers.24.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 305 |
+
"model.language_model.layers.25.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 306 |
+
"model.language_model.layers.25.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 307 |
+
"model.language_model.layers.27.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 308 |
+
"model.language_model.layers.27.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 309 |
+
"model.language_model.layers.28.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 310 |
+
"model.language_model.layers.28.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 311 |
+
"model.language_model.layers.29.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 312 |
+
"model.language_model.layers.29.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 313 |
+
"model.language_model.layers.30.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 314 |
+
"model.language_model.layers.30.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 315 |
+
"model.language_model.layers.30.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 316 |
+
"model.language_model.layers.31.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 317 |
+
"model.language_model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 318 |
+
"model.language_model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 319 |
+
"model.language_model.layers.0.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 320 |
+
"model.language_model.layers.0.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 321 |
+
"model.language_model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 322 |
+
"model.language_model.layers.2.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 323 |
+
"model.language_model.layers.2.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 324 |
+
"model.language_model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 325 |
+
"model.language_model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 326 |
+
"model.language_model.layers.4.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 327 |
+
"model.language_model.layers.4.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 328 |
+
"model.language_model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 329 |
+
"model.language_model.layers.5.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 330 |
+
"model.language_model.layers.5.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 331 |
+
"model.language_model.layers.6.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 332 |
+
"model.language_model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 333 |
+
"model.language_model.layers.8.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 334 |
+
"model.language_model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 335 |
+
"model.language_model.layers.9.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 336 |
+
"model.language_model.layers.9.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 337 |
+
"model.language_model.layers.10.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 338 |
+
"model.language_model.layers.10.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 339 |
+
"model.language_model.layers.10.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 340 |
+
"model.language_model.layers.10.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 341 |
+
"model.language_model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 342 |
+
"model.language_model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 343 |
+
"model.language_model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 344 |
+
"model.language_model.layers.13.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 345 |
+
"model.language_model.layers.14.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 346 |
+
"model.language_model.layers.14.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 347 |
+
"model.language_model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 348 |
+
"model.language_model.layers.16.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 349 |
+
"model.language_model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 350 |
+
"model.language_model.layers.17.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 351 |
+
"model.language_model.layers.18.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 352 |
+
"model.language_model.layers.18.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 353 |
+
"model.language_model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 354 |
+
"model.language_model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 355 |
+
"model.language_model.layers.20.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 356 |
+
"model.language_model.layers.21.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 357 |
+
"model.language_model.layers.21.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 358 |
+
"model.language_model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 359 |
+
"model.language_model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 360 |
+
"model.language_model.layers.23.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 361 |
+
"model.language_model.layers.24.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 362 |
+
"model.language_model.layers.24.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 363 |
+
"model.language_model.layers.25.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 364 |
+
"model.language_model.layers.25.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 365 |
+
"model.language_model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 366 |
+
"model.language_model.layers.26.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 367 |
+
"model.language_model.layers.27.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 368 |
+
"model.language_model.layers.29.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 369 |
+
"model.language_model.layers.29.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 370 |
+
"model.language_model.layers.29.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 371 |
+
"model.language_model.layers.30.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 372 |
+
"model.language_model.layers.30.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 373 |
+
"model.language_model.layers.31.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 374 |
+
"model.language_model.layers.0.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 375 |
+
"model.language_model.layers.0.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 376 |
+
"model.language_model.layers.1.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 377 |
+
"model.language_model.layers.1.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 378 |
+
"model.language_model.layers.1.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 379 |
+
"model.language_model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 380 |
+
"model.language_model.layers.2.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 381 |
+
"model.language_model.layers.2.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 382 |
+
"model.language_model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 383 |
+
"model.language_model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 384 |
+
"model.language_model.layers.4.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 385 |
+
"model.language_model.layers.4.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 386 |
+
"model.language_model.layers.4.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 387 |
+
"model.language_model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 388 |
+
"model.language_model.layers.6.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 389 |
+
"model.language_model.layers.6.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 390 |
+
"model.language_model.layers.6.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 391 |
+
"model.language_model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 392 |
+
"model.language_model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 393 |
+
"model.language_model.layers.9.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 394 |
+
"model.language_model.layers.9.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 395 |
+
"model.language_model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 396 |
+
"model.language_model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 397 |
+
"model.language_model.layers.12.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 398 |
+
"model.language_model.layers.12.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 399 |
+
"model.language_model.layers.12.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 400 |
+
"model.language_model.layers.12.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 401 |
+
"model.language_model.layers.13.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 402 |
+
"model.language_model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 403 |
+
"model.language_model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 404 |
+
"model.language_model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 405 |
+
"model.language_model.layers.16.linear_attn.A_log": "model-00001-of-00002.safetensors",
|
| 406 |
+
"model.language_model.layers.16.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 407 |
+
"model.language_model.layers.17.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 408 |
+
"model.language_model.layers.17.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 409 |
+
"model.language_model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 410 |
+
"model.language_model.layers.18.linear_attn.out_proj.weight": "model-00001-of-00002.safetensors",
|
| 411 |
+
"model.language_model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 412 |
+
"model.language_model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 413 |
+
"model.language_model.layers.20.linear_attn.in_proj_qkv.weight": "model-00001-of-00002.safetensors",
|
| 414 |
+
"model.language_model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 415 |
+
"model.language_model.layers.21.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 416 |
+
"model.language_model.layers.21.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 417 |
+
"model.language_model.layers.22.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 418 |
+
"model.language_model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 419 |
+
"model.language_model.layers.24.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 420 |
+
"model.language_model.layers.24.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 421 |
+
"model.language_model.layers.25.linear_attn.in_proj_z.weight": "model-00001-of-00002.safetensors",
|
| 422 |
+
"model.language_model.layers.26.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 423 |
+
"model.language_model.layers.26.linear_attn.conv1d.weight": "model-00001-of-00002.safetensors",
|
| 424 |
+
"model.language_model.layers.26.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 425 |
+
"model.language_model.layers.26.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 426 |
+
"model.language_model.layers.27.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 427 |
+
"model.language_model.layers.28.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 428 |
+
"model.language_model.layers.29.linear_attn.dt_bias": "model-00001-of-00002.safetensors",
|
| 429 |
+
"model.language_model.layers.30.linear_attn.norm.weight": "model-00001-of-00002.safetensors",
|
| 430 |
+
"model.language_model.layers.31.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 431 |
+
"model.language_model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 432 |
+
"model.visual.blocks.0.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 433 |
+
"model.visual.blocks.0.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 434 |
+
"model.visual.blocks.0.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 435 |
+
"model.visual.blocks.0.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 436 |
+
"model.visual.blocks.0.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 437 |
+
"model.visual.blocks.0.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 438 |
+
"model.visual.blocks.0.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 439 |
+
"model.visual.blocks.0.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 440 |
+
"model.visual.blocks.0.norm1.bias": "model-00001-of-00002.safetensors",
|
| 441 |
+
"model.visual.blocks.0.norm1.weight": "model-00001-of-00002.safetensors",
|
| 442 |
+
"model.visual.blocks.0.norm2.bias": "model-00001-of-00002.safetensors",
|
| 443 |
+
"model.visual.blocks.0.norm2.weight": "model-00001-of-00002.safetensors",
|
| 444 |
+
"model.visual.blocks.1.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 445 |
+
"model.visual.blocks.1.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 446 |
+
"model.visual.blocks.1.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 447 |
+
"model.visual.blocks.1.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 448 |
+
"model.visual.blocks.1.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 449 |
+
"model.visual.blocks.1.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 450 |
+
"model.visual.blocks.1.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 451 |
+
"model.visual.blocks.1.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 452 |
+
"model.visual.blocks.1.norm1.bias": "model-00001-of-00002.safetensors",
|
| 453 |
+
"model.visual.blocks.1.norm1.weight": "model-00001-of-00002.safetensors",
|
| 454 |
+
"model.visual.blocks.1.norm2.bias": "model-00001-of-00002.safetensors",
|
| 455 |
+
"model.visual.blocks.1.norm2.weight": "model-00001-of-00002.safetensors",
|
| 456 |
+
"model.visual.blocks.10.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 457 |
+
"model.visual.blocks.10.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 458 |
+
"model.visual.blocks.10.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 459 |
+
"model.visual.blocks.10.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 460 |
+
"model.visual.blocks.10.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 461 |
+
"model.visual.blocks.10.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 462 |
+
"model.visual.blocks.10.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 463 |
+
"model.visual.blocks.10.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 464 |
+
"model.visual.blocks.10.norm1.bias": "model-00001-of-00002.safetensors",
|
| 465 |
+
"model.visual.blocks.10.norm1.weight": "model-00001-of-00002.safetensors",
|
| 466 |
+
"model.visual.blocks.10.norm2.bias": "model-00001-of-00002.safetensors",
|
| 467 |
+
"model.visual.blocks.10.norm2.weight": "model-00001-of-00002.safetensors",
|
| 468 |
+
"model.visual.blocks.11.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 469 |
+
"model.visual.blocks.11.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 470 |
+
"model.visual.blocks.11.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 471 |
+
"model.visual.blocks.11.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 472 |
+
"model.visual.blocks.11.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 473 |
+
"model.visual.blocks.11.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 474 |
+
"model.visual.blocks.11.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 475 |
+
"model.visual.blocks.11.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 476 |
+
"model.visual.blocks.11.norm1.bias": "model-00001-of-00002.safetensors",
|
| 477 |
+
"model.visual.blocks.11.norm1.weight": "model-00001-of-00002.safetensors",
|
| 478 |
+
"model.visual.blocks.11.norm2.bias": "model-00001-of-00002.safetensors",
|
| 479 |
+
"model.visual.blocks.11.norm2.weight": "model-00001-of-00002.safetensors",
|
| 480 |
+
"model.visual.blocks.12.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 481 |
+
"model.visual.blocks.12.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 482 |
+
"model.visual.blocks.12.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 483 |
+
"model.visual.blocks.12.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 484 |
+
"model.visual.blocks.12.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 485 |
+
"model.visual.blocks.12.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 486 |
+
"model.visual.blocks.12.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 487 |
+
"model.visual.blocks.12.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 488 |
+
"model.visual.blocks.12.norm1.bias": "model-00001-of-00002.safetensors",
|
| 489 |
+
"model.visual.blocks.12.norm1.weight": "model-00001-of-00002.safetensors",
|
| 490 |
+
"model.visual.blocks.12.norm2.bias": "model-00001-of-00002.safetensors",
|
| 491 |
+
"model.visual.blocks.12.norm2.weight": "model-00001-of-00002.safetensors",
|
| 492 |
+
"model.visual.blocks.13.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 493 |
+
"model.visual.blocks.13.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 494 |
+
"model.visual.blocks.13.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 495 |
+
"model.visual.blocks.13.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 496 |
+
"model.visual.blocks.13.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 497 |
+
"model.visual.blocks.13.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 498 |
+
"model.visual.blocks.13.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 499 |
+
"model.visual.blocks.13.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 500 |
+
"model.visual.blocks.13.norm1.bias": "model-00001-of-00002.safetensors",
|
| 501 |
+
"model.visual.blocks.13.norm1.weight": "model-00001-of-00002.safetensors",
|
| 502 |
+
"model.visual.blocks.13.norm2.bias": "model-00001-of-00002.safetensors",
|
| 503 |
+
"model.visual.blocks.13.norm2.weight": "model-00001-of-00002.safetensors",
|
| 504 |
+
"model.visual.blocks.14.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 505 |
+
"model.visual.blocks.14.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 506 |
+
"model.visual.blocks.14.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 507 |
+
"model.visual.blocks.14.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 508 |
+
"model.visual.blocks.14.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 509 |
+
"model.visual.blocks.14.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 510 |
+
"model.visual.blocks.14.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 511 |
+
"model.visual.blocks.14.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 512 |
+
"model.visual.blocks.14.norm1.bias": "model-00001-of-00002.safetensors",
|
| 513 |
+
"model.visual.blocks.14.norm1.weight": "model-00001-of-00002.safetensors",
|
| 514 |
+
"model.visual.blocks.14.norm2.bias": "model-00001-of-00002.safetensors",
|
| 515 |
+
"model.visual.blocks.14.norm2.weight": "model-00001-of-00002.safetensors",
|
| 516 |
+
"model.visual.blocks.15.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 517 |
+
"model.visual.blocks.15.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 518 |
+
"model.visual.blocks.15.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 519 |
+
"model.visual.blocks.15.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 520 |
+
"model.visual.blocks.15.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 521 |
+
"model.visual.blocks.15.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 522 |
+
"model.visual.blocks.15.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 523 |
+
"model.visual.blocks.15.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 524 |
+
"model.visual.blocks.15.norm1.bias": "model-00001-of-00002.safetensors",
|
| 525 |
+
"model.visual.blocks.15.norm1.weight": "model-00001-of-00002.safetensors",
|
| 526 |
+
"model.visual.blocks.15.norm2.bias": "model-00001-of-00002.safetensors",
|
| 527 |
+
"model.visual.blocks.15.norm2.weight": "model-00001-of-00002.safetensors",
|
| 528 |
+
"model.visual.blocks.16.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 529 |
+
"model.visual.blocks.16.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 530 |
+
"model.visual.blocks.16.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 531 |
+
"model.visual.blocks.16.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 532 |
+
"model.visual.blocks.16.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 533 |
+
"model.visual.blocks.16.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 534 |
+
"model.visual.blocks.16.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 535 |
+
"model.visual.blocks.16.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 536 |
+
"model.visual.blocks.16.norm1.bias": "model-00001-of-00002.safetensors",
|
| 537 |
+
"model.visual.blocks.16.norm1.weight": "model-00001-of-00002.safetensors",
|
| 538 |
+
"model.visual.blocks.16.norm2.bias": "model-00001-of-00002.safetensors",
|
| 539 |
+
"model.visual.blocks.16.norm2.weight": "model-00001-of-00002.safetensors",
|
| 540 |
+
"model.visual.blocks.17.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 541 |
+
"model.visual.blocks.17.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 542 |
+
"model.visual.blocks.17.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 543 |
+
"model.visual.blocks.17.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 544 |
+
"model.visual.blocks.17.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 545 |
+
"model.visual.blocks.17.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 546 |
+
"model.visual.blocks.17.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 547 |
+
"model.visual.blocks.17.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 548 |
+
"model.visual.blocks.17.norm1.bias": "model-00001-of-00002.safetensors",
|
| 549 |
+
"model.visual.blocks.17.norm1.weight": "model-00001-of-00002.safetensors",
|
| 550 |
+
"model.visual.blocks.17.norm2.bias": "model-00001-of-00002.safetensors",
|
| 551 |
+
"model.visual.blocks.17.norm2.weight": "model-00001-of-00002.safetensors",
|
| 552 |
+
"model.visual.blocks.18.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 553 |
+
"model.visual.blocks.18.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 554 |
+
"model.visual.blocks.18.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 555 |
+
"model.visual.blocks.18.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 556 |
+
"model.visual.blocks.18.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 557 |
+
"model.visual.blocks.18.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 558 |
+
"model.visual.blocks.18.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 559 |
+
"model.visual.blocks.18.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 560 |
+
"model.visual.blocks.18.norm1.bias": "model-00001-of-00002.safetensors",
|
| 561 |
+
"model.visual.blocks.18.norm1.weight": "model-00001-of-00002.safetensors",
|
| 562 |
+
"model.visual.blocks.18.norm2.bias": "model-00001-of-00002.safetensors",
|
| 563 |
+
"model.visual.blocks.18.norm2.weight": "model-00001-of-00002.safetensors",
|
| 564 |
+
"model.visual.blocks.19.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 565 |
+
"model.visual.blocks.19.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 566 |
+
"model.visual.blocks.19.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 567 |
+
"model.visual.blocks.19.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 568 |
+
"model.visual.blocks.19.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 569 |
+
"model.visual.blocks.19.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 570 |
+
"model.visual.blocks.19.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 571 |
+
"model.visual.blocks.19.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 572 |
+
"model.visual.blocks.19.norm1.bias": "model-00001-of-00002.safetensors",
|
| 573 |
+
"model.visual.blocks.19.norm1.weight": "model-00001-of-00002.safetensors",
|
| 574 |
+
"model.visual.blocks.19.norm2.bias": "model-00001-of-00002.safetensors",
|
| 575 |
+
"model.visual.blocks.19.norm2.weight": "model-00001-of-00002.safetensors",
|
| 576 |
+
"model.visual.blocks.2.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 577 |
+
"model.visual.blocks.2.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 578 |
+
"model.visual.blocks.2.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 579 |
+
"model.visual.blocks.2.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 580 |
+
"model.visual.blocks.2.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 581 |
+
"model.visual.blocks.2.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 582 |
+
"model.visual.blocks.2.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 583 |
+
"model.visual.blocks.2.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 584 |
+
"model.visual.blocks.2.norm1.bias": "model-00001-of-00002.safetensors",
|
| 585 |
+
"model.visual.blocks.2.norm1.weight": "model-00001-of-00002.safetensors",
|
| 586 |
+
"model.visual.blocks.2.norm2.bias": "model-00001-of-00002.safetensors",
|
| 587 |
+
"model.visual.blocks.2.norm2.weight": "model-00001-of-00002.safetensors",
|
| 588 |
+
"model.visual.blocks.20.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 589 |
+
"model.visual.blocks.20.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 590 |
+
"model.visual.blocks.20.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 591 |
+
"model.visual.blocks.20.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 592 |
+
"model.visual.blocks.20.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 593 |
+
"model.visual.blocks.20.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 594 |
+
"model.visual.blocks.20.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 595 |
+
"model.visual.blocks.20.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 596 |
+
"model.visual.blocks.20.norm1.bias": "model-00001-of-00002.safetensors",
|
| 597 |
+
"model.visual.blocks.20.norm1.weight": "model-00001-of-00002.safetensors",
|
| 598 |
+
"model.visual.blocks.20.norm2.bias": "model-00001-of-00002.safetensors",
|
| 599 |
+
"model.visual.blocks.20.norm2.weight": "model-00001-of-00002.safetensors",
|
| 600 |
+
"model.visual.blocks.21.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 601 |
+
"model.visual.blocks.21.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 602 |
+
"model.visual.blocks.21.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 603 |
+
"model.visual.blocks.21.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 604 |
+
"model.visual.blocks.21.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 605 |
+
"model.visual.blocks.21.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 606 |
+
"model.visual.blocks.21.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 607 |
+
"model.visual.blocks.21.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 608 |
+
"model.visual.blocks.21.norm1.bias": "model-00001-of-00002.safetensors",
|
| 609 |
+
"model.visual.blocks.21.norm1.weight": "model-00001-of-00002.safetensors",
|
| 610 |
+
"model.visual.blocks.21.norm2.bias": "model-00001-of-00002.safetensors",
|
| 611 |
+
"model.visual.blocks.21.norm2.weight": "model-00001-of-00002.safetensors",
|
| 612 |
+
"model.visual.blocks.22.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 613 |
+
"model.visual.blocks.22.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 614 |
+
"model.visual.blocks.22.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 615 |
+
"model.visual.blocks.22.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 616 |
+
"model.visual.blocks.22.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 617 |
+
"model.visual.blocks.22.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 618 |
+
"model.visual.blocks.22.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 619 |
+
"model.visual.blocks.22.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 620 |
+
"model.visual.blocks.22.norm1.bias": "model-00001-of-00002.safetensors",
|
| 621 |
+
"model.visual.blocks.22.norm1.weight": "model-00001-of-00002.safetensors",
|
| 622 |
+
"model.visual.blocks.22.norm2.bias": "model-00001-of-00002.safetensors",
|
| 623 |
+
"model.visual.blocks.22.norm2.weight": "model-00001-of-00002.safetensors",
|
| 624 |
+
"model.visual.blocks.23.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 625 |
+
"model.visual.blocks.23.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 626 |
+
"model.visual.blocks.23.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 627 |
+
"model.visual.blocks.23.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 628 |
+
"model.visual.blocks.23.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 629 |
+
"model.visual.blocks.23.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 630 |
+
"model.visual.blocks.23.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 631 |
+
"model.visual.blocks.23.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 632 |
+
"model.visual.blocks.23.norm1.bias": "model-00001-of-00002.safetensors",
|
| 633 |
+
"model.visual.blocks.23.norm1.weight": "model-00001-of-00002.safetensors",
|
| 634 |
+
"model.visual.blocks.23.norm2.bias": "model-00001-of-00002.safetensors",
|
| 635 |
+
"model.visual.blocks.23.norm2.weight": "model-00001-of-00002.safetensors",
|
| 636 |
+
"model.visual.blocks.3.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 637 |
+
"model.visual.blocks.3.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 638 |
+
"model.visual.blocks.3.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 639 |
+
"model.visual.blocks.3.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 640 |
+
"model.visual.blocks.3.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 641 |
+
"model.visual.blocks.3.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 642 |
+
"model.visual.blocks.3.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 643 |
+
"model.visual.blocks.3.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 644 |
+
"model.visual.blocks.3.norm1.bias": "model-00001-of-00002.safetensors",
|
| 645 |
+
"model.visual.blocks.3.norm1.weight": "model-00001-of-00002.safetensors",
|
| 646 |
+
"model.visual.blocks.3.norm2.bias": "model-00001-of-00002.safetensors",
|
| 647 |
+
"model.visual.blocks.3.norm2.weight": "model-00001-of-00002.safetensors",
|
| 648 |
+
"model.visual.blocks.4.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 649 |
+
"model.visual.blocks.4.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 650 |
+
"model.visual.blocks.4.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 651 |
+
"model.visual.blocks.4.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 652 |
+
"model.visual.blocks.4.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 653 |
+
"model.visual.blocks.4.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 654 |
+
"model.visual.blocks.4.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 655 |
+
"model.visual.blocks.4.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 656 |
+
"model.visual.blocks.4.norm1.bias": "model-00001-of-00002.safetensors",
|
| 657 |
+
"model.visual.blocks.4.norm1.weight": "model-00001-of-00002.safetensors",
|
| 658 |
+
"model.visual.blocks.4.norm2.bias": "model-00001-of-00002.safetensors",
|
| 659 |
+
"model.visual.blocks.4.norm2.weight": "model-00001-of-00002.safetensors",
|
| 660 |
+
"model.visual.blocks.5.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 661 |
+
"model.visual.blocks.5.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 662 |
+
"model.visual.blocks.5.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 663 |
+
"model.visual.blocks.5.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 664 |
+
"model.visual.blocks.5.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 665 |
+
"model.visual.blocks.5.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 666 |
+
"model.visual.blocks.5.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 667 |
+
"model.visual.blocks.5.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 668 |
+
"model.visual.blocks.5.norm1.bias": "model-00001-of-00002.safetensors",
|
| 669 |
+
"model.visual.blocks.5.norm1.weight": "model-00001-of-00002.safetensors",
|
| 670 |
+
"model.visual.blocks.5.norm2.bias": "model-00001-of-00002.safetensors",
|
| 671 |
+
"model.visual.blocks.5.norm2.weight": "model-00001-of-00002.safetensors",
|
| 672 |
+
"model.visual.blocks.6.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 673 |
+
"model.visual.blocks.6.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 674 |
+
"model.visual.blocks.6.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 675 |
+
"model.visual.blocks.6.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 676 |
+
"model.visual.blocks.6.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 677 |
+
"model.visual.blocks.6.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 678 |
+
"model.visual.blocks.6.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 679 |
+
"model.visual.blocks.6.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 680 |
+
"model.visual.blocks.6.norm1.bias": "model-00001-of-00002.safetensors",
|
| 681 |
+
"model.visual.blocks.6.norm1.weight": "model-00001-of-00002.safetensors",
|
| 682 |
+
"model.visual.blocks.6.norm2.bias": "model-00001-of-00002.safetensors",
|
| 683 |
+
"model.visual.blocks.6.norm2.weight": "model-00001-of-00002.safetensors",
|
| 684 |
+
"model.visual.blocks.7.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 685 |
+
"model.visual.blocks.7.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 686 |
+
"model.visual.blocks.7.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 687 |
+
"model.visual.blocks.7.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 688 |
+
"model.visual.blocks.7.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 689 |
+
"model.visual.blocks.7.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 690 |
+
"model.visual.blocks.7.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 691 |
+
"model.visual.blocks.7.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 692 |
+
"model.visual.blocks.7.norm1.bias": "model-00001-of-00002.safetensors",
|
| 693 |
+
"model.visual.blocks.7.norm1.weight": "model-00001-of-00002.safetensors",
|
| 694 |
+
"model.visual.blocks.7.norm2.bias": "model-00001-of-00002.safetensors",
|
| 695 |
+
"model.visual.blocks.7.norm2.weight": "model-00001-of-00002.safetensors",
|
| 696 |
+
"model.visual.blocks.8.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 697 |
+
"model.visual.blocks.8.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 698 |
+
"model.visual.blocks.8.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 699 |
+
"model.visual.blocks.8.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 700 |
+
"model.visual.blocks.8.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 701 |
+
"model.visual.blocks.8.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 702 |
+
"model.visual.blocks.8.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 703 |
+
"model.visual.blocks.8.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 704 |
+
"model.visual.blocks.8.norm1.bias": "model-00001-of-00002.safetensors",
|
| 705 |
+
"model.visual.blocks.8.norm1.weight": "model-00001-of-00002.safetensors",
|
| 706 |
+
"model.visual.blocks.8.norm2.bias": "model-00001-of-00002.safetensors",
|
| 707 |
+
"model.visual.blocks.8.norm2.weight": "model-00001-of-00002.safetensors",
|
| 708 |
+
"model.visual.blocks.9.attn.proj.bias": "model-00001-of-00002.safetensors",
|
| 709 |
+
"model.visual.blocks.9.attn.proj.weight": "model-00001-of-00002.safetensors",
|
| 710 |
+
"model.visual.blocks.9.attn.qkv.bias": "model-00001-of-00002.safetensors",
|
| 711 |
+
"model.visual.blocks.9.attn.qkv.weight": "model-00001-of-00002.safetensors",
|
| 712 |
+
"model.visual.blocks.9.mlp.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 713 |
+
"model.visual.blocks.9.mlp.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 714 |
+
"model.visual.blocks.9.mlp.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 715 |
+
"model.visual.blocks.9.mlp.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 716 |
+
"model.visual.blocks.9.norm1.bias": "model-00001-of-00002.safetensors",
|
| 717 |
+
"model.visual.blocks.9.norm1.weight": "model-00001-of-00002.safetensors",
|
| 718 |
+
"model.visual.blocks.9.norm2.bias": "model-00001-of-00002.safetensors",
|
| 719 |
+
"model.visual.blocks.9.norm2.weight": "model-00001-of-00002.safetensors",
|
| 720 |
+
"model.visual.merger.linear_fc1.bias": "model-00001-of-00002.safetensors",
|
| 721 |
+
"model.visual.merger.linear_fc1.weight": "model-00001-of-00002.safetensors",
|
| 722 |
+
"model.visual.merger.linear_fc2.bias": "model-00001-of-00002.safetensors",
|
| 723 |
+
"model.visual.merger.linear_fc2.weight": "model-00001-of-00002.safetensors",
|
| 724 |
+
"model.visual.merger.norm.bias": "model-00001-of-00002.safetensors",
|
| 725 |
+
"model.visual.merger.norm.weight": "model-00001-of-00002.safetensors",
|
| 726 |
+
"model.visual.patch_embed.proj.bias": "model-00001-of-00002.safetensors",
|
| 727 |
+
"model.visual.patch_embed.proj.weight": "model-00001-of-00002.safetensors",
|
| 728 |
+
"model.visual.pos_embed.weight": "model-00001-of-00002.safetensors"
|
| 729 |
+
}
|
| 730 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"size": {
|
| 3 |
+
"longest_edge": 16777216,
|
| 4 |
+
"shortest_edge": 65536
|
| 5 |
+
},
|
| 6 |
+
"patch_size": 16,
|
| 7 |
+
"temporal_patch_size": 2,
|
| 8 |
+
"merge_size": 2,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"processor_class": "Qwen3VLProcessor",
|
| 20 |
+
"image_processor_type": "Qwen2VLImageProcessorFast"
|
| 21 |
+
}
|
processor_config.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_processor": {
|
| 3 |
+
"do_convert_rgb": true,
|
| 4 |
+
"do_normalize": true,
|
| 5 |
+
"do_rescale": true,
|
| 6 |
+
"do_resize": true,
|
| 7 |
+
"image_mean": [
|
| 8 |
+
0.5,
|
| 9 |
+
0.5,
|
| 10 |
+
0.5
|
| 11 |
+
],
|
| 12 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 13 |
+
"image_std": [
|
| 14 |
+
0.5,
|
| 15 |
+
0.5,
|
| 16 |
+
0.5
|
| 17 |
+
],
|
| 18 |
+
"merge_size": 2,
|
| 19 |
+
"patch_size": 16,
|
| 20 |
+
"resample": 3,
|
| 21 |
+
"rescale_factor": 0.00392156862745098,
|
| 22 |
+
"size": {
|
| 23 |
+
"longest_edge": 16777216,
|
| 24 |
+
"shortest_edge": 65536
|
| 25 |
+
},
|
| 26 |
+
"temporal_patch_size": 2
|
| 27 |
+
},
|
| 28 |
+
"processor_class": "Qwen3VLProcessor",
|
| 29 |
+
"video_processor": {
|
| 30 |
+
"do_convert_rgb": true,
|
| 31 |
+
"do_normalize": true,
|
| 32 |
+
"do_rescale": true,
|
| 33 |
+
"do_resize": true,
|
| 34 |
+
"do_sample_frames": true,
|
| 35 |
+
"fps": 2,
|
| 36 |
+
"image_mean": [
|
| 37 |
+
0.5,
|
| 38 |
+
0.5,
|
| 39 |
+
0.5
|
| 40 |
+
],
|
| 41 |
+
"image_std": [
|
| 42 |
+
0.5,
|
| 43 |
+
0.5,
|
| 44 |
+
0.5
|
| 45 |
+
],
|
| 46 |
+
"max_frames": 768,
|
| 47 |
+
"merge_size": 2,
|
| 48 |
+
"min_frames": 4,
|
| 49 |
+
"patch_size": 16,
|
| 50 |
+
"resample": 3,
|
| 51 |
+
"rescale_factor": 0.00392156862745098,
|
| 52 |
+
"return_metadata": false,
|
| 53 |
+
"size": {
|
| 54 |
+
"longest_edge": 25165824,
|
| 55 |
+
"shortest_edge": 4096
|
| 56 |
+
},
|
| 57 |
+
"temporal_patch_size": 2,
|
| 58 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 59 |
+
}
|
| 60 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
|
| 3 |
+
size 19989343
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,305 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"248044": {
|
| 5 |
+
"content": "<|endoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"248045": {
|
| 13 |
+
"content": "<|im_start|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"248046": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"248047": {
|
| 29 |
+
"content": "<|object_ref_start|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"248048": {
|
| 37 |
+
"content": "<|object_ref_end|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"248049": {
|
| 45 |
+
"content": "<|box_start|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"248050": {
|
| 53 |
+
"content": "<|box_end|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"248051": {
|
| 61 |
+
"content": "<|quad_start|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"248052": {
|
| 69 |
+
"content": "<|quad_end|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"248053": {
|
| 77 |
+
"content": "<|vision_start|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"248054": {
|
| 85 |
+
"content": "<|vision_end|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"248055": {
|
| 93 |
+
"content": "<|vision_pad|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"248056": {
|
| 101 |
+
"content": "<|image_pad|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"248057": {
|
| 109 |
+
"content": "<|video_pad|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"248058": {
|
| 117 |
+
"content": "<tool_call>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"248059": {
|
| 125 |
+
"content": "</tool_call>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"248060": {
|
| 133 |
+
"content": "<|fim_prefix|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"248061": {
|
| 141 |
+
"content": "<|fim_middle|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"248062": {
|
| 149 |
+
"content": "<|fim_suffix|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"248063": {
|
| 157 |
+
"content": "<|fim_pad|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"248064": {
|
| 165 |
+
"content": "<|repo_name|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": false
|
| 171 |
+
},
|
| 172 |
+
"248065": {
|
| 173 |
+
"content": "<|file_sep|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": false
|
| 179 |
+
},
|
| 180 |
+
"248066": {
|
| 181 |
+
"content": "<tool_response>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": false
|
| 187 |
+
},
|
| 188 |
+
"248067": {
|
| 189 |
+
"content": "</tool_response>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": false
|
| 195 |
+
},
|
| 196 |
+
"248068": {
|
| 197 |
+
"content": "<think>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": false
|
| 203 |
+
},
|
| 204 |
+
"248069": {
|
| 205 |
+
"content": "</think>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": false
|
| 211 |
+
},
|
| 212 |
+
"248070": {
|
| 213 |
+
"content": "<|audio_start|>",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"248071": {
|
| 221 |
+
"content": "<|audio_end|>",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"248072": {
|
| 229 |
+
"content": "<tts_pad>",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"248073": {
|
| 237 |
+
"content": "<tts_text_bos>",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"248074": {
|
| 245 |
+
"content": "<tts_text_eod>",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"248075": {
|
| 253 |
+
"content": "<tts_text_bos_single>",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"248076": {
|
| 261 |
+
"content": "<|audio_pad|>",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
}
|
| 268 |
+
},
|
| 269 |
+
"additional_special_tokens": [
|
| 270 |
+
"<|im_start|>",
|
| 271 |
+
"<|im_end|>",
|
| 272 |
+
"<|object_ref_start|>",
|
| 273 |
+
"<|object_ref_end|>",
|
| 274 |
+
"<|box_start|>",
|
| 275 |
+
"<|box_end|>",
|
| 276 |
+
"<|quad_start|>",
|
| 277 |
+
"<|quad_end|>",
|
| 278 |
+
"<|vision_start|>",
|
| 279 |
+
"<|vision_end|>",
|
| 280 |
+
"<|vision_pad|>",
|
| 281 |
+
"<|image_pad|>",
|
| 282 |
+
"<|video_pad|>"
|
| 283 |
+
],
|
| 284 |
+
"bos_token": null,
|
| 285 |
+
"chat_template": "{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- macro render_content(content, do_vision_count, is_system_content=false) %}\n {%- if content is string %}\n {{- content }}\n {%- elif content is iterable and content is not mapping %}\n {%- for item in content %}\n {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain images.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Picture ' ~ image_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|image_pad|><|vision_end|>' }}\n {%- elif 'video' in item or item.type == 'video' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain videos.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Video ' ~ video_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|video_pad|><|vision_end|>' }}\n {%- elif 'text' in item %}\n {{- item.text }}\n {%- else %}\n {{- raise_exception('Unexpected item type in content.') }}\n {%- endif %}\n {%- endfor %}\n {%- elif content is none or content is undefined %}\n {{- '' }}\n {%- else %}\n {{- raise_exception('Unexpected content type.') }}\n {%- endif %}\n{%- endmacro %}\n{%- set default_system_prompt -%}\nYou are Intern-A1, a deep research assistant developed by InternAgent Team, Shanghai Artificial Intelligence Laboratory. 你是Intern-A1, 一个由上海人工智能实验室的InternAgent团队开发的深度研究人工智能助手。 You can have natural multi-turn conversations with users on any topic.\n\n## Daily Chat & Simple Questions\nFor everyday conversations, greetings, opinions, coding help, factual lookups, definitions, calculations, explanations, and any question you can confidently answer from your knowledge — just respond directly and naturally in the user's language as Intern-A1. Do NOT use any tools for these.\n\n## Research & Search Questions\nOnly when the user's question requires up-to-date information, in-depth investigation, multi-source verification, or involves recent events, niche topics, or anything you are uncertain about, use the available tools.\n\nResearch strategy:\n- Start with a focused search query to get an overview.\n- If the initial search is insufficient, refine your query with more specific terms.\n- Stop searching once you have enough information to provide a comprehensive answer. Do not over-research.\n\nCurrent date: 2026-07-14\n{%- endset -%}\n{%- if not messages %}\n {{- raise_exception('No messages provided.') }}\n{%- endif %}\n{%- set user_system_content = render_content(messages[0].content, false, true)|trim if messages[0].role == 'system' else '' %}\n{%- set system_content = user_system_content if user_system_content else default_system_prompt %}\n{%- if tools and tools is iterable and tools is not mapping %}\n {{- '<|im_start|>system\\n' }}\n {{- \"# Tools\\n\\nYou have access to the following functions:\\n\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\" }}\n {{- '\\n\\nIf you choose to call a function ONLY reply in the following format with NO suffix:\\n\\n<tool_call>\\n<function=example_function_name>\\n<parameter=example_parameter_1>\\nvalue_1\\n</parameter>\\n<parameter=example_parameter_2>\\nThis is the value for the second parameter\\nthat can span\\nmultiple lines\\n</parameter>\\n</function>\\n</tool_call>\\n\\n<IMPORTANT>\\nReminder:\\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\\n- Required parameters MUST be specified\\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\\n</IMPORTANT>' }}\n {%- if system_content %}\n {{- '\\n\\n' + system_content }}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n{%- else %}\n {%- if system_content %}\n {{- '<|im_start|>system\\n' + system_content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" %}\n {%- set content = render_content(message.content, false)|trim %}\n {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if ns.multi_step_tool %}\n {{- raise_exception('No user query found in messages.') }}\n{%- endif %}\n{%- for message in messages %}\n {%- set content = render_content(message.content, true)|trim %}\n {%- if message.role == \"system\" %}\n {%- if not loop.first %}\n {{- raise_exception('System message must be at the beginning.') }}\n {%- endif %}\n {%- elif message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- set reasoning_content = reasoning_content|trim %}\n {%- if loop.index0 > ns.last_query_index %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content + '\\n</think>\\n\\n' + content }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {%- if loop.first %}\n {%- if content|trim %}\n {{- '\\n\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- else %}\n {{- '<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- else %}\n {{- '\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- if tool_call.arguments is defined %}\n {%- for args_name, args_value in tool_call.arguments|items %}\n {{- '<parameter=' + args_name + '>\\n' }}\n {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}\n {{- args_value }}\n {{- '\\n</parameter>\\n' }}\n {%- endfor %}\n {%- endif %}\n {{- '</function>\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.previtem and loop.previtem.role != \"tool\" %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if not loop.last and loop.nextitem.role != \"tool\" %}\n {{- '<|im_end|>\\n' }}\n {%- elif loop.last %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- else %}\n {{- raise_exception('Unexpected message role.') }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- else %}\n {{- '<think>\\n' }}\n {%- endif %}\n{%- endif %}",
|
| 286 |
+
"clean_up_tokenization_spaces": false,
|
| 287 |
+
"eos_token": "<|im_end|>",
|
| 288 |
+
"errors": "replace",
|
| 289 |
+
"model_max_length": 262144,
|
| 290 |
+
"pad_token": "<|endoftext|>",
|
| 291 |
+
"split_special_tokens": false,
|
| 292 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 293 |
+
"unk_token": null,
|
| 294 |
+
"add_bos_token": false,
|
| 295 |
+
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 296 |
+
"extra_special_tokens": {
|
| 297 |
+
"audio_bos_token": "<|audio_start|>",
|
| 298 |
+
"audio_eos_token": "<|audio_end|>",
|
| 299 |
+
"audio_token": "<|audio_pad|>",
|
| 300 |
+
"image_token": "<|image_pad|>",
|
| 301 |
+
"video_token": "<|video_pad|>",
|
| 302 |
+
"vision_bos_token": "<|vision_start|>",
|
| 303 |
+
"vision_eos_token": "<|vision_end|>"
|
| 304 |
+
}
|
| 305 |
+
}
|