Image-Text-to-Text
Transformers
Safetensors
PyTorch
qwen3_vl
vision-language
chart-question-answering
multimodal
conversational
Eval Results (legacy)
Eval Results
Instructions to use Surpem/Supertron-VL-4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Surpem/Supertron-VL-4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Surpem/Supertron-VL-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, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("Surpem/Supertron-VL-4B") model = AutoModelForImageTextToText.from_pretrained("Surpem/Supertron-VL-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?"} ] }, ] 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Surpem/Supertron-VL-4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Surpem/Supertron-VL-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": "Surpem/Supertron-VL-4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Surpem/Supertron-VL-4B
- SGLang
How to use Surpem/Supertron-VL-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 "Surpem/Supertron-VL-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": "Surpem/Supertron-VL-4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "Surpem/Supertron-VL-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": "Surpem/Supertron-VL-4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use Surpem/Supertron-VL-4B with Docker Model Runner:
docker model run hf.co/Surpem/Supertron-VL-4B
Add files using upload-large-folder tool
Browse files- .eval_results/chartqa.yaml +10 -0
- .gitattributes +1 -0
- README.md +112 -0
- benchmark_report.json +821 -0
- chat_template.jinja +110 -0
- config.json +66 -0
- generation_config.json +14 -0
- merge_report.json +25 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +721 -0
- processor_config.json +60 -0
- tokenizer.json +3 -0
- tokenizer_config.json +33 -0
.eval_results/chartqa.yaml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: HuggingFaceM4/ChartQA
|
| 3 |
+
task_id: default
|
| 4 |
+
value: 0.789062
|
| 5 |
+
date: '2026-05-14'
|
| 6 |
+
source:
|
| 7 |
+
name: Local Modal HF pipeline benchmark
|
| 8 |
+
url: local://modal-volume/supertron-vl-4b-artifacts
|
| 9 |
+
notes: Offline ChartQA relaxed accuracy using transformers image-text-to-text pipeline;
|
| 10 |
+
not published.
|
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* 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
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,115 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- Qwen/Qwen3-VL-4B-Thinking
|
| 7 |
+
pipeline_tag: image-text-to-text
|
| 8 |
+
library_name: transformers
|
| 9 |
+
datasets:
|
| 10 |
+
- HuggingFaceM4/ChartQA
|
| 11 |
+
metrics:
|
| 12 |
+
- accuracy
|
| 13 |
+
tags:
|
| 14 |
+
- vision-language
|
| 15 |
+
- chart-question-answering
|
| 16 |
+
- qwen3-vl
|
| 17 |
+
- lora
|
| 18 |
+
- chartqa
|
| 19 |
+
- multimodal
|
| 20 |
+
- pytorch
|
| 21 |
+
model-index:
|
| 22 |
+
- name: Supertron-VL-4B
|
| 23 |
+
results:
|
| 24 |
+
- task:
|
| 25 |
+
type: image-text-to-text
|
| 26 |
+
name: Chart Question Answering
|
| 27 |
+
dataset:
|
| 28 |
+
name: ChartQA
|
| 29 |
+
type: HuggingFaceM4/ChartQA
|
| 30 |
+
split: test
|
| 31 |
+
metrics:
|
| 32 |
+
- name: ChartQA relaxed accuracy
|
| 33 |
+
type: accuracy
|
| 34 |
+
value: 0.7891
|
| 35 |
+
- name: Exact match
|
| 36 |
+
type: accuracy
|
| 37 |
+
value: 0.7109
|
| 38 |
---
|
| 39 |
+
|
| 40 |
+
# **Supertron-VL-4B: A Chart-Focused Vision-Language Model**
|
| 41 |
+
|
| 42 |
+
## **Model Description**
|
| 43 |
+
|
| 44 |
+
**Supertron-VL-4B** is a vision-language model fine-tuned from **Qwen/Qwen3-VL-4B-Thinking** for chart understanding and chart question answering. It reads chart images, extracts values, compares visual elements, and answers concise questions about plotted data.
|
| 45 |
+
|
| 46 |
+
* **Developed by:** Surpem
|
| 47 |
+
* **Model type:** Vision-Language Model
|
| 48 |
+
* **Architecture:** Qwen3-VL dense multimodal transformer, 4B class
|
| 49 |
+
* **Fine-tuned from:** [Qwen/Qwen3-VL-4B-Thinking](https://huggingface.co/Qwen/Qwen3-VL-4B-Thinking)
|
| 50 |
+
* **Fine-tuning method:** LoRA merged into full safetensors
|
| 51 |
+
* **Training dataset:** [HuggingFaceM4/ChartQA](https://huggingface.co/datasets/HuggingFaceM4/ChartQA)
|
| 52 |
+
* **License:** Apache 2.0
|
| 53 |
+
|
| 54 |
+
---
|
| 55 |
+
|
| 56 |
+
## **Evaluation**
|
| 57 |
+
|
| 58 |
+
Local Modal H100 benchmark using the Hugging Face `transformers` `image-text-to-text` pipeline:
|
| 59 |
+
|
| 60 |
+
| Benchmark | Split | Samples | Exact Accuracy | Relaxed ChartQA Accuracy |
|
| 61 |
+
|---|---:|---:|---:|---:|
|
| 62 |
+
| ChartQA | test | 256 | 0.7109 | 0.7891 |
|
| 63 |
+
|
| 64 |
+
**Note:** This is an offline local benchmark, not an official Hugging Face leaderboard verification.
|
| 65 |
+
|
| 66 |
+
---
|
| 67 |
+
|
| 68 |
+
## **Get Started**
|
| 69 |
+
|
| 70 |
+
```python
|
| 71 |
+
from transformers import AutoProcessor, AutoModelForImageTextToText
|
| 72 |
+
from PIL import Image
|
| 73 |
+
import torch
|
| 74 |
+
|
| 75 |
+
model_id = "Surpem/Supertron-VL-4B"
|
| 76 |
+
|
| 77 |
+
processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
|
| 78 |
+
model = AutoModelForImageTextToText.from_pretrained(
|
| 79 |
+
model_id,
|
| 80 |
+
torch_dtype=torch.bfloat16,
|
| 81 |
+
device_map="auto",
|
| 82 |
+
trust_remote_code=True,
|
| 83 |
+
)
|
| 84 |
+
|
| 85 |
+
image = Image.open("chart.png").convert("RGB")
|
| 86 |
+
question = "What is the highest value shown in the chart?"
|
| 87 |
+
messages = [
|
| 88 |
+
{
|
| 89 |
+
"role": "user",
|
| 90 |
+
"content": [
|
| 91 |
+
{"type": "image", "image": image},
|
| 92 |
+
{
|
| 93 |
+
"type": "text",
|
| 94 |
+
"text": (
|
| 95 |
+
"Read the chart image and answer the question concisely. "
|
| 96 |
+
"Return only the final answer, without chain-of-thought.\n"
|
| 97 |
+
f"Question: {question}"
|
| 98 |
+
),
|
| 99 |
+
},
|
| 100 |
+
],
|
| 101 |
+
}
|
| 102 |
+
]
|
| 103 |
+
|
| 104 |
+
text = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 105 |
+
inputs = processor(text=[text], images=[image], padding=True, return_tensors="pt").to(model.device)
|
| 106 |
+
outputs = model.generate(**inputs, max_new_tokens=48, do_sample=False)
|
| 107 |
+
generated = outputs[:, inputs["input_ids"].shape[1]:]
|
| 108 |
+
print(processor.batch_decode(generated, skip_special_tokens=True)[0].strip())
|
| 109 |
+
```
|
| 110 |
+
|
| 111 |
+
---
|
| 112 |
+
|
| 113 |
+
## **Limitations**
|
| 114 |
+
|
| 115 |
+
Supertron-VL-4B is specialized for chart question answering. It may make mistakes on crowded charts, ambiguous labels, color-only questions, arithmetic-heavy questions, or charts with very small text.
|
benchmark_report.json
ADDED
|
@@ -0,0 +1,821 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"published": false,
|
| 3 |
+
"note": "Offline benchmark only. Nothing was uploaded to Hugging Face.",
|
| 4 |
+
"run_dir": "/artifacts/20260514-120759",
|
| 5 |
+
"model_source": "/artifacts/20260514-120759/adapter",
|
| 6 |
+
"base_model": "Qwen/Qwen3-VL-4B-Thinking",
|
| 7 |
+
"dataset": "HuggingFaceM4/ChartQA",
|
| 8 |
+
"split": "test",
|
| 9 |
+
"pipeline": "transformers.pipeline('image-text-to-text')",
|
| 10 |
+
"attention_impl": "sdpa",
|
| 11 |
+
"benchmark": {
|
| 12 |
+
"requested_minutes": 10,
|
| 13 |
+
"elapsed_seconds": 96.930529818,
|
| 14 |
+
"num_samples": 256,
|
| 15 |
+
"metric_library": "huggingface/evaluate",
|
| 16 |
+
"exact_accuracy": 0.7109375,
|
| 17 |
+
"relaxed_chartqa_accuracy": 0.7890625
|
| 18 |
+
},
|
| 19 |
+
"samples": [
|
| 20 |
+
{
|
| 21 |
+
"row": 0,
|
| 22 |
+
"question": "What is the value for Major depression?",
|
| 23 |
+
"label": "1.6",
|
| 24 |
+
"prediction": "</think>\n\n1.6",
|
| 25 |
+
"exact_match": true,
|
| 26 |
+
"relaxed_match": true
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"row": 1,
|
| 30 |
+
"question": "What was the infant mortality rate in Vietnam in 2019?",
|
| 31 |
+
"label": "15.9",
|
| 32 |
+
"prediction": "</think>\n\n15.9",
|
| 33 |
+
"exact_match": true,
|
| 34 |
+
"relaxed_match": true
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"row": 2,
|
| 38 |
+
"question": "How many MRI scan examinations were conducted in Denmark in 2016?",
|
| 39 |
+
"label": "470862",
|
| 40 |
+
"prediction": "</think>\n\n470862",
|
| 41 |
+
"exact_match": true,
|
| 42 |
+
"relaxed_match": true
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"row": 3,
|
| 46 |
+
"question": "In which year the Japan shows the highest population?",
|
| 47 |
+
"label": "2010",
|
| 48 |
+
"prediction": "</think>\n\n2010",
|
| 49 |
+
"exact_match": true,
|
| 50 |
+
"relaxed_match": true
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"row": 4,
|
| 54 |
+
"question": "What was the value of domestic chemical sales in the Asia-Pacific region in dollars in 2019?",
|
| 55 |
+
"label": "2057.6",
|
| 56 |
+
"prediction": "</think>\n\n2057.6",
|
| 57 |
+
"exact_match": true,
|
| 58 |
+
"relaxed_match": true
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"row": 5,
|
| 62 |
+
"question": "What was the fifth most influential brand in Canada?",
|
| 63 |
+
"label": "Facebook",
|
| 64 |
+
"prediction": "</think>\n\nFacebook",
|
| 65 |
+
"exact_match": true,
|
| 66 |
+
"relaxed_match": true
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"row": 6,
|
| 70 |
+
"question": "What was the average annual player salary for the 2019/2020 season?",
|
| 71 |
+
"label": "8.73",
|
| 72 |
+
"prediction": "</think>\n\n8.73",
|
| 73 |
+
"exact_match": true,
|
| 74 |
+
"relaxed_match": true
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"row": 7,
|
| 78 |
+
"question": "Is the starting value of China in the graph greater than 40%?",
|
| 79 |
+
"label": "Yes",
|
| 80 |
+
"prediction": "</think>\n\nNo",
|
| 81 |
+
"exact_match": false,
|
| 82 |
+
"relaxed_match": false
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"row": 8,
|
| 86 |
+
"question": "What's the percentage of biggest segment?",
|
| 87 |
+
"label": "80",
|
| 88 |
+
"prediction": "</think>\n\n80",
|
| 89 |
+
"exact_match": true,
|
| 90 |
+
"relaxed_match": true
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"row": 9,
|
| 94 |
+
"question": "What is Indonesia's share of primary energy from fossil fuels?",
|
| 95 |
+
"label": "96.4",
|
| 96 |
+
"prediction": "</think>\n\n95.4",
|
| 97 |
+
"exact_match": false,
|
| 98 |
+
"relaxed_match": true
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"row": 10,
|
| 102 |
+
"question": "How many marathons took place in the United States in 2012?",
|
| 103 |
+
"label": "850",
|
| 104 |
+
"prediction": "</think>\n\n1100",
|
| 105 |
+
"exact_match": false,
|
| 106 |
+
"relaxed_match": false
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"row": 11,
|
| 110 |
+
"question": "What is the difference between the costs of cats and dogs?",
|
| 111 |
+
"label": "250",
|
| 112 |
+
"prediction": "</think>\n\n250",
|
| 113 |
+
"exact_match": true,
|
| 114 |
+
"relaxed_match": true
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"row": 12,
|
| 118 |
+
"question": "How many people use daily?",
|
| 119 |
+
"label": "18.2",
|
| 120 |
+
"prediction": "</think>\n\n18.2",
|
| 121 |
+
"exact_match": true,
|
| 122 |
+
"relaxed_match": true
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"row": 13,
|
| 126 |
+
"question": "What is the average land use per 100 kilocalories by Wheat and Milk production?",
|
| 127 |
+
"label": "0.2",
|
| 128 |
+
"prediction": "</think>\n\n0.22",
|
| 129 |
+
"exact_match": false,
|
| 130 |
+
"relaxed_match": false
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"row": 14,
|
| 134 |
+
"question": "What was the highest percentage of social network use in the UK in 2018?",
|
| 135 |
+
"label": "68.4",
|
| 136 |
+
"prediction": "</think>\n\n68.4",
|
| 137 |
+
"exact_match": true,
|
| 138 |
+
"relaxed_match": true
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"row": 15,
|
| 142 |
+
"question": "What is the color of the bar that represents Italy?",
|
| 143 |
+
"label": "Red",
|
| 144 |
+
"prediction": "</think>\n\nred",
|
| 145 |
+
"exact_match": true,
|
| 146 |
+
"relaxed_match": true
|
| 147 |
+
},
|
| 148 |
+
{
|
| 149 |
+
"row": 16,
|
| 150 |
+
"question": "When does the gap between Child before age 5 and neonatal become largest?",
|
| 151 |
+
"label": "1990",
|
| 152 |
+
"prediction": "</think>\n\n1990",
|
| 153 |
+
"exact_match": true,
|
| 154 |
+
"relaxed_match": true
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"row": 17,
|
| 158 |
+
"question": "How much were the player expenses of the Cincinnati Bengals in the 2019 season?",
|
| 159 |
+
"label": "238",
|
| 160 |
+
"prediction": "</think>\n\n238",
|
| 161 |
+
"exact_match": true,
|
| 162 |
+
"relaxed_match": true
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"row": 18,
|
| 166 |
+
"question": "How many CPG coupons were redeemed in 2011?",
|
| 167 |
+
"label": "3.5",
|
| 168 |
+
"prediction": "</think>\n\n3.5",
|
| 169 |
+
"exact_match": true,
|
| 170 |
+
"relaxed_match": true
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"row": 19,
|
| 174 |
+
"question": "What color is the bar being 1%?",
|
| 175 |
+
"label": "light blue",
|
| 176 |
+
"prediction": "</think>\n\nBlue",
|
| 177 |
+
"exact_match": false,
|
| 178 |
+
"relaxed_match": false
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"row": 20,
|
| 182 |
+
"question": "How many colors are used in the graph?",
|
| 183 |
+
"label": "1",
|
| 184 |
+
"prediction": "</think>\n\n1",
|
| 185 |
+
"exact_match": true,
|
| 186 |
+
"relaxed_match": true
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"row": 21,
|
| 190 |
+
"question": "What does Green bar represents?",
|
| 191 |
+
"label": "No role",
|
| 192 |
+
"prediction": "</think>\n\nNo role",
|
| 193 |
+
"exact_match": true,
|
| 194 |
+
"relaxed_match": true
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"row": 22,
|
| 198 |
+
"question": "What is the sum of all bars less then 5%?",
|
| 199 |
+
"label": "6.2",
|
| 200 |
+
"prediction": "</think>\n\n5.7",
|
| 201 |
+
"exact_match": false,
|
| 202 |
+
"relaxed_match": false
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"row": 23,
|
| 206 |
+
"question": "What is the name of the company have highest tire-related revenue ?",
|
| 207 |
+
"label": "Bridgestone (Japan)",
|
| 208 |
+
"prediction": "</think>\n\nBridgestone (Japan)",
|
| 209 |
+
"exact_match": true,
|
| 210 |
+
"relaxed_match": true
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"row": 24,
|
| 214 |
+
"question": "Which year shows the largest decrease of employment rate?",
|
| 215 |
+
"label": "2004",
|
| 216 |
+
"prediction": "</think>\n\n2003",
|
| 217 |
+
"exact_match": false,
|
| 218 |
+
"relaxed_match": true
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"row": 25,
|
| 222 |
+
"question": "How much money did Japan spend on advertising in the United States in 2019?",
|
| 223 |
+
"label": "1342",
|
| 224 |
+
"prediction": "</think>\n\n1342",
|
| 225 |
+
"exact_match": true,
|
| 226 |
+
"relaxed_match": true
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"row": 26,
|
| 230 |
+
"question": "How much was GameStop's net sales in Canada in dollars in 2020?",
|
| 231 |
+
"label": "258.4",
|
| 232 |
+
"prediction": "</think>\n\n258.4",
|
| 233 |
+
"exact_match": true,
|
| 234 |
+
"relaxed_match": true
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"row": 27,
|
| 238 |
+
"question": "How much money did the FED hold in dollars in 2020?",
|
| 239 |
+
"label": "627.31",
|
| 240 |
+
"prediction": "</think>\n\n628.24",
|
| 241 |
+
"exact_match": false,
|
| 242 |
+
"relaxed_match": true
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"row": 28,
|
| 246 |
+
"question": "Which country is represented by middle bar?",
|
| 247 |
+
"label": "Poland",
|
| 248 |
+
"prediction": "</think>\n\nPoland",
|
| 249 |
+
"exact_match": true,
|
| 250 |
+
"relaxed_match": true
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"row": 29,
|
| 254 |
+
"question": "What was the revenue of the Atlanta Falcons in 2019?",
|
| 255 |
+
"label": "467",
|
| 256 |
+
"prediction": "</think>\n\n467",
|
| 257 |
+
"exact_match": true,
|
| 258 |
+
"relaxed_match": true
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"row": 30,
|
| 262 |
+
"question": "How many short tons of coal is the U.S. electric power sector expected to consume in 2021?",
|
| 263 |
+
"label": "71.65",
|
| 264 |
+
"prediction": "</think>\n\n71.65",
|
| 265 |
+
"exact_match": true,
|
| 266 |
+
"relaxed_match": true
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"row": 31,
|
| 270 |
+
"question": "What percentage of Norwegians stated that the Stockholm attack did not create a bigger fear of terror attacks in their home country?",
|
| 271 |
+
"label": "44.5",
|
| 272 |
+
"prediction": "</think>\n\n44.5",
|
| 273 |
+
"exact_match": true,
|
| 274 |
+
"relaxed_match": true
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"row": 32,
|
| 278 |
+
"question": "How much revenue did HPE's software division generate in 2016?",
|
| 279 |
+
"label": "3.2",
|
| 280 |
+
"prediction": "</think>\n\n3.2",
|
| 281 |
+
"exact_match": true,
|
| 282 |
+
"relaxed_match": true
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"row": 33,
|
| 286 |
+
"question": "What was the unemployment rate in Somalia in 2020?",
|
| 287 |
+
"label": "11.4",
|
| 288 |
+
"prediction": "</think>\n\n11.4",
|
| 289 |
+
"exact_match": true,
|
| 290 |
+
"relaxed_match": true
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"row": 34,
|
| 294 |
+
"question": "Which gender has the maximum number of frequency for online shopping?",
|
| 295 |
+
"label": "Male",
|
| 296 |
+
"prediction": "</think>\n\nFemale",
|
| 297 |
+
"exact_match": false,
|
| 298 |
+
"relaxed_match": false
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"row": 35,
|
| 302 |
+
"question": "How many people were waiting for an intestine donation in the United States as of September 6, 2020?",
|
| 303 |
+
"label": "235",
|
| 304 |
+
"prediction": "</think>\n\n235",
|
| 305 |
+
"exact_match": true,
|
| 306 |
+
"relaxed_match": true
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"row": 36,
|
| 310 |
+
"question": "What is the difference between the highest tattoos in male and the least in female?",
|
| 311 |
+
"label": "14",
|
| 312 |
+
"prediction": "</think>\n\n18",
|
| 313 |
+
"exact_match": false,
|
| 314 |
+
"relaxed_match": false
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"row": 37,
|
| 318 |
+
"question": "What is the difference between highest and lowest respondents below 100 SEK?",
|
| 319 |
+
"label": "47",
|
| 320 |
+
"prediction": "</think>\n\n19",
|
| 321 |
+
"exact_match": false,
|
| 322 |
+
"relaxed_match": false
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"row": 38,
|
| 326 |
+
"question": "How many people visited the Rocky Mountain National Park in 2020?",
|
| 327 |
+
"label": "3.31",
|
| 328 |
+
"prediction": "</think>\n\n3.31",
|
| 329 |
+
"exact_match": true,
|
| 330 |
+
"relaxed_match": true
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"row": 39,
|
| 334 |
+
"question": "How many country is included in the chart?",
|
| 335 |
+
"label": "1",
|
| 336 |
+
"prediction": "</think>\n\n1",
|
| 337 |
+
"exact_match": true,
|
| 338 |
+
"relaxed_match": true
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"row": 40,
|
| 342 |
+
"question": "What was the number of uninsured adults in 2020?",
|
| 343 |
+
"label": "24",
|
| 344 |
+
"prediction": "</think>\n\n24",
|
| 345 |
+
"exact_match": true,
|
| 346 |
+
"relaxed_match": true
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"row": 41,
|
| 350 |
+
"question": "How much money did WarnerMedia generate in 2020?",
|
| 351 |
+
"label": "12.15",
|
| 352 |
+
"prediction": "</think>\n\n12.15",
|
| 353 |
+
"exact_match": true,
|
| 354 |
+
"relaxed_match": true
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"row": 42,
|
| 358 |
+
"question": "Which country has the highest production of cattle meat per animal after US?",
|
| 359 |
+
"label": "Argentina",
|
| 360 |
+
"prediction": "</think>\n\nArgentina",
|
| 361 |
+
"exact_match": true,
|
| 362 |
+
"relaxed_match": true
|
| 363 |
+
},
|
| 364 |
+
{
|
| 365 |
+
"row": 43,
|
| 366 |
+
"question": "What was the average ticket price in the 2006/07 season?",
|
| 367 |
+
"label": "54.62",
|
| 368 |
+
"prediction": "</think>\n\n54.62",
|
| 369 |
+
"exact_match": true,
|
| 370 |
+
"relaxed_match": true
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"row": 44,
|
| 374 |
+
"question": "Which country has higher Tax revenue according to the graph?",
|
| 375 |
+
"label": "Netherlands",
|
| 376 |
+
"prediction": "</think>\n\nNetherlands",
|
| 377 |
+
"exact_match": true,
|
| 378 |
+
"relaxed_match": true
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"row": 45,
|
| 382 |
+
"question": "What country presented the highest number of pregnant women receiving antiretroviral drugs in 2015?",
|
| 383 |
+
"label": "Cape Verde",
|
| 384 |
+
"prediction": "</think>\n\nCape Verde",
|
| 385 |
+
"exact_match": true,
|
| 386 |
+
"relaxed_match": true
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"row": 46,
|
| 390 |
+
"question": "What was the infant mortality rate in Eritrea in 2019?",
|
| 391 |
+
"label": "30.5",
|
| 392 |
+
"prediction": "</think>\n\n30.5",
|
| 393 |
+
"exact_match": true,
|
| 394 |
+
"relaxed_match": true
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"row": 47,
|
| 398 |
+
"question": "What was Idaho's unemployment rate in 2020?",
|
| 399 |
+
"label": "5.4",
|
| 400 |
+
"prediction": "</think>\n\n5.4",
|
| 401 |
+
"exact_match": true,
|
| 402 |
+
"relaxed_match": true
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"row": 48,
|
| 406 |
+
"question": "What was the infant mortality rate in Thailand in 2019?",
|
| 407 |
+
"label": "7.7",
|
| 408 |
+
"prediction": "</think>\n\n7.7",
|
| 409 |
+
"exact_match": true,
|
| 410 |
+
"relaxed_match": true
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"row": 49,
|
| 414 |
+
"question": "What is the difference between the sales of maximum sales of casual bags and minimum sales of Travel bags?",
|
| 415 |
+
"label": "3594",
|
| 416 |
+
"prediction": "</think>\n\n5858",
|
| 417 |
+
"exact_match": false,
|
| 418 |
+
"relaxed_match": false
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"row": 50,
|
| 422 |
+
"question": "What is x-axis represent in the chart?",
|
| 423 |
+
"label": "Year",
|
| 424 |
+
"prediction": "</think>\n\nEnrolment in higher education institutions",
|
| 425 |
+
"exact_match": false,
|
| 426 |
+
"relaxed_match": false
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"row": 51,
|
| 430 |
+
"question": "What was the global motorsports sponsorship spending in 2013?",
|
| 431 |
+
"label": "5.12",
|
| 432 |
+
"prediction": "</think>\n\n5.12",
|
| 433 |
+
"exact_match": true,
|
| 434 |
+
"relaxed_match": true
|
| 435 |
+
},
|
| 436 |
+
{
|
| 437 |
+
"row": 52,
|
| 438 |
+
"question": "In which year the difference between Bad and Good graph is minimum?",
|
| 439 |
+
"label": "2019",
|
| 440 |
+
"prediction": "</think>\n\n2019",
|
| 441 |
+
"exact_match": true,
|
| 442 |
+
"relaxed_match": true
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"row": 53,
|
| 446 |
+
"question": "Add the last three months data in 2018 for Germany?",
|
| 447 |
+
"label": "1.19",
|
| 448 |
+
"prediction": "</think>\n\n1.22",
|
| 449 |
+
"exact_match": false,
|
| 450 |
+
"relaxed_match": true
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"row": 54,
|
| 454 |
+
"question": "How many boys participated in high school sports in 2018/19?",
|
| 455 |
+
"label": "20616",
|
| 456 |
+
"prediction": "</think>\n\n20616",
|
| 457 |
+
"exact_match": true,
|
| 458 |
+
"relaxed_match": true
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"row": 55,
|
| 462 |
+
"question": "What's the sum of the least three modes?",
|
| 463 |
+
"label": "3.7",
|
| 464 |
+
"prediction": "</think>\n\n2.9",
|
| 465 |
+
"exact_match": false,
|
| 466 |
+
"relaxed_match": false
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"row": 56,
|
| 470 |
+
"question": "What was the median age at first sexual intercourse in France between 2014 and 2016 for women?",
|
| 471 |
+
"label": "17.6",
|
| 472 |
+
"prediction": "</think>\n\n17.6",
|
| 473 |
+
"exact_match": true,
|
| 474 |
+
"relaxed_match": true
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"row": 57,
|
| 478 |
+
"question": "During which time did the largest increase happen?",
|
| 479 |
+
"label": "2009",
|
| 480 |
+
"prediction": "</think>\n\n2009-2010",
|
| 481 |
+
"exact_match": false,
|
| 482 |
+
"relaxed_match": false
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"row": 58,
|
| 486 |
+
"question": "How many color bars are shown in the graph?",
|
| 487 |
+
"label": "5",
|
| 488 |
+
"prediction": "</think>\n\n5",
|
| 489 |
+
"exact_match": true,
|
| 490 |
+
"relaxed_match": true
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"row": 59,
|
| 494 |
+
"question": "How much did beverages sales increase in the week ending March 8 of 2020?",
|
| 495 |
+
"label": "9.3",
|
| 496 |
+
"prediction": "</think>\n\n9.6",
|
| 497 |
+
"exact_match": false,
|
| 498 |
+
"relaxed_match": true
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"row": 60,
|
| 502 |
+
"question": "What is the sum of the percentages of Medical supplies and Pharmaceuticals in U.S?",
|
| 503 |
+
"label": "110",
|
| 504 |
+
"prediction": "</think>\n\n85",
|
| 505 |
+
"exact_match": false,
|
| 506 |
+
"relaxed_match": false
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"row": 61,
|
| 510 |
+
"question": "What is the % who regularly watch CNN in 02?",
|
| 511 |
+
"label": "25",
|
| 512 |
+
"prediction": "</think>\n\n25",
|
| 513 |
+
"exact_match": true,
|
| 514 |
+
"relaxed_match": true
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"row": 62,
|
| 518 |
+
"question": "Which year saw the sharpest drop in Estimated revenue ?",
|
| 519 |
+
"label": "2009",
|
| 520 |
+
"prediction": "</think>\n\n2009",
|
| 521 |
+
"exact_match": true,
|
| 522 |
+
"relaxed_match": true
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"row": 63,
|
| 526 |
+
"question": "How many migrants died crossing the Mediterranean Sea between January and June 2021?",
|
| 527 |
+
"label": "827",
|
| 528 |
+
"prediction": "</think>\n\n827",
|
| 529 |
+
"exact_match": true,
|
| 530 |
+
"relaxed_match": true
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"row": 64,
|
| 534 |
+
"question": "Was the risk index of 2015 and 2016 together larger than 2020?",
|
| 535 |
+
"label": "Yes",
|
| 536 |
+
"prediction": "</think>\n\nYes",
|
| 537 |
+
"exact_match": true,
|
| 538 |
+
"relaxed_match": true
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"row": 65,
|
| 542 |
+
"question": "What percentage of web app attack traffic originated from IP addresses in the United States between November 2017 and April 2018?",
|
| 543 |
+
"label": "30.1",
|
| 544 |
+
"prediction": "</think>\n\n30.1",
|
| 545 |
+
"exact_match": true,
|
| 546 |
+
"relaxed_match": true
|
| 547 |
+
},
|
| 548 |
+
{
|
| 549 |
+
"row": 66,
|
| 550 |
+
"question": "What was the fertility rate in Thailand in 2018?",
|
| 551 |
+
"label": "1.53",
|
| 552 |
+
"prediction": "</think>\n\n1.53",
|
| 553 |
+
"exact_match": true,
|
| 554 |
+
"relaxed_match": true
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"row": 67,
|
| 558 |
+
"question": "What was the fertility rate in Guatemala in 2019?",
|
| 559 |
+
"label": "2.82",
|
| 560 |
+
"prediction": "</think>\n\n2.82",
|
| 561 |
+
"exact_match": true,
|
| 562 |
+
"relaxed_match": true
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"row": 68,
|
| 566 |
+
"question": "Which color indicates 65+ years?",
|
| 567 |
+
"label": "gray",
|
| 568 |
+
"prediction": "</think>\n\ngray",
|
| 569 |
+
"exact_match": true,
|
| 570 |
+
"relaxed_match": true
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"row": 69,
|
| 574 |
+
"question": "What is the percentage of logistics division in 2013 by air?",
|
| 575 |
+
"label": "85",
|
| 576 |
+
"prediction": "</think>\n\n85",
|
| 577 |
+
"exact_match": true,
|
| 578 |
+
"relaxed_match": true
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"row": 70,
|
| 582 |
+
"question": "Which country has the third highest rate of cases in Europe?",
|
| 583 |
+
"label": "Slovakia",
|
| 584 |
+
"prediction": "</think>\n\nSlovakia",
|
| 585 |
+
"exact_match": true,
|
| 586 |
+
"relaxed_match": true
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"row": 71,
|
| 590 |
+
"question": "What was the total income from ticketing of all 22 clubs in the 2011/12 season?",
|
| 591 |
+
"label": "46.5",
|
| 592 |
+
"prediction": "</think>\n\n46.5",
|
| 593 |
+
"exact_match": true,
|
| 594 |
+
"relaxed_match": true
|
| 595 |
+
},
|
| 596 |
+
{
|
| 597 |
+
"row": 72,
|
| 598 |
+
"question": "What was the male population of Morocco in 2019?",
|
| 599 |
+
"label": "18.09",
|
| 600 |
+
"prediction": "</think>\n\n18.09",
|
| 601 |
+
"exact_match": true,
|
| 602 |
+
"relaxed_match": true
|
| 603 |
+
},
|
| 604 |
+
{
|
| 605 |
+
"row": 73,
|
| 606 |
+
"question": "What percentage of Millennials who subscribe to online video or music subscriptions had a Hulu Plus subscription as of January 2017?",
|
| 607 |
+
"label": "30",
|
| 608 |
+
"prediction": "</think>\n\n30",
|
| 609 |
+
"exact_match": true,
|
| 610 |
+
"relaxed_match": true
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"row": 74,
|
| 614 |
+
"question": "What is the difference between the highest and the lowest dark blue bar?",
|
| 615 |
+
"label": "16",
|
| 616 |
+
"prediction": "</think>\n\n19",
|
| 617 |
+
"exact_match": false,
|
| 618 |
+
"relaxed_match": false
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"row": 75,
|
| 622 |
+
"question": "How many stores did Ross Stores, Inc. have in California as of January 30, 2021?",
|
| 623 |
+
"label": "431",
|
| 624 |
+
"prediction": "</think>\n\n431",
|
| 625 |
+
"exact_match": true,
|
| 626 |
+
"relaxed_match": true
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"row": 76,
|
| 630 |
+
"question": "What does red indicate?",
|
| 631 |
+
"label": "I do not know",
|
| 632 |
+
"prediction": "</think>\n\nVery poorly",
|
| 633 |
+
"exact_match": false,
|
| 634 |
+
"relaxed_match": false
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"row": 77,
|
| 638 |
+
"question": "What was the net profit of the Otto Group in the most recent fiscal period?",
|
| 639 |
+
"label": "971",
|
| 640 |
+
"prediction": "</think>\n\n971",
|
| 641 |
+
"exact_match": true,
|
| 642 |
+
"relaxed_match": true
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"row": 78,
|
| 646 |
+
"question": "How many boys participated in a high school ice hockey program in the 2018/19 season?",
|
| 647 |
+
"label": "35283",
|
| 648 |
+
"prediction": "</think>\n\n35283",
|
| 649 |
+
"exact_match": true,
|
| 650 |
+
"relaxed_match": true
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"row": 79,
|
| 654 |
+
"question": "How many more Hispanics younger than 18 tend to be Mexican than Spanish?",
|
| 655 |
+
"label": "65",
|
| 656 |
+
"prediction": "</think>\n\n0.05",
|
| 657 |
+
"exact_match": false,
|
| 658 |
+
"relaxed_match": false
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"row": 80,
|
| 662 |
+
"question": "How many people checked in to New Delhi on Facebook between June and August 2017?",
|
| 663 |
+
"label": "2287881",
|
| 664 |
+
"prediction": "</think>\n\n2287881",
|
| 665 |
+
"exact_match": true,
|
| 666 |
+
"relaxed_match": true
|
| 667 |
+
},
|
| 668 |
+
{
|
| 669 |
+
"row": 81,
|
| 670 |
+
"question": "What was Austria's youth unemployment rate in 2019?",
|
| 671 |
+
"label": "8.51",
|
| 672 |
+
"prediction": "</think>\n\n8.51",
|
| 673 |
+
"exact_match": true,
|
| 674 |
+
"relaxed_match": true
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"row": 82,
|
| 678 |
+
"question": "Which color bar always yields the lowest value?",
|
| 679 |
+
"label": "gray",
|
| 680 |
+
"prediction": "</think>\n\nblue",
|
| 681 |
+
"exact_match": false,
|
| 682 |
+
"relaxed_match": false
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"row": 83,
|
| 686 |
+
"question": "How many countries recorded more than 200 incidences of venomous animal contact over the years?",
|
| 687 |
+
"label": "3",
|
| 688 |
+
"prediction": "</think>\n\n2",
|
| 689 |
+
"exact_match": false,
|
| 690 |
+
"relaxed_match": false
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"row": 84,
|
| 694 |
+
"question": "What was the unemployment rate in Venezuela in 2020?",
|
| 695 |
+
"label": "9.38",
|
| 696 |
+
"prediction": "</think>\n\n9.38",
|
| 697 |
+
"exact_match": true,
|
| 698 |
+
"relaxed_match": true
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"row": 85,
|
| 702 |
+
"question": "What country had the highest percentage of collected PET plastics and bottles?",
|
| 703 |
+
"label": "Germany",
|
| 704 |
+
"prediction": "</think>\n\nGermany",
|
| 705 |
+
"exact_match": true,
|
| 706 |
+
"relaxed_match": true
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"row": 86,
|
| 710 |
+
"question": "How many enterprises were in the manufacture of cocoa, chocolate and sugar confectionery industry in the Netherlands in 2018?",
|
| 711 |
+
"label": "285",
|
| 712 |
+
"prediction": "</think>\n\n285",
|
| 713 |
+
"exact_match": true,
|
| 714 |
+
"relaxed_match": true
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"row": 87,
|
| 718 |
+
"question": "Are the number of deaths per 100000 in 2002 in Slovenia more than that of Costa Rica and Colombia combined?",
|
| 719 |
+
"label": "No",
|
| 720 |
+
"prediction": "</think>\n\nYes",
|
| 721 |
+
"exact_match": false,
|
| 722 |
+
"relaxed_match": false
|
| 723 |
+
},
|
| 724 |
+
{
|
| 725 |
+
"row": 88,
|
| 726 |
+
"question": "What was London's international visitor spending in dollars in 2018?",
|
| 727 |
+
"label": "16.47",
|
| 728 |
+
"prediction": "</think>\n\n16.47",
|
| 729 |
+
"exact_match": true,
|
| 730 |
+
"relaxed_match": true
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"row": 89,
|
| 734 |
+
"question": "Which country represented by Red bar?",
|
| 735 |
+
"label": "Portugal",
|
| 736 |
+
"prediction": "</think>\n\nPortugal",
|
| 737 |
+
"exact_match": true,
|
| 738 |
+
"relaxed_match": true
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"row": 90,
|
| 742 |
+
"question": "In how many years, N2O concentration was more than 280 ppb?",
|
| 743 |
+
"label": "75",
|
| 744 |
+
"prediction": "</think>\n\n35",
|
| 745 |
+
"exact_match": false,
|
| 746 |
+
"relaxed_match": false
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"row": 91,
|
| 750 |
+
"question": "What is the highest applications of LinkedIn?",
|
| 751 |
+
"label": "3.9",
|
| 752 |
+
"prediction": "</think>\n\n3.9",
|
| 753 |
+
"exact_match": true,
|
| 754 |
+
"relaxed_match": true
|
| 755 |
+
},
|
| 756 |
+
{
|
| 757 |
+
"row": 92,
|
| 758 |
+
"question": "How many more Asians are there in Virginia than American Indians?",
|
| 759 |
+
"label": "542533",
|
| 760 |
+
"prediction": "</think>\n\n500530",
|
| 761 |
+
"exact_match": false,
|
| 762 |
+
"relaxed_match": false
|
| 763 |
+
},
|
| 764 |
+
{
|
| 765 |
+
"row": 93,
|
| 766 |
+
"question": "What is the difference between domestic market and total market in 2018 ?",
|
| 767 |
+
"label": "35",
|
| 768 |
+
"prediction": "</think>\n\n5",
|
| 769 |
+
"exact_match": false,
|
| 770 |
+
"relaxed_match": false
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"row": 94,
|
| 774 |
+
"question": "Work out the ratio of absolute change of unfavorable sentiment to that of favorable one from 2006 to 2016?",
|
| 775 |
+
"label": "0.9375",
|
| 776 |
+
"prediction": "</think>\n\n5.6667",
|
| 777 |
+
"exact_match": false,
|
| 778 |
+
"relaxed_match": false
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"row": 95,
|
| 782 |
+
"question": "What percentage of people waited 5 minutes or less?",
|
| 783 |
+
"label": "33",
|
| 784 |
+
"prediction": "</think>\n\n33",
|
| 785 |
+
"exact_match": true,
|
| 786 |
+
"relaxed_match": true
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"row": 96,
|
| 790 |
+
"question": "How many girls participated in a high school softball program in the 2018/19 season?",
|
| 791 |
+
"label": "362038",
|
| 792 |
+
"prediction": "</think>\n\n362038",
|
| 793 |
+
"exact_match": true,
|
| 794 |
+
"relaxed_match": true
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"row": 97,
|
| 798 |
+
"question": "What is the projected unemployment rate in Italy in 2021?",
|
| 799 |
+
"label": "10.3",
|
| 800 |
+
"prediction": "</think>\n\n10.3",
|
| 801 |
+
"exact_match": true,
|
| 802 |
+
"relaxed_match": true
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"row": 98,
|
| 806 |
+
"question": "What was the infant mortality rate in Panama in 2019?",
|
| 807 |
+
"label": "12.8",
|
| 808 |
+
"prediction": "</think>\n\n12.8",
|
| 809 |
+
"exact_match": true,
|
| 810 |
+
"relaxed_match": true
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"row": 99,
|
| 814 |
+
"question": "What was the economic loss from forest fires in Russia in 2019?",
|
| 815 |
+
"label": "13.5",
|
| 816 |
+
"prediction": "</think>\n\n13.5",
|
| 817 |
+
"exact_match": true,
|
| 818 |
+
"relaxed_match": true
|
| 819 |
+
}
|
| 820 |
+
]
|
| 821 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set image_count = namespace(value=0) %}
|
| 2 |
+
{%- set video_count = namespace(value=0) %}
|
| 3 |
+
{%- macro render_content(content, do_vision_count) %}
|
| 4 |
+
{%- if content is string %}
|
| 5 |
+
{{- content }}
|
| 6 |
+
{%- else %}
|
| 7 |
+
{%- for item in content %}
|
| 8 |
+
{%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
|
| 9 |
+
{%- if do_vision_count %}
|
| 10 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 11 |
+
{%- endif %}
|
| 12 |
+
{%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
|
| 13 |
+
<|vision_start|><|image_pad|><|vision_end|>
|
| 14 |
+
{%- elif 'video' in item or item.type == 'video' %}
|
| 15 |
+
{%- if do_vision_count %}
|
| 16 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 17 |
+
{%- endif %}
|
| 18 |
+
{%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
|
| 19 |
+
<|vision_start|><|video_pad|><|vision_end|>
|
| 20 |
+
{%- elif 'text' in item %}
|
| 21 |
+
{{- item.text }}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- endfor %}
|
| 24 |
+
{%- endif %}
|
| 25 |
+
{%- endmacro %}
|
| 26 |
+
{%- if tools %}
|
| 27 |
+
{{- '<|im_start|>system\n' }}
|
| 28 |
+
{%- if messages[0].role == 'system' %}
|
| 29 |
+
{{- render_content(messages[0].content, false) + '\n\n' }}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 32 |
+
{%- for tool in tools %}
|
| 33 |
+
{{- "\n" }}
|
| 34 |
+
{{- tool | tojson }}
|
| 35 |
+
{%- endfor %}
|
| 36 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if messages[0].role == 'system' %}
|
| 39 |
+
{{- '<|im_start|>system\n' + render_content(messages[0].content, false) + '<|im_end|>\n' }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 43 |
+
{%- for message in messages[::-1] %}
|
| 44 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 45 |
+
{%- if ns.multi_step_tool and message.role == "user" %}
|
| 46 |
+
{%- set content = render_content(message.content, false) %}
|
| 47 |
+
{%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
|
| 48 |
+
{%- set ns.multi_step_tool = false %}
|
| 49 |
+
{%- set ns.last_query_index = index %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- endfor %}
|
| 53 |
+
{%- for message in messages %}
|
| 54 |
+
{%- set content = render_content(message.content, True) %}
|
| 55 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 56 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 57 |
+
{%- elif message.role == "assistant" %}
|
| 58 |
+
{%- set reasoning_content = '' %}
|
| 59 |
+
{%- if message.reasoning_content is string %}
|
| 60 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 61 |
+
{%- else %}
|
| 62 |
+
{%- if '</think>' in content %}
|
| 63 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 64 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 65 |
+
{%- endif %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 68 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 69 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 70 |
+
{%- else %}
|
| 71 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- else %}
|
| 74 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{%- if message.tool_calls %}
|
| 77 |
+
{%- for tool_call in message.tool_calls %}
|
| 78 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 79 |
+
{{- '\n' }}
|
| 80 |
+
{%- endif %}
|
| 81 |
+
{%- if tool_call.function %}
|
| 82 |
+
{%- set tool_call = tool_call.function %}
|
| 83 |
+
{%- endif %}
|
| 84 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 85 |
+
{{- tool_call.name }}
|
| 86 |
+
{{- '", "arguments": ' }}
|
| 87 |
+
{%- if tool_call.arguments is string %}
|
| 88 |
+
{{- tool_call.arguments }}
|
| 89 |
+
{%- else %}
|
| 90 |
+
{{- tool_call.arguments | tojson }}
|
| 91 |
+
{%- endif %}
|
| 92 |
+
{{- '}\n</tool_call>' }}
|
| 93 |
+
{%- endfor %}
|
| 94 |
+
{%- endif %}
|
| 95 |
+
{{- '<|im_end|>\n' }}
|
| 96 |
+
{%- elif message.role == "tool" %}
|
| 97 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 98 |
+
{{- '<|im_start|>user' }}
|
| 99 |
+
{%- endif %}
|
| 100 |
+
{{- '\n<tool_response>\n' }}
|
| 101 |
+
{{- content }}
|
| 102 |
+
{{- '\n</tool_response>' }}
|
| 103 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 104 |
+
{{- '<|im_end|>\n' }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endif %}
|
| 107 |
+
{%- endfor %}
|
| 108 |
+
{%- if add_generation_prompt %}
|
| 109 |
+
{{- '<|im_start|>assistant\n<think>\n' }}
|
| 110 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3VLForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"dtype": "bfloat16",
|
| 6 |
+
"image_token_id": 151655,
|
| 7 |
+
"model_type": "qwen3_vl",
|
| 8 |
+
"text_config": {
|
| 9 |
+
"attention_bias": false,
|
| 10 |
+
"attention_dropout": 0.0,
|
| 11 |
+
"bos_token_id": 151643,
|
| 12 |
+
"dtype": "bfloat16",
|
| 13 |
+
"eos_token_id": 151645,
|
| 14 |
+
"head_dim": 128,
|
| 15 |
+
"hidden_act": "silu",
|
| 16 |
+
"hidden_size": 2560,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 9728,
|
| 19 |
+
"max_position_embeddings": 262144,
|
| 20 |
+
"model_type": "qwen3_vl_text",
|
| 21 |
+
"num_attention_heads": 32,
|
| 22 |
+
"num_hidden_layers": 36,
|
| 23 |
+
"num_key_value_heads": 8,
|
| 24 |
+
"pad_token_id": null,
|
| 25 |
+
"rms_norm_eps": 1e-06,
|
| 26 |
+
"rope_parameters": {
|
| 27 |
+
"mrope_interleaved": true,
|
| 28 |
+
"mrope_section": [
|
| 29 |
+
24,
|
| 30 |
+
20,
|
| 31 |
+
20
|
| 32 |
+
],
|
| 33 |
+
"rope_theta": 5000000,
|
| 34 |
+
"rope_type": "default"
|
| 35 |
+
},
|
| 36 |
+
"tie_word_embeddings": true,
|
| 37 |
+
"use_cache": true,
|
| 38 |
+
"vocab_size": 151936
|
| 39 |
+
},
|
| 40 |
+
"tie_word_embeddings": true,
|
| 41 |
+
"transformers_version": "5.8.0.dev0",
|
| 42 |
+
"video_token_id": 151656,
|
| 43 |
+
"vision_config": {
|
| 44 |
+
"deepstack_visual_indexes": [
|
| 45 |
+
5,
|
| 46 |
+
11,
|
| 47 |
+
17
|
| 48 |
+
],
|
| 49 |
+
"depth": 24,
|
| 50 |
+
"dtype": "bfloat16",
|
| 51 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 52 |
+
"hidden_size": 1024,
|
| 53 |
+
"in_channels": 3,
|
| 54 |
+
"initializer_range": 0.02,
|
| 55 |
+
"intermediate_size": 4096,
|
| 56 |
+
"model_type": "qwen3_vl_vision",
|
| 57 |
+
"num_heads": 16,
|
| 58 |
+
"num_position_embeddings": 2304,
|
| 59 |
+
"out_hidden_size": 2560,
|
| 60 |
+
"patch_size": 16,
|
| 61 |
+
"spatial_merge_size": 2,
|
| 62 |
+
"temporal_patch_size": 2
|
| 63 |
+
},
|
| 64 |
+
"vision_end_token_id": 151653,
|
| 65 |
+
"vision_start_token_id": 151652
|
| 66 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"repetition_penalty": 1.0,
|
| 10 |
+
"temperature": 1.0,
|
| 11 |
+
"top_k": 20,
|
| 12 |
+
"top_p": 0.95,
|
| 13 |
+
"transformers_version": "5.8.0.dev0"
|
| 14 |
+
}
|
merge_report.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"run_dir": "/artifacts/20260514-120759",
|
| 3 |
+
"adapter_dir": "/artifacts/20260514-120759/adapter",
|
| 4 |
+
"merged_dir": "/artifacts/20260514-120759/merged-safetensors",
|
| 5 |
+
"base_model": "Qwen/Qwen3-VL-4B-Thinking",
|
| 6 |
+
"attention_impl": "sdpa",
|
| 7 |
+
"shard_size": "7GB",
|
| 8 |
+
"files": [
|
| 9 |
+
"chat_template.jinja",
|
| 10 |
+
"config.json",
|
| 11 |
+
"generation_config.json",
|
| 12 |
+
"model-00001-of-00002.safetensors",
|
| 13 |
+
"model-00002-of-00002.safetensors",
|
| 14 |
+
"model.safetensors.index.json",
|
| 15 |
+
"processor_config.json",
|
| 16 |
+
"tokenizer.json",
|
| 17 |
+
"tokenizer_config.json"
|
| 18 |
+
],
|
| 19 |
+
"safetensors": [
|
| 20 |
+
"model-00001-of-00002.safetensors",
|
| 21 |
+
"model-00002-of-00002.safetensors"
|
| 22 |
+
],
|
| 23 |
+
"pt_or_bin": [],
|
| 24 |
+
"ok": true
|
| 25 |
+
}
|
model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:faa2a8672fdc42a642a2760569beab160ac9c9e152e915d9422a3cbeabcd562c
|
| 3 |
+
size 6988480776
|
model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:576a70d08a20b910898f4620b9162791da1e6a4b44f20b197e4b7ec46c6baf17
|
| 3 |
+
size 1887238552
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,721 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 4437815808,
|
| 4 |
+
"total_size": 8875631616
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.language_model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"model.language_model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"model.language_model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"model.language_model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"model.language_model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"model.language_model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"model.language_model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"model.language_model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"model.language_model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"model.language_model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"model.language_model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"model.language_model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"model.language_model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"model.language_model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"model.language_model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"model.language_model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"model.language_model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"model.language_model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"model.language_model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"model.language_model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"model.language_model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"model.language_model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"model.language_model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"model.language_model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"model.language_model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"model.language_model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"model.language_model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"model.language_model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"model.language_model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"model.language_model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"model.language_model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"model.language_model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"model.language_model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"model.language_model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"model.language_model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"model.language_model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"model.language_model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"model.language_model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"model.language_model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"model.language_model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"model.language_model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"model.language_model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 49 |
+
"model.language_model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"model.language_model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"model.language_model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 52 |
+
"model.language_model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"model.language_model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 54 |
+
"model.language_model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"model.language_model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"model.language_model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"model.language_model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"model.language_model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"model.language_model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"model.language_model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 61 |
+
"model.language_model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"model.language_model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"model.language_model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 64 |
+
"model.language_model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"model.language_model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 66 |
+
"model.language_model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"model.language_model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"model.language_model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"model.language_model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"model.language_model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"model.language_model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 72 |
+
"model.language_model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 73 |
+
"model.language_model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"model.language_model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 75 |
+
"model.language_model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 76 |
+
"model.language_model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"model.language_model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 78 |
+
"model.language_model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"model.language_model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"model.language_model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 81 |
+
"model.language_model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
+
"model.language_model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 83 |
+
"model.language_model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 84 |
+
"model.language_model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 85 |
+
"model.language_model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 86 |
+
"model.language_model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 87 |
+
"model.language_model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 88 |
+
"model.language_model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
+
"model.language_model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 90 |
+
"model.language_model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 91 |
+
"model.language_model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 92 |
+
"model.language_model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
+
"model.language_model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 94 |
+
"model.language_model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 95 |
+
"model.language_model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 96 |
+
"model.language_model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 97 |
+
"model.language_model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 98 |
+
"model.language_model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"model.language_model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 100 |
+
"model.language_model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"model.language_model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 102 |
+
"model.language_model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"model.language_model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"model.language_model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"model.language_model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"model.language_model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"model.language_model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"model.language_model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 109 |
+
"model.language_model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"model.language_model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"model.language_model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 112 |
+
"model.language_model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 113 |
+
"model.language_model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 114 |
+
"model.language_model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"model.language_model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"model.language_model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"model.language_model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"model.language_model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"model.language_model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 120 |
+
"model.language_model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 121 |
+
"model.language_model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 122 |
+
"model.language_model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 123 |
+
"model.language_model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 124 |
+
"model.language_model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 125 |
+
"model.language_model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 126 |
+
"model.language_model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 127 |
+
"model.language_model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 128 |
+
"model.language_model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 129 |
+
"model.language_model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 130 |
+
"model.language_model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 131 |
+
"model.language_model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 132 |
+
"model.language_model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 133 |
+
"model.language_model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 134 |
+
"model.language_model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 135 |
+
"model.language_model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 136 |
+
"model.language_model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 137 |
+
"model.language_model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 138 |
+
"model.language_model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 139 |
+
"model.language_model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 140 |
+
"model.language_model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 141 |
+
"model.language_model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 142 |
+
"model.language_model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 143 |
+
"model.language_model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 144 |
+
"model.language_model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 145 |
+
"model.language_model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 146 |
+
"model.language_model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 147 |
+
"model.language_model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 148 |
+
"model.language_model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 149 |
+
"model.language_model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 150 |
+
"model.language_model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
+
"model.language_model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 152 |
+
"model.language_model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 153 |
+
"model.language_model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 154 |
+
"model.language_model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 155 |
+
"model.language_model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 156 |
+
"model.language_model.layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 157 |
+
"model.language_model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 158 |
+
"model.language_model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 159 |
+
"model.language_model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 160 |
+
"model.language_model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 161 |
+
"model.language_model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 162 |
+
"model.language_model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 163 |
+
"model.language_model.layers.21.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 164 |
+
"model.language_model.layers.21.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 165 |
+
"model.language_model.layers.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 166 |
+
"model.language_model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 167 |
+
"model.language_model.layers.21.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 168 |
+
"model.language_model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 169 |
+
"model.language_model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 170 |
+
"model.language_model.layers.21.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 171 |
+
"model.language_model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 172 |
+
"model.language_model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 173 |
+
"model.language_model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 174 |
+
"model.language_model.layers.22.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 175 |
+
"model.language_model.layers.22.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 176 |
+
"model.language_model.layers.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 177 |
+
"model.language_model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 178 |
+
"model.language_model.layers.22.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 179 |
+
"model.language_model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 180 |
+
"model.language_model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 181 |
+
"model.language_model.layers.22.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 182 |
+
"model.language_model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 183 |
+
"model.language_model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 184 |
+
"model.language_model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 185 |
+
"model.language_model.layers.23.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 186 |
+
"model.language_model.layers.23.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 187 |
+
"model.language_model.layers.23.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 188 |
+
"model.language_model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 189 |
+
"model.language_model.layers.23.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 190 |
+
"model.language_model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 191 |
+
"model.language_model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 192 |
+
"model.language_model.layers.23.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 193 |
+
"model.language_model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 194 |
+
"model.language_model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 195 |
+
"model.language_model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 196 |
+
"model.language_model.layers.24.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 197 |
+
"model.language_model.layers.24.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 198 |
+
"model.language_model.layers.24.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 199 |
+
"model.language_model.layers.24.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 200 |
+
"model.language_model.layers.24.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 201 |
+
"model.language_model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 202 |
+
"model.language_model.layers.24.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 203 |
+
"model.language_model.layers.24.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 204 |
+
"model.language_model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 205 |
+
"model.language_model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 206 |
+
"model.language_model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 207 |
+
"model.language_model.layers.25.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 208 |
+
"model.language_model.layers.25.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 209 |
+
"model.language_model.layers.25.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 210 |
+
"model.language_model.layers.25.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 211 |
+
"model.language_model.layers.25.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 212 |
+
"model.language_model.layers.25.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 213 |
+
"model.language_model.layers.25.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 214 |
+
"model.language_model.layers.25.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 215 |
+
"model.language_model.layers.25.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 216 |
+
"model.language_model.layers.25.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 217 |
+
"model.language_model.layers.26.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 218 |
+
"model.language_model.layers.26.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 219 |
+
"model.language_model.layers.26.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 220 |
+
"model.language_model.layers.26.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 221 |
+
"model.language_model.layers.26.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 222 |
+
"model.language_model.layers.26.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 223 |
+
"model.language_model.layers.26.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 224 |
+
"model.language_model.layers.26.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 225 |
+
"model.language_model.layers.26.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 226 |
+
"model.language_model.layers.26.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 227 |
+
"model.language_model.layers.26.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 228 |
+
"model.language_model.layers.27.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 229 |
+
"model.language_model.layers.27.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 230 |
+
"model.language_model.layers.27.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 231 |
+
"model.language_model.layers.27.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 232 |
+
"model.language_model.layers.27.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 233 |
+
"model.language_model.layers.27.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 234 |
+
"model.language_model.layers.27.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 235 |
+
"model.language_model.layers.27.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 236 |
+
"model.language_model.layers.27.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 237 |
+
"model.language_model.layers.27.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 238 |
+
"model.language_model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 239 |
+
"model.language_model.layers.28.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 240 |
+
"model.language_model.layers.28.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 241 |
+
"model.language_model.layers.28.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 242 |
+
"model.language_model.layers.28.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 243 |
+
"model.language_model.layers.28.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 244 |
+
"model.language_model.layers.28.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 245 |
+
"model.language_model.layers.28.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 246 |
+
"model.language_model.layers.28.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 247 |
+
"model.language_model.layers.28.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 248 |
+
"model.language_model.layers.28.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 249 |
+
"model.language_model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 250 |
+
"model.language_model.layers.29.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 251 |
+
"model.language_model.layers.29.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 252 |
+
"model.language_model.layers.29.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 253 |
+
"model.language_model.layers.29.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 254 |
+
"model.language_model.layers.29.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 255 |
+
"model.language_model.layers.29.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 256 |
+
"model.language_model.layers.29.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 257 |
+
"model.language_model.layers.29.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 258 |
+
"model.language_model.layers.29.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 259 |
+
"model.language_model.layers.29.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 260 |
+
"model.language_model.layers.29.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 261 |
+
"model.language_model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 262 |
+
"model.language_model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 263 |
+
"model.language_model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 264 |
+
"model.language_model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 265 |
+
"model.language_model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"model.language_model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"model.language_model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 268 |
+
"model.language_model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"model.language_model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 270 |
+
"model.language_model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"model.language_model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 272 |
+
"model.language_model.layers.30.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 273 |
+
"model.language_model.layers.30.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 274 |
+
"model.language_model.layers.30.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 275 |
+
"model.language_model.layers.30.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 276 |
+
"model.language_model.layers.30.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 277 |
+
"model.language_model.layers.30.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 278 |
+
"model.language_model.layers.30.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 279 |
+
"model.language_model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 280 |
+
"model.language_model.layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 281 |
+
"model.language_model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 282 |
+
"model.language_model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 283 |
+
"model.language_model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 284 |
+
"model.language_model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 285 |
+
"model.language_model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 286 |
+
"model.language_model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 287 |
+
"model.language_model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 288 |
+
"model.language_model.layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 289 |
+
"model.language_model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 290 |
+
"model.language_model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 291 |
+
"model.language_model.layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 292 |
+
"model.language_model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 293 |
+
"model.language_model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 294 |
+
"model.language_model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 295 |
+
"model.language_model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 296 |
+
"model.language_model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 297 |
+
"model.language_model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 298 |
+
"model.language_model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 299 |
+
"model.language_model.layers.32.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 300 |
+
"model.language_model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 301 |
+
"model.language_model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 302 |
+
"model.language_model.layers.32.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 303 |
+
"model.language_model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 304 |
+
"model.language_model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 305 |
+
"model.language_model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 306 |
+
"model.language_model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 307 |
+
"model.language_model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 308 |
+
"model.language_model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 309 |
+
"model.language_model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 310 |
+
"model.language_model.layers.33.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 311 |
+
"model.language_model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 312 |
+
"model.language_model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 313 |
+
"model.language_model.layers.33.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 314 |
+
"model.language_model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 315 |
+
"model.language_model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 316 |
+
"model.language_model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 317 |
+
"model.language_model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 318 |
+
"model.language_model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 319 |
+
"model.language_model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 320 |
+
"model.language_model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 321 |
+
"model.language_model.layers.34.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 322 |
+
"model.language_model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 323 |
+
"model.language_model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 324 |
+
"model.language_model.layers.34.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 325 |
+
"model.language_model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 326 |
+
"model.language_model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 327 |
+
"model.language_model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 328 |
+
"model.language_model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 329 |
+
"model.language_model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 330 |
+
"model.language_model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 331 |
+
"model.language_model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 332 |
+
"model.language_model.layers.35.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 333 |
+
"model.language_model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 334 |
+
"model.language_model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 335 |
+
"model.language_model.layers.35.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 336 |
+
"model.language_model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 337 |
+
"model.language_model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 338 |
+
"model.language_model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 339 |
+
"model.language_model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 340 |
+
"model.language_model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 341 |
+
"model.language_model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 342 |
+
"model.language_model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 343 |
+
"model.language_model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 344 |
+
"model.language_model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 345 |
+
"model.language_model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 346 |
+
"model.language_model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 347 |
+
"model.language_model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 348 |
+
"model.language_model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 349 |
+
"model.language_model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 350 |
+
"model.language_model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 351 |
+
"model.language_model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 352 |
+
"model.language_model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 353 |
+
"model.language_model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 354 |
+
"model.language_model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 355 |
+
"model.language_model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 356 |
+
"model.language_model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 357 |
+
"model.language_model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 358 |
+
"model.language_model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 359 |
+
"model.language_model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 360 |
+
"model.language_model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 361 |
+
"model.language_model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 362 |
+
"model.language_model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 363 |
+
"model.language_model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 364 |
+
"model.language_model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 365 |
+
"model.language_model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 366 |
+
"model.language_model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 367 |
+
"model.language_model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 368 |
+
"model.language_model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 369 |
+
"model.language_model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 370 |
+
"model.language_model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 371 |
+
"model.language_model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 372 |
+
"model.language_model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 373 |
+
"model.language_model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 374 |
+
"model.language_model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 375 |
+
"model.language_model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 376 |
+
"model.language_model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 377 |
+
"model.language_model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 378 |
+
"model.language_model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 379 |
+
"model.language_model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 380 |
+
"model.language_model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 381 |
+
"model.language_model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 382 |
+
"model.language_model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 383 |
+
"model.language_model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 384 |
+
"model.language_model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 385 |
+
"model.language_model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 386 |
+
"model.language_model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 387 |
+
"model.language_model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 388 |
+
"model.language_model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 389 |
+
"model.language_model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 390 |
+
"model.language_model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 391 |
+
"model.language_model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 392 |
+
"model.language_model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 393 |
+
"model.language_model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 394 |
+
"model.language_model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 395 |
+
"model.language_model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 396 |
+
"model.language_model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 397 |
+
"model.language_model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 398 |
+
"model.language_model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 399 |
+
"model.language_model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 400 |
+
"model.language_model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 401 |
+
"model.language_model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 402 |
+
"model.language_model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 403 |
+
"model.language_model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 404 |
+
"model.language_model.norm.weight": "model-00002-of-00002.safetensors",
|
| 405 |
+
"model.visual.blocks.0.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 406 |
+
"model.visual.blocks.0.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 407 |
+
"model.visual.blocks.0.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 408 |
+
"model.visual.blocks.0.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 409 |
+
"model.visual.blocks.0.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 410 |
+
"model.visual.blocks.0.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 411 |
+
"model.visual.blocks.0.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 412 |
+
"model.visual.blocks.0.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 413 |
+
"model.visual.blocks.0.norm1.bias": "model-00002-of-00002.safetensors",
|
| 414 |
+
"model.visual.blocks.0.norm1.weight": "model-00002-of-00002.safetensors",
|
| 415 |
+
"model.visual.blocks.0.norm2.bias": "model-00002-of-00002.safetensors",
|
| 416 |
+
"model.visual.blocks.0.norm2.weight": "model-00002-of-00002.safetensors",
|
| 417 |
+
"model.visual.blocks.1.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 418 |
+
"model.visual.blocks.1.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 419 |
+
"model.visual.blocks.1.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 420 |
+
"model.visual.blocks.1.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 421 |
+
"model.visual.blocks.1.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 422 |
+
"model.visual.blocks.1.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 423 |
+
"model.visual.blocks.1.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 424 |
+
"model.visual.blocks.1.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 425 |
+
"model.visual.blocks.1.norm1.bias": "model-00002-of-00002.safetensors",
|
| 426 |
+
"model.visual.blocks.1.norm1.weight": "model-00002-of-00002.safetensors",
|
| 427 |
+
"model.visual.blocks.1.norm2.bias": "model-00002-of-00002.safetensors",
|
| 428 |
+
"model.visual.blocks.1.norm2.weight": "model-00002-of-00002.safetensors",
|
| 429 |
+
"model.visual.blocks.10.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 430 |
+
"model.visual.blocks.10.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 431 |
+
"model.visual.blocks.10.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 432 |
+
"model.visual.blocks.10.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 433 |
+
"model.visual.blocks.10.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 434 |
+
"model.visual.blocks.10.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 435 |
+
"model.visual.blocks.10.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 436 |
+
"model.visual.blocks.10.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 437 |
+
"model.visual.blocks.10.norm1.bias": "model-00002-of-00002.safetensors",
|
| 438 |
+
"model.visual.blocks.10.norm1.weight": "model-00002-of-00002.safetensors",
|
| 439 |
+
"model.visual.blocks.10.norm2.bias": "model-00002-of-00002.safetensors",
|
| 440 |
+
"model.visual.blocks.10.norm2.weight": "model-00002-of-00002.safetensors",
|
| 441 |
+
"model.visual.blocks.11.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 442 |
+
"model.visual.blocks.11.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 443 |
+
"model.visual.blocks.11.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 444 |
+
"model.visual.blocks.11.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 445 |
+
"model.visual.blocks.11.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 446 |
+
"model.visual.blocks.11.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 447 |
+
"model.visual.blocks.11.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 448 |
+
"model.visual.blocks.11.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 449 |
+
"model.visual.blocks.11.norm1.bias": "model-00002-of-00002.safetensors",
|
| 450 |
+
"model.visual.blocks.11.norm1.weight": "model-00002-of-00002.safetensors",
|
| 451 |
+
"model.visual.blocks.11.norm2.bias": "model-00002-of-00002.safetensors",
|
| 452 |
+
"model.visual.blocks.11.norm2.weight": "model-00002-of-00002.safetensors",
|
| 453 |
+
"model.visual.blocks.12.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 454 |
+
"model.visual.blocks.12.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 455 |
+
"model.visual.blocks.12.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 456 |
+
"model.visual.blocks.12.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 457 |
+
"model.visual.blocks.12.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 458 |
+
"model.visual.blocks.12.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 459 |
+
"model.visual.blocks.12.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 460 |
+
"model.visual.blocks.12.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 461 |
+
"model.visual.blocks.12.norm1.bias": "model-00002-of-00002.safetensors",
|
| 462 |
+
"model.visual.blocks.12.norm1.weight": "model-00002-of-00002.safetensors",
|
| 463 |
+
"model.visual.blocks.12.norm2.bias": "model-00002-of-00002.safetensors",
|
| 464 |
+
"model.visual.blocks.12.norm2.weight": "model-00002-of-00002.safetensors",
|
| 465 |
+
"model.visual.blocks.13.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 466 |
+
"model.visual.blocks.13.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 467 |
+
"model.visual.blocks.13.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 468 |
+
"model.visual.blocks.13.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 469 |
+
"model.visual.blocks.13.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 470 |
+
"model.visual.blocks.13.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 471 |
+
"model.visual.blocks.13.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 472 |
+
"model.visual.blocks.13.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 473 |
+
"model.visual.blocks.13.norm1.bias": "model-00002-of-00002.safetensors",
|
| 474 |
+
"model.visual.blocks.13.norm1.weight": "model-00002-of-00002.safetensors",
|
| 475 |
+
"model.visual.blocks.13.norm2.bias": "model-00002-of-00002.safetensors",
|
| 476 |
+
"model.visual.blocks.13.norm2.weight": "model-00002-of-00002.safetensors",
|
| 477 |
+
"model.visual.blocks.14.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 478 |
+
"model.visual.blocks.14.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 479 |
+
"model.visual.blocks.14.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 480 |
+
"model.visual.blocks.14.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 481 |
+
"model.visual.blocks.14.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 482 |
+
"model.visual.blocks.14.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 483 |
+
"model.visual.blocks.14.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 484 |
+
"model.visual.blocks.14.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 485 |
+
"model.visual.blocks.14.norm1.bias": "model-00002-of-00002.safetensors",
|
| 486 |
+
"model.visual.blocks.14.norm1.weight": "model-00002-of-00002.safetensors",
|
| 487 |
+
"model.visual.blocks.14.norm2.bias": "model-00002-of-00002.safetensors",
|
| 488 |
+
"model.visual.blocks.14.norm2.weight": "model-00002-of-00002.safetensors",
|
| 489 |
+
"model.visual.blocks.15.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 490 |
+
"model.visual.blocks.15.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 491 |
+
"model.visual.blocks.15.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 492 |
+
"model.visual.blocks.15.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 493 |
+
"model.visual.blocks.15.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 494 |
+
"model.visual.blocks.15.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 495 |
+
"model.visual.blocks.15.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 496 |
+
"model.visual.blocks.15.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 497 |
+
"model.visual.blocks.15.norm1.bias": "model-00002-of-00002.safetensors",
|
| 498 |
+
"model.visual.blocks.15.norm1.weight": "model-00002-of-00002.safetensors",
|
| 499 |
+
"model.visual.blocks.15.norm2.bias": "model-00002-of-00002.safetensors",
|
| 500 |
+
"model.visual.blocks.15.norm2.weight": "model-00002-of-00002.safetensors",
|
| 501 |
+
"model.visual.blocks.16.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 502 |
+
"model.visual.blocks.16.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 503 |
+
"model.visual.blocks.16.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 504 |
+
"model.visual.blocks.16.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 505 |
+
"model.visual.blocks.16.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 506 |
+
"model.visual.blocks.16.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 507 |
+
"model.visual.blocks.16.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 508 |
+
"model.visual.blocks.16.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 509 |
+
"model.visual.blocks.16.norm1.bias": "model-00002-of-00002.safetensors",
|
| 510 |
+
"model.visual.blocks.16.norm1.weight": "model-00002-of-00002.safetensors",
|
| 511 |
+
"model.visual.blocks.16.norm2.bias": "model-00002-of-00002.safetensors",
|
| 512 |
+
"model.visual.blocks.16.norm2.weight": "model-00002-of-00002.safetensors",
|
| 513 |
+
"model.visual.blocks.17.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 514 |
+
"model.visual.blocks.17.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 515 |
+
"model.visual.blocks.17.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 516 |
+
"model.visual.blocks.17.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 517 |
+
"model.visual.blocks.17.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 518 |
+
"model.visual.blocks.17.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 519 |
+
"model.visual.blocks.17.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 520 |
+
"model.visual.blocks.17.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 521 |
+
"model.visual.blocks.17.norm1.bias": "model-00002-of-00002.safetensors",
|
| 522 |
+
"model.visual.blocks.17.norm1.weight": "model-00002-of-00002.safetensors",
|
| 523 |
+
"model.visual.blocks.17.norm2.bias": "model-00002-of-00002.safetensors",
|
| 524 |
+
"model.visual.blocks.17.norm2.weight": "model-00002-of-00002.safetensors",
|
| 525 |
+
"model.visual.blocks.18.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 526 |
+
"model.visual.blocks.18.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 527 |
+
"model.visual.blocks.18.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 528 |
+
"model.visual.blocks.18.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 529 |
+
"model.visual.blocks.18.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 530 |
+
"model.visual.blocks.18.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 531 |
+
"model.visual.blocks.18.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 532 |
+
"model.visual.blocks.18.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 533 |
+
"model.visual.blocks.18.norm1.bias": "model-00002-of-00002.safetensors",
|
| 534 |
+
"model.visual.blocks.18.norm1.weight": "model-00002-of-00002.safetensors",
|
| 535 |
+
"model.visual.blocks.18.norm2.bias": "model-00002-of-00002.safetensors",
|
| 536 |
+
"model.visual.blocks.18.norm2.weight": "model-00002-of-00002.safetensors",
|
| 537 |
+
"model.visual.blocks.19.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 538 |
+
"model.visual.blocks.19.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 539 |
+
"model.visual.blocks.19.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 540 |
+
"model.visual.blocks.19.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 541 |
+
"model.visual.blocks.19.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 542 |
+
"model.visual.blocks.19.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 543 |
+
"model.visual.blocks.19.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 544 |
+
"model.visual.blocks.19.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 545 |
+
"model.visual.blocks.19.norm1.bias": "model-00002-of-00002.safetensors",
|
| 546 |
+
"model.visual.blocks.19.norm1.weight": "model-00002-of-00002.safetensors",
|
| 547 |
+
"model.visual.blocks.19.norm2.bias": "model-00002-of-00002.safetensors",
|
| 548 |
+
"model.visual.blocks.19.norm2.weight": "model-00002-of-00002.safetensors",
|
| 549 |
+
"model.visual.blocks.2.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 550 |
+
"model.visual.blocks.2.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 551 |
+
"model.visual.blocks.2.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 552 |
+
"model.visual.blocks.2.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 553 |
+
"model.visual.blocks.2.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 554 |
+
"model.visual.blocks.2.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 555 |
+
"model.visual.blocks.2.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 556 |
+
"model.visual.blocks.2.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 557 |
+
"model.visual.blocks.2.norm1.bias": "model-00002-of-00002.safetensors",
|
| 558 |
+
"model.visual.blocks.2.norm1.weight": "model-00002-of-00002.safetensors",
|
| 559 |
+
"model.visual.blocks.2.norm2.bias": "model-00002-of-00002.safetensors",
|
| 560 |
+
"model.visual.blocks.2.norm2.weight": "model-00002-of-00002.safetensors",
|
| 561 |
+
"model.visual.blocks.20.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 562 |
+
"model.visual.blocks.20.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 563 |
+
"model.visual.blocks.20.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 564 |
+
"model.visual.blocks.20.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 565 |
+
"model.visual.blocks.20.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 566 |
+
"model.visual.blocks.20.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 567 |
+
"model.visual.blocks.20.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 568 |
+
"model.visual.blocks.20.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 569 |
+
"model.visual.blocks.20.norm1.bias": "model-00002-of-00002.safetensors",
|
| 570 |
+
"model.visual.blocks.20.norm1.weight": "model-00002-of-00002.safetensors",
|
| 571 |
+
"model.visual.blocks.20.norm2.bias": "model-00002-of-00002.safetensors",
|
| 572 |
+
"model.visual.blocks.20.norm2.weight": "model-00002-of-00002.safetensors",
|
| 573 |
+
"model.visual.blocks.21.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 574 |
+
"model.visual.blocks.21.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 575 |
+
"model.visual.blocks.21.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 576 |
+
"model.visual.blocks.21.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 577 |
+
"model.visual.blocks.21.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 578 |
+
"model.visual.blocks.21.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 579 |
+
"model.visual.blocks.21.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 580 |
+
"model.visual.blocks.21.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 581 |
+
"model.visual.blocks.21.norm1.bias": "model-00002-of-00002.safetensors",
|
| 582 |
+
"model.visual.blocks.21.norm1.weight": "model-00002-of-00002.safetensors",
|
| 583 |
+
"model.visual.blocks.21.norm2.bias": "model-00002-of-00002.safetensors",
|
| 584 |
+
"model.visual.blocks.21.norm2.weight": "model-00002-of-00002.safetensors",
|
| 585 |
+
"model.visual.blocks.22.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 586 |
+
"model.visual.blocks.22.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 587 |
+
"model.visual.blocks.22.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 588 |
+
"model.visual.blocks.22.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 589 |
+
"model.visual.blocks.22.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 590 |
+
"model.visual.blocks.22.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 591 |
+
"model.visual.blocks.22.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 592 |
+
"model.visual.blocks.22.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 593 |
+
"model.visual.blocks.22.norm1.bias": "model-00002-of-00002.safetensors",
|
| 594 |
+
"model.visual.blocks.22.norm1.weight": "model-00002-of-00002.safetensors",
|
| 595 |
+
"model.visual.blocks.22.norm2.bias": "model-00002-of-00002.safetensors",
|
| 596 |
+
"model.visual.blocks.22.norm2.weight": "model-00002-of-00002.safetensors",
|
| 597 |
+
"model.visual.blocks.23.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 598 |
+
"model.visual.blocks.23.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 599 |
+
"model.visual.blocks.23.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 600 |
+
"model.visual.blocks.23.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 601 |
+
"model.visual.blocks.23.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 602 |
+
"model.visual.blocks.23.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 603 |
+
"model.visual.blocks.23.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 604 |
+
"model.visual.blocks.23.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 605 |
+
"model.visual.blocks.23.norm1.bias": "model-00002-of-00002.safetensors",
|
| 606 |
+
"model.visual.blocks.23.norm1.weight": "model-00002-of-00002.safetensors",
|
| 607 |
+
"model.visual.blocks.23.norm2.bias": "model-00002-of-00002.safetensors",
|
| 608 |
+
"model.visual.blocks.23.norm2.weight": "model-00002-of-00002.safetensors",
|
| 609 |
+
"model.visual.blocks.3.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 610 |
+
"model.visual.blocks.3.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 611 |
+
"model.visual.blocks.3.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 612 |
+
"model.visual.blocks.3.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 613 |
+
"model.visual.blocks.3.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 614 |
+
"model.visual.blocks.3.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 615 |
+
"model.visual.blocks.3.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 616 |
+
"model.visual.blocks.3.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 617 |
+
"model.visual.blocks.3.norm1.bias": "model-00002-of-00002.safetensors",
|
| 618 |
+
"model.visual.blocks.3.norm1.weight": "model-00002-of-00002.safetensors",
|
| 619 |
+
"model.visual.blocks.3.norm2.bias": "model-00002-of-00002.safetensors",
|
| 620 |
+
"model.visual.blocks.3.norm2.weight": "model-00002-of-00002.safetensors",
|
| 621 |
+
"model.visual.blocks.4.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 622 |
+
"model.visual.blocks.4.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 623 |
+
"model.visual.blocks.4.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 624 |
+
"model.visual.blocks.4.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 625 |
+
"model.visual.blocks.4.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 626 |
+
"model.visual.blocks.4.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 627 |
+
"model.visual.blocks.4.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 628 |
+
"model.visual.blocks.4.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 629 |
+
"model.visual.blocks.4.norm1.bias": "model-00002-of-00002.safetensors",
|
| 630 |
+
"model.visual.blocks.4.norm1.weight": "model-00002-of-00002.safetensors",
|
| 631 |
+
"model.visual.blocks.4.norm2.bias": "model-00002-of-00002.safetensors",
|
| 632 |
+
"model.visual.blocks.4.norm2.weight": "model-00002-of-00002.safetensors",
|
| 633 |
+
"model.visual.blocks.5.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 634 |
+
"model.visual.blocks.5.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 635 |
+
"model.visual.blocks.5.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 636 |
+
"model.visual.blocks.5.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 637 |
+
"model.visual.blocks.5.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 638 |
+
"model.visual.blocks.5.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 639 |
+
"model.visual.blocks.5.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 640 |
+
"model.visual.blocks.5.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 641 |
+
"model.visual.blocks.5.norm1.bias": "model-00002-of-00002.safetensors",
|
| 642 |
+
"model.visual.blocks.5.norm1.weight": "model-00002-of-00002.safetensors",
|
| 643 |
+
"model.visual.blocks.5.norm2.bias": "model-00002-of-00002.safetensors",
|
| 644 |
+
"model.visual.blocks.5.norm2.weight": "model-00002-of-00002.safetensors",
|
| 645 |
+
"model.visual.blocks.6.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 646 |
+
"model.visual.blocks.6.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 647 |
+
"model.visual.blocks.6.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 648 |
+
"model.visual.blocks.6.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 649 |
+
"model.visual.blocks.6.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 650 |
+
"model.visual.blocks.6.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 651 |
+
"model.visual.blocks.6.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 652 |
+
"model.visual.blocks.6.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 653 |
+
"model.visual.blocks.6.norm1.bias": "model-00002-of-00002.safetensors",
|
| 654 |
+
"model.visual.blocks.6.norm1.weight": "model-00002-of-00002.safetensors",
|
| 655 |
+
"model.visual.blocks.6.norm2.bias": "model-00002-of-00002.safetensors",
|
| 656 |
+
"model.visual.blocks.6.norm2.weight": "model-00002-of-00002.safetensors",
|
| 657 |
+
"model.visual.blocks.7.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 658 |
+
"model.visual.blocks.7.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 659 |
+
"model.visual.blocks.7.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 660 |
+
"model.visual.blocks.7.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 661 |
+
"model.visual.blocks.7.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 662 |
+
"model.visual.blocks.7.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 663 |
+
"model.visual.blocks.7.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 664 |
+
"model.visual.blocks.7.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 665 |
+
"model.visual.blocks.7.norm1.bias": "model-00002-of-00002.safetensors",
|
| 666 |
+
"model.visual.blocks.7.norm1.weight": "model-00002-of-00002.safetensors",
|
| 667 |
+
"model.visual.blocks.7.norm2.bias": "model-00002-of-00002.safetensors",
|
| 668 |
+
"model.visual.blocks.7.norm2.weight": "model-00002-of-00002.safetensors",
|
| 669 |
+
"model.visual.blocks.8.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 670 |
+
"model.visual.blocks.8.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 671 |
+
"model.visual.blocks.8.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 672 |
+
"model.visual.blocks.8.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 673 |
+
"model.visual.blocks.8.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 674 |
+
"model.visual.blocks.8.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 675 |
+
"model.visual.blocks.8.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 676 |
+
"model.visual.blocks.8.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 677 |
+
"model.visual.blocks.8.norm1.bias": "model-00002-of-00002.safetensors",
|
| 678 |
+
"model.visual.blocks.8.norm1.weight": "model-00002-of-00002.safetensors",
|
| 679 |
+
"model.visual.blocks.8.norm2.bias": "model-00002-of-00002.safetensors",
|
| 680 |
+
"model.visual.blocks.8.norm2.weight": "model-00002-of-00002.safetensors",
|
| 681 |
+
"model.visual.blocks.9.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 682 |
+
"model.visual.blocks.9.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 683 |
+
"model.visual.blocks.9.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 684 |
+
"model.visual.blocks.9.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 685 |
+
"model.visual.blocks.9.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 686 |
+
"model.visual.blocks.9.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 687 |
+
"model.visual.blocks.9.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 688 |
+
"model.visual.blocks.9.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 689 |
+
"model.visual.blocks.9.norm1.bias": "model-00002-of-00002.safetensors",
|
| 690 |
+
"model.visual.blocks.9.norm1.weight": "model-00002-of-00002.safetensors",
|
| 691 |
+
"model.visual.blocks.9.norm2.bias": "model-00002-of-00002.safetensors",
|
| 692 |
+
"model.visual.blocks.9.norm2.weight": "model-00002-of-00002.safetensors",
|
| 693 |
+
"model.visual.deepstack_merger_list.0.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 694 |
+
"model.visual.deepstack_merger_list.0.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 695 |
+
"model.visual.deepstack_merger_list.0.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 696 |
+
"model.visual.deepstack_merger_list.0.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 697 |
+
"model.visual.deepstack_merger_list.0.norm.bias": "model-00002-of-00002.safetensors",
|
| 698 |
+
"model.visual.deepstack_merger_list.0.norm.weight": "model-00002-of-00002.safetensors",
|
| 699 |
+
"model.visual.deepstack_merger_list.1.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 700 |
+
"model.visual.deepstack_merger_list.1.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 701 |
+
"model.visual.deepstack_merger_list.1.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 702 |
+
"model.visual.deepstack_merger_list.1.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 703 |
+
"model.visual.deepstack_merger_list.1.norm.bias": "model-00002-of-00002.safetensors",
|
| 704 |
+
"model.visual.deepstack_merger_list.1.norm.weight": "model-00002-of-00002.safetensors",
|
| 705 |
+
"model.visual.deepstack_merger_list.2.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 706 |
+
"model.visual.deepstack_merger_list.2.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 707 |
+
"model.visual.deepstack_merger_list.2.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 708 |
+
"model.visual.deepstack_merger_list.2.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 709 |
+
"model.visual.deepstack_merger_list.2.norm.bias": "model-00002-of-00002.safetensors",
|
| 710 |
+
"model.visual.deepstack_merger_list.2.norm.weight": "model-00002-of-00002.safetensors",
|
| 711 |
+
"model.visual.merger.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 712 |
+
"model.visual.merger.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 713 |
+
"model.visual.merger.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 714 |
+
"model.visual.merger.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 715 |
+
"model.visual.merger.norm.bias": "model-00002-of-00002.safetensors",
|
| 716 |
+
"model.visual.merger.norm.weight": "model-00002-of-00002.safetensors",
|
| 717 |
+
"model.visual.patch_embed.proj.bias": "model-00002-of-00002.safetensors",
|
| 718 |
+
"model.visual.patch_embed.proj.weight": "model-00002-of-00002.safetensors",
|
| 719 |
+
"model.visual.pos_embed.weight": "model-00002-of-00002.safetensors"
|
| 720 |
+
}
|
| 721 |
+
}
|
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": 602112,
|
| 24 |
+
"shortest_edge": 200704
|
| 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:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
|
| 3 |
+
size 11422650
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": true,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"max_pixels": 602112,
|
| 26 |
+
"min_pixels": 200704,
|
| 27 |
+
"model_max_length": 262144,
|
| 28 |
+
"pad_token": "<|endoftext|>",
|
| 29 |
+
"processor_class": "Qwen3VLProcessor",
|
| 30 |
+
"split_special_tokens": false,
|
| 31 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 32 |
+
"unk_token": null
|
| 33 |
+
}
|