Instructions to use Video-Reason/VBVR-Pro-FLUX2-dev with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Video-Reason/VBVR-Pro-FLUX2-dev with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Video-Reason/VBVR-Pro-FLUX2-dev", dtype=torch.bfloat16, device_map="cuda") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +212 -0
- example.py +39 -0
- model_index.json +24 -0
- scheduler/scheduler_config.json +18 -0
- text_encoder/config.json +48 -0
- text_encoder/generation_config.json +8 -0
- text_encoder/model-00001-of-00010.safetensors +3 -0
- text_encoder/model-00002-of-00010.safetensors +3 -0
- text_encoder/model-00003-of-00010.safetensors +3 -0
- text_encoder/model-00004-of-00010.safetensors +3 -0
- text_encoder/model-00005-of-00010.safetensors +3 -0
- text_encoder/model-00006-of-00010.safetensors +3 -0
- text_encoder/model-00007-of-00010.safetensors +3 -0
- text_encoder/model-00008-of-00010.safetensors +3 -0
- text_encoder/model-00009-of-00010.safetensors +3 -0
- text_encoder/model-00010-of-00010.safetensors +3 -0
- text_encoder/model.safetensors.index.json +593 -0
- tokenizer/chat_template.jinja +51 -0
- tokenizer/preprocessor_config.json +34 -0
- tokenizer/processor_config.json +8 -0
- tokenizer/special_tokens_map.json +1032 -0
- tokenizer/tokenizer.json +3 -0
- tokenizer/tokenizer_config.json +0 -0
- transformer/config.json +22 -0
- transformer/diffusion_pytorch_model-00001-of-00007.safetensors +3 -0
- transformer/diffusion_pytorch_model-00002-of-00007.safetensors +3 -0
- transformer/diffusion_pytorch_model-00003-of-00007.safetensors +3 -0
- transformer/diffusion_pytorch_model-00004-of-00007.safetensors +3 -0
- transformer/diffusion_pytorch_model-00005-of-00007.safetensors +3 -0
- transformer/diffusion_pytorch_model-00006-of-00007.safetensors +3 -0
- transformer/diffusion_pytorch_model-00007-of-00007.safetensors +3 -0
- transformer/diffusion_pytorch_model.safetensors.index.json +338 -0
- vae/config.json +39 -0
- vae/diffusion_pytorch_model.safetensors +3 -0
.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/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model:
|
| 3 |
+
- black-forest-labs/FLUX.2-dev
|
| 4 |
+
library_name: diffusers
|
| 5 |
+
license: apache-2.0
|
| 6 |
+
pipeline_tag: image-to-image
|
| 7 |
+
tags:
|
| 8 |
+
- diffusers
|
| 9 |
+
- safetensors
|
| 10 |
+
- image-editing
|
| 11 |
+
- vbvr
|
| 12 |
+
datasets:
|
| 13 |
+
- Video-Reason/VBVR-Dataset
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# VBVR-Pro: A Scalable and Verifiable Suite for Native Visual Reasoning
|
| 17 |
+
|
| 18 |
+
<a href="https://video-reason.com/?v=pro" target="_blank">
|
| 19 |
+
<img alt="Project Page" src="https://img.shields.io/badge/Project%20-%20Homepage-4285F4" height="20" />
|
| 20 |
+
</a>
|
| 21 |
+
<a href="https://github.com/Video-Reason/VBVR-Pro-Bench" target="_blank">
|
| 22 |
+
<img alt="Code" src="https://img.shields.io/badge/Evaluation_code-VBVR_Pro_Bench-100000?style=flat-square&logo=github&logoColor=white" height="20" />
|
| 23 |
+
</a>
|
| 24 |
+
<a href="https://github.com/Video-Reason/VBVR-Pro" target="_blank">
|
| 25 |
+
<img alt="Code" src="https://img.shields.io/badge/Training_Inferenceing-VBVR_Pro-100000?style=flat-square&logo=github&logoColor=white" height="20" />
|
| 26 |
+
</a>
|
| 27 |
+
<a href="https://huggingface.co/papers/2602.20159" target="_blank">
|
| 28 |
+
<img alt="arXiv" src="https://img.shields.io/badge/arXiv-VBVR_Pro-red?logo=arxiv" height="20" />
|
| 29 |
+
</a>
|
| 30 |
+
<a href="https://huggingface.co/datasets/Video-Reason/VBVR-Pro-SFT-Video" target="_blank">
|
| 31 |
+
<img alt="Dataset" src="https://img.shields.io/badge/%F0%9F%A4%97%20_VBVR_Pro_Dataset-Data-ffc107?color=ffc107&logoColor=white" height="20" />
|
| 32 |
+
</a>
|
| 33 |
+
<a href="https://huggingface.co/datasets/Video-Reason/VBVR-Pro-Bench/tree/main" target="_blank">
|
| 34 |
+
<img alt="Bench Data" src="https://img.shields.io/badge/%F0%9F%A4%97%20_VBVR_Pro_Bench-Data-ffc107?color=ffc107&logoColor=white" height="20" />
|
| 35 |
+
</a>
|
| 36 |
+
<a href="https://video-reason.com/pro/bench/#leaderboard" target="_blank">
|
| 37 |
+
<img alt="Leaderboard" src="https://img.shields.io/badge/%F0%9F%A4%97%20_VBVR_Pro_Bench-Leaderboard-ffc107?color=ffc107&logoColor=white" height="20" />
|
| 38 |
+
</a>
|
| 39 |
+
|
| 40 |
+
## Overview
|
| 41 |
+
Native visual reasoning, i.e., reasoning through visual generation, has recently emerged as a promising direction for studying visual intelligence beyond language. Yet progress remains bottlenecked by the lack of scalable training tasks, reliable feedback, and controlled comparisons across generative substrates. In this work, we introduce **VBVR-Pro**, a closed-loop testbed that makes native visual reasoning through generation trainable, verifiable, optimizable, and experimentally controllable. **1) Task scaling.** VBVR-Pro turns visual reasoning into a controlled task space of *300* procedurally generated tasks. Models trained on VBVR-Pro show strong transfer beyond the proposed suite across *six* held-out visual reasoning benchmarks such as RISE-Video, MME-CoF-Pro, and BabyVision. Further analysis validates that these gains reflect visual reasoning rather than instruction-pattern fitting. **2) Verifiable rewards.** VBVR-Pro provides verifiable reward scorers for task-grounded evaluation. Through a systematic study of leading MLLMs as judges, we identify recurring failure modes of the prevalent *VLM-as-a-judge* paradigm. In contrast, the proposed scorers are grounded on verifiable task-specific rules, achieve fine-grained alignment with human judgments. Importantly, they serve as reliable reward signals for large-scale multi-task reinforcement learning and demonstrate stronger post-RL performance across visual reasoning tasks. **3) Mechanism study.** VBVR-Pro enables controlled modality studies across more than *30* image, video, and interleaved generators. Our analysis shows that video generation remains strongest for tasks requiring persistent spatiotemporal state tracking, while interleaved generation provides a compute-efficient alternative by externalizing intermediate visual states. Critically, ablations and probing confirm the presence of vision-native trajectories, that are a more crucial substrate than explicit linguistic chains of thought for visual reasoning. We release all data, models, scorers, and code to facilitate future research.
|
| 42 |
+
|
| 43 |
+
The models are presented in the paper [VBVR-Pro: A Scalable and Verifiable Suite for Native Visual Reasoning](https://huggingface.co/papers/2602.20159).
|
| 44 |
+
|
| 45 |
+
## Models Zoo
|
| 46 |
+
<table border="1" cellspacing="0" cellpadding="4" style="border-collapse: collapse; width: 100%;">
|
| 47 |
+
<thead>
|
| 48 |
+
<tr>
|
| 49 |
+
<th width="260" style="min-width: 260px;">Model</th>
|
| 50 |
+
<th>Base Architecture</th>
|
| 51 |
+
<th>Other Remarks</th>
|
| 52 |
+
</tr>
|
| 53 |
+
</thead>
|
| 54 |
+
<tbody>
|
| 55 |
+
<tr style="border-top: 4px solid #6b7280; background-color: #e5e7eb;"><th colspan="3" align="left">Image Generation Models</th></tr>
|
| 56 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-BAGEL">VBVR-Pro-BAGEL</a></td><td>BAGEL-7B-MoT</td><td>Complete model</td></tr>
|
| 57 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-FLUX2-dev"><strong>VBVR-Pro-FLUX2-dev</strong></a></td><td>FLUX.2-dev</td><td>Complete model, Diffusers format</td></tr>
|
| 58 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-FLUX2-dev-diffsynth">VBVR-Pro-FLUX2-dev-diffsynth</a></td><td>FLUX.2-dev</td><td>LoRA model, DiffSynth format</td></tr>
|
| 59 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Qwen-Image-Edit">VBVR-Pro-Qwen-Image-Edit</a></td><td>Qwen-Image-Edit-2511</td><td>Complete model, Diffusers format</td></tr>
|
| 60 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Qwen-Image-Edit-diffsynth">VBVR-Pro-Qwen-Image-Edit-diffsynth</a></td><td>Qwen-Image-Edit-2511</td><td>LoRA model, DiffSynth format</td></tr>
|
| 61 |
+
<tr style="border-top: 4px solid #6b7280; background-color: #e5e7eb;"><th colspan="3" align="left">Interleaved Image Generation Models</th></tr>
|
| 62 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-ThinkMorph">VBVR-Pro-ThinkMorph</a></td><td>ThinkMorph-7B</td><td>Complete model</td></tr>
|
| 63 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-SenseNova-U1">VBVR-Pro-SenseNova-U1</a></td><td>SenseNova-U1-8B-MoT</td><td>Complete model</td></tr>
|
| 64 |
+
<tr style="border-top: 4px solid #6b7280; background-color: #e5e7eb;"><th colspan="3" align="left">Video Generation Models</th></tr>
|
| 65 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-LTX2.3">VBVR-Pro-LTX2.3</a></td><td>LTX-Video-2.3</td><td>Complete model, Diffusers format</td></tr>
|
| 66 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-LTX2.3-diffsynth">VBVR-Pro-LTX2.3-diffsynth</a></td><td>LTX-Video-2.3</td><td>LoRA model, DiffSynth format</td></tr>
|
| 67 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Wan2.1-I2V-14B">VBVR-Pro-Wan2.1-I2V-14B</a></td><td>Wan2.1-I2V-14B-720P</td><td>Complete model, Diffusers format</td></tr>
|
| 68 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Wan2.1-I2V-14B-diffsynth">VBVR-Pro-Wan2.1-I2V-14B-diffsynth</a></td><td>Wan2.1-I2V-14B-720P</td><td>LoRA model, DiffSynth format</td></tr>
|
| 69 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Wan2.2-I2V-A14B">VBVR-Pro-Wan2.2-I2V-A14B</a></td><td>Wan2.2-I2V-A14B</td><td>Complete model, Diffusers format</td></tr>
|
| 70 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Wan2.2-I2V-A14B-diffsynth">VBVR-Pro-Wan2.2-I2V-A14B-diffsynth</a></td><td>Wan2.2-I2V-A14B</td><td>LoRA model, DiffSynth format</td></tr>
|
| 71 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Wan2.2-TI2V-5B">VBVR-Pro-Wan2.2-TI2V-5B</a></td><td>Wan2.2-TI2V-5B</td><td>Complete model, Diffusers format</td></tr>
|
| 72 |
+
<tr><td><a href="https://huggingface.co/Video-Reason/VBVR-Pro-Wan2.2-TI2V-5B-diffsynth">VBVR-Pro-Wan2.2-TI2V-5B-diffsynth</a></td><td>Wan2.2-TI2V-5B</td><td>LoRA model, DiffSynth format</td></tr>
|
| 73 |
+
</tbody>
|
| 74 |
+
</table>
|
| 75 |
+
|
| 76 |
+
## Release Information
|
| 77 |
+
|
| 78 |
+
VBVR-Pro finetuned **FLUX.2-dev** for instruction-based image editing,
|
| 79 |
+
trained on the
|
| 80 |
+
[VBVR-Dataset](https://huggingface.co/datasets/Video-Reason/VBVR-Dataset).
|
| 81 |
+
|
| 82 |
+
This is the **merged model** — the LoRA (rank 32) has already been fused into
|
| 83 |
+
the transformer weights. Load it directly with
|
| 84 |
+
[Diffusers](https://github.com/huggingface/diffusers); no extra adapters or
|
| 85 |
+
DiffSynth-Studio needed.
|
| 86 |
+
|
| 87 |
+
| Format | Repository |
|
| 88 |
+
|---|---|
|
| 89 |
+
| Merged / Diffusers (this repo) | `VBVR-Pro-FLUX2-dev` |
|
| 90 |
+
| DiffSynth LoRA | `VBVR-Pro-FLUX2-dev-diffsynth` |
|
| 91 |
+
|
| 92 |
+
In this release, we present all models presented in paper
|
| 93 |
+
[**VBVR-Pro-Trained-Models**](https://huggingface.co/collections/Video-Reason/VBVR-Pro),
|
| 94 |
+
[**VBVR-Pro-Dataset-Video**](https://huggingface.co/datasets/Video-Reason/VBVR-Pro-SFT-Video),
|
| 95 |
+
[**VBVR-Pro-Dataset-Image**](https://huggingface.co/datasets/Video-Reason/VBVR-Pro-SFT-Image),
|
| 96 |
+
[**VBVR-Pro-Bench**](https://huggingface.co/datasets/Video-Reason/VBVR-Pro-Bench),
|
| 97 |
+
[**VBVR-Pro-Code**](https://github.com/Video-Reason/VBVR-Pro) and
|
| 98 |
+
[**VBVR-Bench-Leaderboard**](https://video-reason.com/pro/bench/#leaderboard).
|
| 99 |
+
|
| 100 |
+
## VBVR-Pro Benchmark Results
|
| 101 |
+
<table border="1" cellspacing="0" cellpadding="4" style="border-collapse: collapse; width: 100%; font-size: 12px;">
|
| 102 |
+
<thead>
|
| 103 |
+
<tr>
|
| 104 |
+
<th rowspan="2" width="260" style="min-width: 260px;">Models</th>
|
| 105 |
+
<th rowspan="2">Overall</th>
|
| 106 |
+
<th colspan="6">In-Domain by Category</th>
|
| 107 |
+
<th colspan="6">Out-of-Domain by Category</th>
|
| 108 |
+
</tr>
|
| 109 |
+
<tr>
|
| 110 |
+
<th>Avg.</th><th>Abst.</th><th>Know.</th><th>Perc.</th><th>Spat.</th><th>Trans.</th>
|
| 111 |
+
<th>Avg.</th><th>Abst.</th><th>Know.</th><th>Perc.</th><th>Spat.</th><th>Trans.</th>
|
| 112 |
+
</tr>
|
| 113 |
+
</thead>
|
| 114 |
+
<tbody>
|
| 115 |
+
<tr style="border-top: 4px solid #6b7280; background-color: #e5e7eb;"><th colspan="14" align="left">Image Generation Models</th></tr>
|
| 116 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Proprietary Models</th></tr>
|
| 117 |
+
<tr><td>Qwen-Image-2.0</td><td><u>0.313</u></td><td><u>0.248</u></td><td><u>0.269</u></td><td><u>0.196</u></td><td><u>0.225</u></td><td><u>0.170</u></td><td><u>0.132</u></td><td><u>0.378</u></td><td><u>0.341</u></td><td><u>0.235</u></td><td><u>0.391</u></td><td><u>0.384</u></td><td><u>0.080</u></td></tr>
|
| 118 |
+
<tr><td>Seedream-5.0-Pro</td><td><strong>0.557</strong></td><td><strong>0.485</strong></td><td><strong>0.518</strong></td><td><strong>0.312</strong></td><td><strong>0.509</strong></td><td><strong>0.401</strong></td><td><strong>0.217</strong></td><td><strong>0.629</strong></td><td><strong>0.507</strong></td><td><strong>0.455</strong></td><td><strong>0.661</strong></td><td><strong>0.559</strong></td><td><strong>0.202</strong></td></tr>
|
| 119 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Open-source Models</th></tr>
|
| 120 |
+
<tr><td>BAGEL-7B-MoT</td><td>0.089</td><td><u>0.066</u></td><td>0.039</td><td><u>0.085</u></td><td>0.067</td><td>0.046</td><td>0.027</td><td>0.111</td><td><strong>0.201</strong></td><td>0.031</td><td>0.073</td><td>0.028</td><td><strong>0.121</strong></td></tr>
|
| 121 |
+
<tr><td>FLUX.2-dev</td><td><strong>0.157</strong></td><td><strong>0.108</strong></td><td><u>0.088</u></td><td><strong>0.109</strong></td><td><u>0.072</u></td><td><u>0.100</u></td><td><strong>0.066</strong></td><td><strong>0.206</strong></td><td><u>0.197</u></td><td><strong>0.165</strong></td><td><strong>0.184</strong></td><td><strong>0.241</strong></td><td>0.077</td></tr>
|
| 122 |
+
<tr><td>Qwen-Image-Edit</td><td><u>0.134</u></td><td><strong>0.108</strong></td><td><strong>0.092</strong></td><td>0.082</td><td><strong>0.100</strong></td><td><strong>0.109</strong></td><td><u>0.056</u></td><td><u>0.159</u></td><td>0.176</td><td><u>0.063</u></td><td><u>0.141</u></td><td><u>0.182</u></td><td><u>0.082</u></td></tr>
|
| 123 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Strong Baselines</th></tr>
|
| 124 |
+
<tr><td>VBVR-Pro-BAGEL</td><td>0.172</td><td>0.168</td><td>0.199</td><td>0.105</td><td>0.110</td><td>0.213</td><td>0.055</td><td>0.176</td><td>0.254</td><td>0.104</td><td>0.148</td><td>0.015</td><td><u>0.145</u></td></tr>
|
| 125 |
+
<tr><td>VBVR-Pro-FLUX.2</td><td><strong>0.407</strong></td><td><strong>0.484</strong></td><td><strong>0.483</strong></td><td><strong>0.323</strong></td><td><strong>0.367</strong></td><td><strong>0.449</strong></td><td><strong>0.336</strong></td><td><strong>0.330</strong></td><td><strong>0.361</strong></td><td><strong>0.272</strong></td><td><strong>0.255</strong></td><td><strong>0.454</strong></td><td>0.128</td></tr>
|
| 126 |
+
<tr><td>VBVR-Pro-Qwen-Image</td><td><u>0.322</u></td><td><u>0.332</u></td><td><u>0.298</u></td><td><u>0.217</u></td><td><u>0.193</u></td><td><u>0.431</u></td><td><u>0.222</u></td><td><u>0.311</u></td><td><u>0.341</u></td><td><u>0.239</u></td><td><u>0.233</u></td><td><u>0.413</u></td><td><strong>0.181</strong></td></tr>
|
| 127 |
+
<tr style="border-top: 4px solid #6b7280; background-color: #e5e7eb;"><th colspan="14" align="left">Interleaved Image Generation Models</th></tr>
|
| 128 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Proprietary Models</th></tr>
|
| 129 |
+
<tr><td>GPT-Image-2</td><td><u>0.507</u></td><td><u>0.428</u></td><td><u>0.456</u></td><td><u>0.318</u></td><td><u>0.428</u></td><td><u>0.206</u></td><td><strong>0.300</strong></td><td><u>0.587</u></td><td><u>0.398</u></td><td><u>0.413</u></td><td><u>0.633</u></td><td><u>0.480</u></td><td><strong>0.303</strong></td></tr>
|
| 130 |
+
<tr><td>Nano Banana Pro</td><td><strong>0.564</strong></td><td><strong>0.480</strong></td><td><strong>0.518</strong></td><td><strong>0.422</strong></td><td><strong>0.512</strong></td><td><strong>0.285</strong></td><td><u>0.174</u></td><td><strong>0.648</strong></td><td><strong>0.553</strong></td><td><strong>0.499</strong></td><td><strong>0.657</strong></td><td><strong>0.585</strong></td><td><u>0.220</u></td></tr>
|
| 131 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Open-source Models</th></tr>
|
| 132 |
+
<tr><td>ThinkMorph-7B</td><td>0.154</td><td>0.113</td><td>0.100</td><td>0.082</td><td>0.101</td><td>0.148</td><td>0.031</td><td>0.195</td><td>0.176</td><td>0.166</td><td>0.163</td><td>0.253</td><td>0.103</td></tr>
|
| 133 |
+
<tr><td>VBVR-SenseNova-U1</td><td><u>0.408</u></td><td><u>0.469</u></td><td><u>0.356</u></td><td><u>0.313</u></td><td><u>0.373</u></td><td><strong>0.386</strong></td><td><strong>0.477</strong></td><td><u>0.347</u></td><td><u>0.291</u></td><td><u>0.317</u></td><td><u>0.275</u></td><td><u>0.480</u></td><td><u>0.238</u></td></tr>
|
| 134 |
+
<tr><td>SenseNova-U1-8B-MoT</td><td><strong>0.565</strong></td><td><strong>0.533</strong></td><td><strong>0.501</strong></td><td><strong>0.395</strong></td><td><strong>0.544</strong></td><td><u>0.355</u></td><td><u>0.349</u></td><td><strong>0.597</strong></td><td><strong>0.448</strong></td><td><strong>0.495</strong></td><td><strong>0.533</strong></td><td><strong>0.717</strong></td><td><strong>0.401</strong></td></tr>
|
| 135 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Strong Baselines</th></tr>
|
| 136 |
+
<tr><td>VBVR-Pro-ThinkMorph</td><td><u>0.373</u></td><td><u>0.402</u></td><td><u>0.403</u></td><td><u>0.344</u></td><td><u>0.238</u></td><td><u>0.454</u></td><td><u>0.184</u></td><td><u>0.344</u></td><td><u>0.367</u></td><td><u>0.224</u></td><td><u>0.238</u></td><td><u>0.535</u></td><td><u>0.257</u></td></tr>
|
| 137 |
+
<tr><td>VBVR-Pro-SenseNova-U1</td><td><strong>0.638</strong></td><td><strong>0.811</strong></td><td><strong>0.648</strong></td><td><strong>0.695</strong></td><td><strong>0.621</strong></td><td><strong>0.770</strong></td><td><strong>0.541</strong></td><td><strong>0.464</strong></td><td><strong>0.480</strong></td><td><strong>0.328</strong></td><td><strong>0.344</strong></td><td><strong>0.558</strong></td><td><strong>0.408</strong></td></tr>
|
| 138 |
+
<tr style="border-top: 4px solid #6b7280; background-color: #e5e7eb;"><th colspan="14" align="left">Video Generation Models</th></tr>
|
| 139 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Proprietary Models</th></tr>
|
| 140 |
+
<tr><td>Veo 3.1</td><td>0.309</td><td>0.312</td><td><u>0.275</u></td><td>0.299</td><td>0.252</td><td>0.267</td><td>0.157</td><td>0.305</td><td><u>0.305</u></td><td>0.233</td><td>0.252</td><td><u>0.312</u></td><td>0.219</td></tr>
|
| 141 |
+
<tr><td>Kling V3</td><td><u>0.392</u></td><td><u>0.356</u></td><td>0.213</td><td><u>0.326</u></td><td><u>0.320</u></td><td><u>0.355</u></td><td><u>0.229</u></td><td><u>0.427</u></td><td>0.294</td><td><strong>0.564</strong></td><td><u>0.375</u></td><td>0.242</td><td><u>0.412</u></td></tr>
|
| 142 |
+
<tr><td>SeedDance 2.0</td><td><strong>0.499</strong></td><td><strong>0.451</strong></td><td><strong>0.338</strong></td><td><strong>0.361</strong></td><td><strong>0.353</strong></td><td><strong>0.468</strong></td><td><strong>0.308</strong></td><td><strong>0.547</strong></td><td><strong>0.369</strong></td><td><u>0.511</u></td><td><strong>0.478</strong></td><td><strong>0.538</strong></td><td><strong>0.532</strong></td></tr>
|
| 143 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Open-source Models</th></tr>
|
| 144 |
+
<tr><td>HunyuanVideo-I2V</td><td>0.054</td><td>0.054</td><td>0.023</td><td>0.064</td><td>0.015</td><td>0.084</td><td>0.032</td><td>0.053</td><td>0.088</td><td>0.014</td><td>0.028</td><td>0.062</td><td>0.055</td></tr>
|
| 145 |
+
<tr><td>CogVideoX1.5-5B-I2V</td><td>0.085</td><td>0.100</td><td>0.061</td><td>0.118</td><td>0.069</td><td>0.092</td><td>0.060</td><td>0.070</td><td>0.125</td><td>0.038</td><td>0.051</td><td>0.040</td><td>0.024</td></tr>
|
| 146 |
+
<tr><td>Wan2.1-I2V-14B</td><td>0.100</td><td>0.105</td><td>0.052</td><td>0.125</td><td>0.091</td><td>0.102</td><td>0.052</td><td>0.095</td><td>0.112</td><td>0.073</td><td>0.071</td><td>0.123</td><td>0.044</td></tr>
|
| 147 |
+
<tr><td>Wan2.2-TI2V-5B</td><td>0.094</td><td>0.066</td><td>0.029</td><td>0.073</td><td>0.050</td><td>0.083</td><td>0.031</td><td>0.122</td><td>0.156</td><td>0.052</td><td>0.106</td><td>0.063</td><td>0.099</td></tr>
|
| 148 |
+
<tr><td>Wan2.2-I2V-14B-720P</td><td><u>0.182</u></td><td><u>0.157</u></td><td><u>0.082</u></td><td><u>0.131</u></td><td><u>0.110</u></td><td><u>0.161</u></td><td><u>0.156</u></td><td><u>0.207</u></td><td><u>0.224</u></td><td><u>0.139</u></td><td><u>0.140</u></td><td><u>0.195</u></td><td><u>0.273</u></td></tr>
|
| 149 |
+
<tr><td>LTX2.3-I2AV</td><td>0.112</td><td>0.106</td><td>0.062</td><td>0.109</td><td>0.070</td><td>0.133</td><td>0.055</td><td>0.119</td><td>0.161</td><td>0.135</td><td>0.086</td><td>0.091</td><td>0.050</td></tr>
|
| 150 |
+
<tr><td>VBVR-Wan2.2</td><td><strong>0.517</strong></td><td><strong>0.548</strong></td><td><strong>0.237</strong></td><td><strong>0.499</strong></td><td><strong>0.334</strong></td><td><strong>0.566</strong></td><td><strong>0.591</strong></td><td><strong>0.486</strong></td><td><strong>0.310</strong></td><td><strong>0.343</strong></td><td><strong>0.345</strong></td><td><strong>0.732</strong></td><td><strong>0.684</strong></td></tr>
|
| 151 |
+
<tr style="background-color: #dbeafe;"><th colspan="14" align="left">Strong Baselines</th></tr>
|
| 152 |
+
<tr><td>VBVR-Pro-LTX2.3</td><td>0.425</td><td>0.527</td><td>0.409</td><td>0.510</td><td>0.346</td><td>0.460</td><td>0.390</td><td>0.324</td><td>0.381</td><td>0.108</td><td>0.201</td><td>0.477</td><td>0.386</td></tr>
|
| 153 |
+
<tr><td>VBVR-Pro-Wan2.1-I2V-14B</td><td><u>0.562</u></td><td><u>0.730</u></td><td><u>0.617</u></td><td><u>0.580</u></td><td><u>0.452</u></td><td><u>0.676</u></td><td><u>0.623</u></td><td><u>0.395</u></td><td><u>0.410</u></td><td><u>0.305</u></td><td><u>0.230</u></td><td><u>0.617</u></td><td><u>0.439</u></td></tr>
|
| 154 |
+
<tr><td>VBVR-Pro-Wan2.2-TI2V-5B</td><td>0.470</td><td>0.641</td><td>0.528</td><td>0.556</td><td>0.373</td><td>0.565</td><td>0.557</td><td>0.300</td><td>0.333</td><td>0.127</td><td>0.161</td><td>0.505</td><td>0.409</td></tr>
|
| 155 |
+
<tr><td>VBVR-Pro-Wan2.2-I2V-14B</td><td><strong>0.670</strong></td><td><strong>0.808</strong></td><td><strong>0.632</strong></td><td><strong>0.685</strong></td><td><strong>0.556</strong></td><td><strong>0.751</strong></td><td><strong>0.636</strong></td><td><strong>0.532</strong></td><td><strong>0.479</strong></td><td><strong>0.418</strong></td><td><strong>0.350</strong></td><td><strong>0.679</strong></td><td><strong>0.690</strong></td></tr>
|
| 156 |
+
</tbody>
|
| 157 |
+
</table>
|
| 158 |
+
|
| 159 |
+
## Quick Start
|
| 160 |
+
|
| 161 |
+
### Method 1: Standalone Diffusers inference
|
| 162 |
+
|
| 163 |
+
#### 1. Install Diffusers
|
| 164 |
+
|
| 165 |
+
```bash
|
| 166 |
+
pip install torch torchvision
|
| 167 |
+
pip install git+https://github.com/huggingface/diffusers
|
| 168 |
+
```
|
| 169 |
+
|
| 170 |
+
#### 2. Run `example.py`
|
| 171 |
+
|
| 172 |
+
The included [`example.py`](example.py) loads the merged checkpoint directly
|
| 173 |
+
with Diffusers and enables model CPU offloading.
|
| 174 |
+
|
| 175 |
+
```bash
|
| 176 |
+
python example.py \
|
| 177 |
+
--model_path Video-Reason/VBVR-Pro-FLUX2-dev \
|
| 178 |
+
--image input.png \
|
| 179 |
+
--prompt "Move the red block to the left of the blue block." \
|
| 180 |
+
--output output.png
|
| 181 |
+
```
|
| 182 |
+
|
| 183 |
+
### Method 2: Unified VBVR-Pro inference
|
| 184 |
+
|
| 185 |
+
Clone [Video-Reason/VBVR-Pro](https://github.com/Video-Reason/VBVR-Pro) and
|
| 186 |
+
create its unified inference environment:
|
| 187 |
+
|
| 188 |
+
```bash
|
| 189 |
+
git clone https://github.com/Video-Reason/VBVR-Pro.git
|
| 190 |
+
cd VBVR-Pro/
|
| 191 |
+
uv sync --extra cu124 # or one of [cu118|cu121|cu124|cu126|cu128|cu129]
|
| 192 |
+
source .venv/bin/activate
|
| 193 |
+
```
|
| 194 |
+
|
| 195 |
+
Then run the unified inference script:
|
| 196 |
+
|
| 197 |
+
```bash
|
| 198 |
+
python example.py \
|
| 199 |
+
--model_path Video-Reason/VBVR-Pro-FLUX2-dev \
|
| 200 |
+
--image_paths input.png \
|
| 201 |
+
--prompt "Move the red block to the left of the blue block." \
|
| 202 |
+
--output output.png
|
| 203 |
+
```
|
| 204 |
+
|
| 205 |
+
## Citation
|
| 206 |
+
|
| 207 |
+
```bibtex
|
| 208 |
+
@article{vbvr2025,
|
| 209 |
+
title={VBVR: A Very Big Video Reasoning Suite},
|
| 210 |
+
year={2025},
|
| 211 |
+
}
|
| 212 |
+
```
|
example.py
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""VBVR-Pro-FLUX2-dev inference example.
|
| 2 |
+
|
| 3 |
+
Usage:
|
| 4 |
+
python example.py --model_path ./VBVR-Pro-FLUX2-dev
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import argparse
|
| 8 |
+
import torch
|
| 9 |
+
from PIL import Image
|
| 10 |
+
from diffusers import Flux2Pipeline
|
| 11 |
+
|
| 12 |
+
parser = argparse.ArgumentParser()
|
| 13 |
+
parser.add_argument("--model_path", type=str, default="VBVR-Pro-FLUX2-dev")
|
| 14 |
+
parser.add_argument("--image", type=str, required=True, help="Path to input image")
|
| 15 |
+
parser.add_argument("--prompt", type=str, required=True, help="Editing instruction")
|
| 16 |
+
parser.add_argument("--output", type=str, default="output.png")
|
| 17 |
+
parser.add_argument("--steps", type=int, default=50)
|
| 18 |
+
parser.add_argument("--seed", type=int, default=42)
|
| 19 |
+
args = parser.parse_args()
|
| 20 |
+
|
| 21 |
+
print(f"Loading model from: {args.model_path}")
|
| 22 |
+
pipe = Flux2Pipeline.from_pretrained(
|
| 23 |
+
args.model_path, torch_dtype=torch.bfloat16
|
| 24 |
+
)
|
| 25 |
+
pipe.enable_model_cpu_offload()
|
| 26 |
+
|
| 27 |
+
image = Image.open(args.image).convert("RGB")
|
| 28 |
+
print(f"Input image: {args.image} ({image.size[0]}x{image.size[1]})")
|
| 29 |
+
|
| 30 |
+
output = pipe(
|
| 31 |
+
image=image,
|
| 32 |
+
prompt=args.prompt,
|
| 33 |
+
num_inference_steps=args.steps,
|
| 34 |
+
guidance_scale=2.5,
|
| 35 |
+
generator=torch.manual_seed(args.seed),
|
| 36 |
+
).images[0]
|
| 37 |
+
|
| 38 |
+
output.save(args.output)
|
| 39 |
+
print(f"Saved to: {args.output}")
|
model_index.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "Flux2Pipeline",
|
| 3 |
+
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
+
"scheduler": [
|
| 5 |
+
"diffusers",
|
| 6 |
+
"FlowMatchEulerDiscreteScheduler"
|
| 7 |
+
],
|
| 8 |
+
"text_encoder": [
|
| 9 |
+
"transformers",
|
| 10 |
+
"Mistral3ForConditionalGeneration"
|
| 11 |
+
],
|
| 12 |
+
"tokenizer": [
|
| 13 |
+
"transformers",
|
| 14 |
+
"PixtralProcessor"
|
| 15 |
+
],
|
| 16 |
+
"transformer": [
|
| 17 |
+
"diffusers",
|
| 18 |
+
"Flux2Transformer2DModel"
|
| 19 |
+
],
|
| 20 |
+
"vae": [
|
| 21 |
+
"diffusers",
|
| 22 |
+
"AutoencoderKLFlux2"
|
| 23 |
+
]
|
| 24 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "FlowMatchEulerDiscreteScheduler",
|
| 3 |
+
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
+
"base_image_seq_len": 256,
|
| 5 |
+
"base_shift": 0.5,
|
| 6 |
+
"invert_sigmas": false,
|
| 7 |
+
"max_image_seq_len": 4096,
|
| 8 |
+
"max_shift": 1.15,
|
| 9 |
+
"num_train_timesteps": 1000,
|
| 10 |
+
"shift": 3.0,
|
| 11 |
+
"shift_terminal": null,
|
| 12 |
+
"stochastic_sampling": false,
|
| 13 |
+
"time_shift_type": "exponential",
|
| 14 |
+
"use_beta_sigmas": false,
|
| 15 |
+
"use_dynamic_shifting": true,
|
| 16 |
+
"use_exponential_sigmas": false,
|
| 17 |
+
"use_karras_sigmas": false
|
| 18 |
+
}
|
text_encoder/config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Mistral3ForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"dtype": "bfloat16",
|
| 6 |
+
"image_token_index": 10,
|
| 7 |
+
"model_type": "mistral3",
|
| 8 |
+
"multimodal_projector_bias": false,
|
| 9 |
+
"projector_hidden_act": "gelu",
|
| 10 |
+
"spatial_merge_size": 2,
|
| 11 |
+
"text_config": {
|
| 12 |
+
"attention_dropout": 0.0,
|
| 13 |
+
"dtype": "bfloat16",
|
| 14 |
+
"head_dim": 128,
|
| 15 |
+
"hidden_act": "silu",
|
| 16 |
+
"hidden_size": 5120,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 32768,
|
| 19 |
+
"max_position_embeddings": 131072,
|
| 20 |
+
"model_type": "mistral",
|
| 21 |
+
"num_attention_heads": 32,
|
| 22 |
+
"num_hidden_layers": 40,
|
| 23 |
+
"num_key_value_heads": 8,
|
| 24 |
+
"rms_norm_eps": 1e-05,
|
| 25 |
+
"rope_theta": 1000000000.0,
|
| 26 |
+
"sliding_window": null,
|
| 27 |
+
"use_cache": true,
|
| 28 |
+
"vocab_size": 131072
|
| 29 |
+
},
|
| 30 |
+
"transformers_version": "4.57.1",
|
| 31 |
+
"vision_config": {
|
| 32 |
+
"attention_dropout": 0.0,
|
| 33 |
+
"dtype": "bfloat16",
|
| 34 |
+
"head_dim": 64,
|
| 35 |
+
"hidden_act": "silu",
|
| 36 |
+
"hidden_size": 1024,
|
| 37 |
+
"image_size": 1540,
|
| 38 |
+
"initializer_range": 0.02,
|
| 39 |
+
"intermediate_size": 4096,
|
| 40 |
+
"model_type": "pixtral",
|
| 41 |
+
"num_attention_heads": 16,
|
| 42 |
+
"num_channels": 3,
|
| 43 |
+
"num_hidden_layers": 24,
|
| 44 |
+
"patch_size": 14,
|
| 45 |
+
"rope_theta": 10000.0
|
| 46 |
+
},
|
| 47 |
+
"vision_feature_layer": -1
|
| 48 |
+
}
|
text_encoder/generation_config.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 1,
|
| 4 |
+
"do_sample": true,
|
| 5 |
+
"eos_token_id": 2,
|
| 6 |
+
"temperature": 0.15,
|
| 7 |
+
"transformers_version": "4.57.1"
|
| 8 |
+
}
|
text_encoder/model-00001-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91831c2ce219df0ce63bc33c6249e5cb01db8d93816bcebf975f1c406286520e
|
| 3 |
+
size 4883550696
|
text_encoder/model-00002-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ffe80706a66b2f5ef1fb058806ccf09f124ec4ad38af7a377e44ab1ee2fd664
|
| 3 |
+
size 4781593336
|
text_encoder/model-00003-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99ec66e891f9563f568734eadfc5b7701e04620e8e163d4d5755277a3b50cf2f
|
| 3 |
+
size 4886472224
|
text_encoder/model-00004-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1df1527b12b1eb5cbd9a50914f9e6eb24e885ec830a3c16b5eed6ad0b53a396
|
| 3 |
+
size 4781593376
|
text_encoder/model-00005-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3556ac03f47c24eb8ad27c237e25baad639c651d9596fd72cb1523137bf56163
|
| 3 |
+
size 4781593368
|
text_encoder/model-00006-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c41e6f80f2b5ca384ce703eac048a13daf2aff689c3acca66a8943f45338aae
|
| 3 |
+
size 4886472248
|
text_encoder/model-00007-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62a725f154f6ba942a36b5cc450db2b2df32f434e3224558c789bc04fa05fd36
|
| 3 |
+
size 4781593376
|
text_encoder/model-00008-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a1a6ac77e6434418bb7273b68a7b3534fed5217c990061c92a8f990dd6ab20e
|
| 3 |
+
size 4781593368
|
text_encoder/model-00009-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1fffc9bb2b77d4d2382c1bd9053e9d017741d67ca00cc6f77034a294f2f5cfd
|
| 3 |
+
size 4886472248
|
text_encoder/model-00010-of-00010.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:116ef7ae6fa0fd46b478324e4aa6a49f448afed900ca9f71d4fbd3d02289bbd4
|
| 3 |
+
size 4571866320
|
text_encoder/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,593 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 24011361280,
|
| 4 |
+
"total_size": 48022722560
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"language_model.lm_head.weight": "model-00010-of-00010.safetensors",
|
| 8 |
+
"language_model.model.embed_tokens.weight": "model-00001-of-00010.safetensors",
|
| 9 |
+
"language_model.model.layers.0.input_layernorm.weight": "model-00001-of-00010.safetensors",
|
| 10 |
+
"language_model.model.layers.0.mlp.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 11 |
+
"language_model.model.layers.0.mlp.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 12 |
+
"language_model.model.layers.0.mlp.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 13 |
+
"language_model.model.layers.0.post_attention_layernorm.weight": "model-00001-of-00010.safetensors",
|
| 14 |
+
"language_model.model.layers.0.self_attn.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 15 |
+
"language_model.model.layers.0.self_attn.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 16 |
+
"language_model.model.layers.0.self_attn.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 17 |
+
"language_model.model.layers.0.self_attn.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 18 |
+
"language_model.model.layers.1.input_layernorm.weight": "model-00001-of-00010.safetensors",
|
| 19 |
+
"language_model.model.layers.1.mlp.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 20 |
+
"language_model.model.layers.1.mlp.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 21 |
+
"language_model.model.layers.1.mlp.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 22 |
+
"language_model.model.layers.1.post_attention_layernorm.weight": "model-00001-of-00010.safetensors",
|
| 23 |
+
"language_model.model.layers.1.self_attn.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 24 |
+
"language_model.model.layers.1.self_attn.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 25 |
+
"language_model.model.layers.1.self_attn.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 26 |
+
"language_model.model.layers.1.self_attn.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 27 |
+
"language_model.model.layers.10.input_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 28 |
+
"language_model.model.layers.10.mlp.down_proj.weight": "model-00003-of-00010.safetensors",
|
| 29 |
+
"language_model.model.layers.10.mlp.gate_proj.weight": "model-00003-of-00010.safetensors",
|
| 30 |
+
"language_model.model.layers.10.mlp.up_proj.weight": "model-00003-of-00010.safetensors",
|
| 31 |
+
"language_model.model.layers.10.post_attention_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 32 |
+
"language_model.model.layers.10.self_attn.k_proj.weight": "model-00003-of-00010.safetensors",
|
| 33 |
+
"language_model.model.layers.10.self_attn.o_proj.weight": "model-00003-of-00010.safetensors",
|
| 34 |
+
"language_model.model.layers.10.self_attn.q_proj.weight": "model-00003-of-00010.safetensors",
|
| 35 |
+
"language_model.model.layers.10.self_attn.v_proj.weight": "model-00003-of-00010.safetensors",
|
| 36 |
+
"language_model.model.layers.11.input_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 37 |
+
"language_model.model.layers.11.mlp.down_proj.weight": "model-00004-of-00010.safetensors",
|
| 38 |
+
"language_model.model.layers.11.mlp.gate_proj.weight": "model-00004-of-00010.safetensors",
|
| 39 |
+
"language_model.model.layers.11.mlp.up_proj.weight": "model-00004-of-00010.safetensors",
|
| 40 |
+
"language_model.model.layers.11.post_attention_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 41 |
+
"language_model.model.layers.11.self_attn.k_proj.weight": "model-00003-of-00010.safetensors",
|
| 42 |
+
"language_model.model.layers.11.self_attn.o_proj.weight": "model-00003-of-00010.safetensors",
|
| 43 |
+
"language_model.model.layers.11.self_attn.q_proj.weight": "model-00003-of-00010.safetensors",
|
| 44 |
+
"language_model.model.layers.11.self_attn.v_proj.weight": "model-00003-of-00010.safetensors",
|
| 45 |
+
"language_model.model.layers.12.input_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 46 |
+
"language_model.model.layers.12.mlp.down_proj.weight": "model-00004-of-00010.safetensors",
|
| 47 |
+
"language_model.model.layers.12.mlp.gate_proj.weight": "model-00004-of-00010.safetensors",
|
| 48 |
+
"language_model.model.layers.12.mlp.up_proj.weight": "model-00004-of-00010.safetensors",
|
| 49 |
+
"language_model.model.layers.12.post_attention_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 50 |
+
"language_model.model.layers.12.self_attn.k_proj.weight": "model-00004-of-00010.safetensors",
|
| 51 |
+
"language_model.model.layers.12.self_attn.o_proj.weight": "model-00004-of-00010.safetensors",
|
| 52 |
+
"language_model.model.layers.12.self_attn.q_proj.weight": "model-00004-of-00010.safetensors",
|
| 53 |
+
"language_model.model.layers.12.self_attn.v_proj.weight": "model-00004-of-00010.safetensors",
|
| 54 |
+
"language_model.model.layers.13.input_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 55 |
+
"language_model.model.layers.13.mlp.down_proj.weight": "model-00004-of-00010.safetensors",
|
| 56 |
+
"language_model.model.layers.13.mlp.gate_proj.weight": "model-00004-of-00010.safetensors",
|
| 57 |
+
"language_model.model.layers.13.mlp.up_proj.weight": "model-00004-of-00010.safetensors",
|
| 58 |
+
"language_model.model.layers.13.post_attention_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 59 |
+
"language_model.model.layers.13.self_attn.k_proj.weight": "model-00004-of-00010.safetensors",
|
| 60 |
+
"language_model.model.layers.13.self_attn.o_proj.weight": "model-00004-of-00010.safetensors",
|
| 61 |
+
"language_model.model.layers.13.self_attn.q_proj.weight": "model-00004-of-00010.safetensors",
|
| 62 |
+
"language_model.model.layers.13.self_attn.v_proj.weight": "model-00004-of-00010.safetensors",
|
| 63 |
+
"language_model.model.layers.14.input_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 64 |
+
"language_model.model.layers.14.mlp.down_proj.weight": "model-00004-of-00010.safetensors",
|
| 65 |
+
"language_model.model.layers.14.mlp.gate_proj.weight": "model-00004-of-00010.safetensors",
|
| 66 |
+
"language_model.model.layers.14.mlp.up_proj.weight": "model-00004-of-00010.safetensors",
|
| 67 |
+
"language_model.model.layers.14.post_attention_layernorm.weight": "model-00004-of-00010.safetensors",
|
| 68 |
+
"language_model.model.layers.14.self_attn.k_proj.weight": "model-00004-of-00010.safetensors",
|
| 69 |
+
"language_model.model.layers.14.self_attn.o_proj.weight": "model-00004-of-00010.safetensors",
|
| 70 |
+
"language_model.model.layers.14.self_attn.q_proj.weight": "model-00004-of-00010.safetensors",
|
| 71 |
+
"language_model.model.layers.14.self_attn.v_proj.weight": "model-00004-of-00010.safetensors",
|
| 72 |
+
"language_model.model.layers.15.input_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 73 |
+
"language_model.model.layers.15.mlp.down_proj.weight": "model-00005-of-00010.safetensors",
|
| 74 |
+
"language_model.model.layers.15.mlp.gate_proj.weight": "model-00004-of-00010.safetensors",
|
| 75 |
+
"language_model.model.layers.15.mlp.up_proj.weight": "model-00005-of-00010.safetensors",
|
| 76 |
+
"language_model.model.layers.15.post_attention_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 77 |
+
"language_model.model.layers.15.self_attn.k_proj.weight": "model-00004-of-00010.safetensors",
|
| 78 |
+
"language_model.model.layers.15.self_attn.o_proj.weight": "model-00004-of-00010.safetensors",
|
| 79 |
+
"language_model.model.layers.15.self_attn.q_proj.weight": "model-00004-of-00010.safetensors",
|
| 80 |
+
"language_model.model.layers.15.self_attn.v_proj.weight": "model-00004-of-00010.safetensors",
|
| 81 |
+
"language_model.model.layers.16.input_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 82 |
+
"language_model.model.layers.16.mlp.down_proj.weight": "model-00005-of-00010.safetensors",
|
| 83 |
+
"language_model.model.layers.16.mlp.gate_proj.weight": "model-00005-of-00010.safetensors",
|
| 84 |
+
"language_model.model.layers.16.mlp.up_proj.weight": "model-00005-of-00010.safetensors",
|
| 85 |
+
"language_model.model.layers.16.post_attention_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 86 |
+
"language_model.model.layers.16.self_attn.k_proj.weight": "model-00005-of-00010.safetensors",
|
| 87 |
+
"language_model.model.layers.16.self_attn.o_proj.weight": "model-00005-of-00010.safetensors",
|
| 88 |
+
"language_model.model.layers.16.self_attn.q_proj.weight": "model-00005-of-00010.safetensors",
|
| 89 |
+
"language_model.model.layers.16.self_attn.v_proj.weight": "model-00005-of-00010.safetensors",
|
| 90 |
+
"language_model.model.layers.17.input_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 91 |
+
"language_model.model.layers.17.mlp.down_proj.weight": "model-00005-of-00010.safetensors",
|
| 92 |
+
"language_model.model.layers.17.mlp.gate_proj.weight": "model-00005-of-00010.safetensors",
|
| 93 |
+
"language_model.model.layers.17.mlp.up_proj.weight": "model-00005-of-00010.safetensors",
|
| 94 |
+
"language_model.model.layers.17.post_attention_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 95 |
+
"language_model.model.layers.17.self_attn.k_proj.weight": "model-00005-of-00010.safetensors",
|
| 96 |
+
"language_model.model.layers.17.self_attn.o_proj.weight": "model-00005-of-00010.safetensors",
|
| 97 |
+
"language_model.model.layers.17.self_attn.q_proj.weight": "model-00005-of-00010.safetensors",
|
| 98 |
+
"language_model.model.layers.17.self_attn.v_proj.weight": "model-00005-of-00010.safetensors",
|
| 99 |
+
"language_model.model.layers.18.input_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 100 |
+
"language_model.model.layers.18.mlp.down_proj.weight": "model-00005-of-00010.safetensors",
|
| 101 |
+
"language_model.model.layers.18.mlp.gate_proj.weight": "model-00005-of-00010.safetensors",
|
| 102 |
+
"language_model.model.layers.18.mlp.up_proj.weight": "model-00005-of-00010.safetensors",
|
| 103 |
+
"language_model.model.layers.18.post_attention_layernorm.weight": "model-00005-of-00010.safetensors",
|
| 104 |
+
"language_model.model.layers.18.self_attn.k_proj.weight": "model-00005-of-00010.safetensors",
|
| 105 |
+
"language_model.model.layers.18.self_attn.o_proj.weight": "model-00005-of-00010.safetensors",
|
| 106 |
+
"language_model.model.layers.18.self_attn.q_proj.weight": "model-00005-of-00010.safetensors",
|
| 107 |
+
"language_model.model.layers.18.self_attn.v_proj.weight": "model-00005-of-00010.safetensors",
|
| 108 |
+
"language_model.model.layers.19.input_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 109 |
+
"language_model.model.layers.19.mlp.down_proj.weight": "model-00006-of-00010.safetensors",
|
| 110 |
+
"language_model.model.layers.19.mlp.gate_proj.weight": "model-00005-of-00010.safetensors",
|
| 111 |
+
"language_model.model.layers.19.mlp.up_proj.weight": "model-00005-of-00010.safetensors",
|
| 112 |
+
"language_model.model.layers.19.post_attention_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 113 |
+
"language_model.model.layers.19.self_attn.k_proj.weight": "model-00005-of-00010.safetensors",
|
| 114 |
+
"language_model.model.layers.19.self_attn.o_proj.weight": "model-00005-of-00010.safetensors",
|
| 115 |
+
"language_model.model.layers.19.self_attn.q_proj.weight": "model-00005-of-00010.safetensors",
|
| 116 |
+
"language_model.model.layers.19.self_attn.v_proj.weight": "model-00005-of-00010.safetensors",
|
| 117 |
+
"language_model.model.layers.2.input_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 118 |
+
"language_model.model.layers.2.mlp.down_proj.weight": "model-00002-of-00010.safetensors",
|
| 119 |
+
"language_model.model.layers.2.mlp.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 120 |
+
"language_model.model.layers.2.mlp.up_proj.weight": "model-00002-of-00010.safetensors",
|
| 121 |
+
"language_model.model.layers.2.post_attention_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 122 |
+
"language_model.model.layers.2.self_attn.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 123 |
+
"language_model.model.layers.2.self_attn.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 124 |
+
"language_model.model.layers.2.self_attn.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 125 |
+
"language_model.model.layers.2.self_attn.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 126 |
+
"language_model.model.layers.20.input_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 127 |
+
"language_model.model.layers.20.mlp.down_proj.weight": "model-00006-of-00010.safetensors",
|
| 128 |
+
"language_model.model.layers.20.mlp.gate_proj.weight": "model-00006-of-00010.safetensors",
|
| 129 |
+
"language_model.model.layers.20.mlp.up_proj.weight": "model-00006-of-00010.safetensors",
|
| 130 |
+
"language_model.model.layers.20.post_attention_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 131 |
+
"language_model.model.layers.20.self_attn.k_proj.weight": "model-00006-of-00010.safetensors",
|
| 132 |
+
"language_model.model.layers.20.self_attn.o_proj.weight": "model-00006-of-00010.safetensors",
|
| 133 |
+
"language_model.model.layers.20.self_attn.q_proj.weight": "model-00006-of-00010.safetensors",
|
| 134 |
+
"language_model.model.layers.20.self_attn.v_proj.weight": "model-00006-of-00010.safetensors",
|
| 135 |
+
"language_model.model.layers.21.input_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 136 |
+
"language_model.model.layers.21.mlp.down_proj.weight": "model-00006-of-00010.safetensors",
|
| 137 |
+
"language_model.model.layers.21.mlp.gate_proj.weight": "model-00006-of-00010.safetensors",
|
| 138 |
+
"language_model.model.layers.21.mlp.up_proj.weight": "model-00006-of-00010.safetensors",
|
| 139 |
+
"language_model.model.layers.21.post_attention_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 140 |
+
"language_model.model.layers.21.self_attn.k_proj.weight": "model-00006-of-00010.safetensors",
|
| 141 |
+
"language_model.model.layers.21.self_attn.o_proj.weight": "model-00006-of-00010.safetensors",
|
| 142 |
+
"language_model.model.layers.21.self_attn.q_proj.weight": "model-00006-of-00010.safetensors",
|
| 143 |
+
"language_model.model.layers.21.self_attn.v_proj.weight": "model-00006-of-00010.safetensors",
|
| 144 |
+
"language_model.model.layers.22.input_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 145 |
+
"language_model.model.layers.22.mlp.down_proj.weight": "model-00006-of-00010.safetensors",
|
| 146 |
+
"language_model.model.layers.22.mlp.gate_proj.weight": "model-00006-of-00010.safetensors",
|
| 147 |
+
"language_model.model.layers.22.mlp.up_proj.weight": "model-00006-of-00010.safetensors",
|
| 148 |
+
"language_model.model.layers.22.post_attention_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 149 |
+
"language_model.model.layers.22.self_attn.k_proj.weight": "model-00006-of-00010.safetensors",
|
| 150 |
+
"language_model.model.layers.22.self_attn.o_proj.weight": "model-00006-of-00010.safetensors",
|
| 151 |
+
"language_model.model.layers.22.self_attn.q_proj.weight": "model-00006-of-00010.safetensors",
|
| 152 |
+
"language_model.model.layers.22.self_attn.v_proj.weight": "model-00006-of-00010.safetensors",
|
| 153 |
+
"language_model.model.layers.23.input_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 154 |
+
"language_model.model.layers.23.mlp.down_proj.weight": "model-00006-of-00010.safetensors",
|
| 155 |
+
"language_model.model.layers.23.mlp.gate_proj.weight": "model-00006-of-00010.safetensors",
|
| 156 |
+
"language_model.model.layers.23.mlp.up_proj.weight": "model-00006-of-00010.safetensors",
|
| 157 |
+
"language_model.model.layers.23.post_attention_layernorm.weight": "model-00006-of-00010.safetensors",
|
| 158 |
+
"language_model.model.layers.23.self_attn.k_proj.weight": "model-00006-of-00010.safetensors",
|
| 159 |
+
"language_model.model.layers.23.self_attn.o_proj.weight": "model-00006-of-00010.safetensors",
|
| 160 |
+
"language_model.model.layers.23.self_attn.q_proj.weight": "model-00006-of-00010.safetensors",
|
| 161 |
+
"language_model.model.layers.23.self_attn.v_proj.weight": "model-00006-of-00010.safetensors",
|
| 162 |
+
"language_model.model.layers.24.input_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 163 |
+
"language_model.model.layers.24.mlp.down_proj.weight": "model-00007-of-00010.safetensors",
|
| 164 |
+
"language_model.model.layers.24.mlp.gate_proj.weight": "model-00007-of-00010.safetensors",
|
| 165 |
+
"language_model.model.layers.24.mlp.up_proj.weight": "model-00007-of-00010.safetensors",
|
| 166 |
+
"language_model.model.layers.24.post_attention_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 167 |
+
"language_model.model.layers.24.self_attn.k_proj.weight": "model-00006-of-00010.safetensors",
|
| 168 |
+
"language_model.model.layers.24.self_attn.o_proj.weight": "model-00006-of-00010.safetensors",
|
| 169 |
+
"language_model.model.layers.24.self_attn.q_proj.weight": "model-00006-of-00010.safetensors",
|
| 170 |
+
"language_model.model.layers.24.self_attn.v_proj.weight": "model-00006-of-00010.safetensors",
|
| 171 |
+
"language_model.model.layers.25.input_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 172 |
+
"language_model.model.layers.25.mlp.down_proj.weight": "model-00007-of-00010.safetensors",
|
| 173 |
+
"language_model.model.layers.25.mlp.gate_proj.weight": "model-00007-of-00010.safetensors",
|
| 174 |
+
"language_model.model.layers.25.mlp.up_proj.weight": "model-00007-of-00010.safetensors",
|
| 175 |
+
"language_model.model.layers.25.post_attention_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 176 |
+
"language_model.model.layers.25.self_attn.k_proj.weight": "model-00007-of-00010.safetensors",
|
| 177 |
+
"language_model.model.layers.25.self_attn.o_proj.weight": "model-00007-of-00010.safetensors",
|
| 178 |
+
"language_model.model.layers.25.self_attn.q_proj.weight": "model-00007-of-00010.safetensors",
|
| 179 |
+
"language_model.model.layers.25.self_attn.v_proj.weight": "model-00007-of-00010.safetensors",
|
| 180 |
+
"language_model.model.layers.26.input_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 181 |
+
"language_model.model.layers.26.mlp.down_proj.weight": "model-00007-of-00010.safetensors",
|
| 182 |
+
"language_model.model.layers.26.mlp.gate_proj.weight": "model-00007-of-00010.safetensors",
|
| 183 |
+
"language_model.model.layers.26.mlp.up_proj.weight": "model-00007-of-00010.safetensors",
|
| 184 |
+
"language_model.model.layers.26.post_attention_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 185 |
+
"language_model.model.layers.26.self_attn.k_proj.weight": "model-00007-of-00010.safetensors",
|
| 186 |
+
"language_model.model.layers.26.self_attn.o_proj.weight": "model-00007-of-00010.safetensors",
|
| 187 |
+
"language_model.model.layers.26.self_attn.q_proj.weight": "model-00007-of-00010.safetensors",
|
| 188 |
+
"language_model.model.layers.26.self_attn.v_proj.weight": "model-00007-of-00010.safetensors",
|
| 189 |
+
"language_model.model.layers.27.input_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 190 |
+
"language_model.model.layers.27.mlp.down_proj.weight": "model-00007-of-00010.safetensors",
|
| 191 |
+
"language_model.model.layers.27.mlp.gate_proj.weight": "model-00007-of-00010.safetensors",
|
| 192 |
+
"language_model.model.layers.27.mlp.up_proj.weight": "model-00007-of-00010.safetensors",
|
| 193 |
+
"language_model.model.layers.27.post_attention_layernorm.weight": "model-00007-of-00010.safetensors",
|
| 194 |
+
"language_model.model.layers.27.self_attn.k_proj.weight": "model-00007-of-00010.safetensors",
|
| 195 |
+
"language_model.model.layers.27.self_attn.o_proj.weight": "model-00007-of-00010.safetensors",
|
| 196 |
+
"language_model.model.layers.27.self_attn.q_proj.weight": "model-00007-of-00010.safetensors",
|
| 197 |
+
"language_model.model.layers.27.self_attn.v_proj.weight": "model-00007-of-00010.safetensors",
|
| 198 |
+
"language_model.model.layers.28.input_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 199 |
+
"language_model.model.layers.28.mlp.down_proj.weight": "model-00008-of-00010.safetensors",
|
| 200 |
+
"language_model.model.layers.28.mlp.gate_proj.weight": "model-00007-of-00010.safetensors",
|
| 201 |
+
"language_model.model.layers.28.mlp.up_proj.weight": "model-00008-of-00010.safetensors",
|
| 202 |
+
"language_model.model.layers.28.post_attention_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 203 |
+
"language_model.model.layers.28.self_attn.k_proj.weight": "model-00007-of-00010.safetensors",
|
| 204 |
+
"language_model.model.layers.28.self_attn.o_proj.weight": "model-00007-of-00010.safetensors",
|
| 205 |
+
"language_model.model.layers.28.self_attn.q_proj.weight": "model-00007-of-00010.safetensors",
|
| 206 |
+
"language_model.model.layers.28.self_attn.v_proj.weight": "model-00007-of-00010.safetensors",
|
| 207 |
+
"language_model.model.layers.29.input_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 208 |
+
"language_model.model.layers.29.mlp.down_proj.weight": "model-00008-of-00010.safetensors",
|
| 209 |
+
"language_model.model.layers.29.mlp.gate_proj.weight": "model-00008-of-00010.safetensors",
|
| 210 |
+
"language_model.model.layers.29.mlp.up_proj.weight": "model-00008-of-00010.safetensors",
|
| 211 |
+
"language_model.model.layers.29.post_attention_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 212 |
+
"language_model.model.layers.29.self_attn.k_proj.weight": "model-00008-of-00010.safetensors",
|
| 213 |
+
"language_model.model.layers.29.self_attn.o_proj.weight": "model-00008-of-00010.safetensors",
|
| 214 |
+
"language_model.model.layers.29.self_attn.q_proj.weight": "model-00008-of-00010.safetensors",
|
| 215 |
+
"language_model.model.layers.29.self_attn.v_proj.weight": "model-00008-of-00010.safetensors",
|
| 216 |
+
"language_model.model.layers.3.input_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 217 |
+
"language_model.model.layers.3.mlp.down_proj.weight": "model-00002-of-00010.safetensors",
|
| 218 |
+
"language_model.model.layers.3.mlp.gate_proj.weight": "model-00002-of-00010.safetensors",
|
| 219 |
+
"language_model.model.layers.3.mlp.up_proj.weight": "model-00002-of-00010.safetensors",
|
| 220 |
+
"language_model.model.layers.3.post_attention_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 221 |
+
"language_model.model.layers.3.self_attn.k_proj.weight": "model-00002-of-00010.safetensors",
|
| 222 |
+
"language_model.model.layers.3.self_attn.o_proj.weight": "model-00002-of-00010.safetensors",
|
| 223 |
+
"language_model.model.layers.3.self_attn.q_proj.weight": "model-00002-of-00010.safetensors",
|
| 224 |
+
"language_model.model.layers.3.self_attn.v_proj.weight": "model-00002-of-00010.safetensors",
|
| 225 |
+
"language_model.model.layers.30.input_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 226 |
+
"language_model.model.layers.30.mlp.down_proj.weight": "model-00008-of-00010.safetensors",
|
| 227 |
+
"language_model.model.layers.30.mlp.gate_proj.weight": "model-00008-of-00010.safetensors",
|
| 228 |
+
"language_model.model.layers.30.mlp.up_proj.weight": "model-00008-of-00010.safetensors",
|
| 229 |
+
"language_model.model.layers.30.post_attention_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 230 |
+
"language_model.model.layers.30.self_attn.k_proj.weight": "model-00008-of-00010.safetensors",
|
| 231 |
+
"language_model.model.layers.30.self_attn.o_proj.weight": "model-00008-of-00010.safetensors",
|
| 232 |
+
"language_model.model.layers.30.self_attn.q_proj.weight": "model-00008-of-00010.safetensors",
|
| 233 |
+
"language_model.model.layers.30.self_attn.v_proj.weight": "model-00008-of-00010.safetensors",
|
| 234 |
+
"language_model.model.layers.31.input_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 235 |
+
"language_model.model.layers.31.mlp.down_proj.weight": "model-00008-of-00010.safetensors",
|
| 236 |
+
"language_model.model.layers.31.mlp.gate_proj.weight": "model-00008-of-00010.safetensors",
|
| 237 |
+
"language_model.model.layers.31.mlp.up_proj.weight": "model-00008-of-00010.safetensors",
|
| 238 |
+
"language_model.model.layers.31.post_attention_layernorm.weight": "model-00008-of-00010.safetensors",
|
| 239 |
+
"language_model.model.layers.31.self_attn.k_proj.weight": "model-00008-of-00010.safetensors",
|
| 240 |
+
"language_model.model.layers.31.self_attn.o_proj.weight": "model-00008-of-00010.safetensors",
|
| 241 |
+
"language_model.model.layers.31.self_attn.q_proj.weight": "model-00008-of-00010.safetensors",
|
| 242 |
+
"language_model.model.layers.31.self_attn.v_proj.weight": "model-00008-of-00010.safetensors",
|
| 243 |
+
"language_model.model.layers.32.input_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 244 |
+
"language_model.model.layers.32.mlp.down_proj.weight": "model-00009-of-00010.safetensors",
|
| 245 |
+
"language_model.model.layers.32.mlp.gate_proj.weight": "model-00008-of-00010.safetensors",
|
| 246 |
+
"language_model.model.layers.32.mlp.up_proj.weight": "model-00008-of-00010.safetensors",
|
| 247 |
+
"language_model.model.layers.32.post_attention_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 248 |
+
"language_model.model.layers.32.self_attn.k_proj.weight": "model-00008-of-00010.safetensors",
|
| 249 |
+
"language_model.model.layers.32.self_attn.o_proj.weight": "model-00008-of-00010.safetensors",
|
| 250 |
+
"language_model.model.layers.32.self_attn.q_proj.weight": "model-00008-of-00010.safetensors",
|
| 251 |
+
"language_model.model.layers.32.self_attn.v_proj.weight": "model-00008-of-00010.safetensors",
|
| 252 |
+
"language_model.model.layers.33.input_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 253 |
+
"language_model.model.layers.33.mlp.down_proj.weight": "model-00009-of-00010.safetensors",
|
| 254 |
+
"language_model.model.layers.33.mlp.gate_proj.weight": "model-00009-of-00010.safetensors",
|
| 255 |
+
"language_model.model.layers.33.mlp.up_proj.weight": "model-00009-of-00010.safetensors",
|
| 256 |
+
"language_model.model.layers.33.post_attention_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 257 |
+
"language_model.model.layers.33.self_attn.k_proj.weight": "model-00009-of-00010.safetensors",
|
| 258 |
+
"language_model.model.layers.33.self_attn.o_proj.weight": "model-00009-of-00010.safetensors",
|
| 259 |
+
"language_model.model.layers.33.self_attn.q_proj.weight": "model-00009-of-00010.safetensors",
|
| 260 |
+
"language_model.model.layers.33.self_attn.v_proj.weight": "model-00009-of-00010.safetensors",
|
| 261 |
+
"language_model.model.layers.34.input_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 262 |
+
"language_model.model.layers.34.mlp.down_proj.weight": "model-00009-of-00010.safetensors",
|
| 263 |
+
"language_model.model.layers.34.mlp.gate_proj.weight": "model-00009-of-00010.safetensors",
|
| 264 |
+
"language_model.model.layers.34.mlp.up_proj.weight": "model-00009-of-00010.safetensors",
|
| 265 |
+
"language_model.model.layers.34.post_attention_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 266 |
+
"language_model.model.layers.34.self_attn.k_proj.weight": "model-00009-of-00010.safetensors",
|
| 267 |
+
"language_model.model.layers.34.self_attn.o_proj.weight": "model-00009-of-00010.safetensors",
|
| 268 |
+
"language_model.model.layers.34.self_attn.q_proj.weight": "model-00009-of-00010.safetensors",
|
| 269 |
+
"language_model.model.layers.34.self_attn.v_proj.weight": "model-00009-of-00010.safetensors",
|
| 270 |
+
"language_model.model.layers.35.input_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 271 |
+
"language_model.model.layers.35.mlp.down_proj.weight": "model-00009-of-00010.safetensors",
|
| 272 |
+
"language_model.model.layers.35.mlp.gate_proj.weight": "model-00009-of-00010.safetensors",
|
| 273 |
+
"language_model.model.layers.35.mlp.up_proj.weight": "model-00009-of-00010.safetensors",
|
| 274 |
+
"language_model.model.layers.35.post_attention_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 275 |
+
"language_model.model.layers.35.self_attn.k_proj.weight": "model-00009-of-00010.safetensors",
|
| 276 |
+
"language_model.model.layers.35.self_attn.o_proj.weight": "model-00009-of-00010.safetensors",
|
| 277 |
+
"language_model.model.layers.35.self_attn.q_proj.weight": "model-00009-of-00010.safetensors",
|
| 278 |
+
"language_model.model.layers.35.self_attn.v_proj.weight": "model-00009-of-00010.safetensors",
|
| 279 |
+
"language_model.model.layers.36.input_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 280 |
+
"language_model.model.layers.36.mlp.down_proj.weight": "model-00009-of-00010.safetensors",
|
| 281 |
+
"language_model.model.layers.36.mlp.gate_proj.weight": "model-00009-of-00010.safetensors",
|
| 282 |
+
"language_model.model.layers.36.mlp.up_proj.weight": "model-00009-of-00010.safetensors",
|
| 283 |
+
"language_model.model.layers.36.post_attention_layernorm.weight": "model-00009-of-00010.safetensors",
|
| 284 |
+
"language_model.model.layers.36.self_attn.k_proj.weight": "model-00009-of-00010.safetensors",
|
| 285 |
+
"language_model.model.layers.36.self_attn.o_proj.weight": "model-00009-of-00010.safetensors",
|
| 286 |
+
"language_model.model.layers.36.self_attn.q_proj.weight": "model-00009-of-00010.safetensors",
|
| 287 |
+
"language_model.model.layers.36.self_attn.v_proj.weight": "model-00009-of-00010.safetensors",
|
| 288 |
+
"language_model.model.layers.37.input_layernorm.weight": "model-00010-of-00010.safetensors",
|
| 289 |
+
"language_model.model.layers.37.mlp.down_proj.weight": "model-00010-of-00010.safetensors",
|
| 290 |
+
"language_model.model.layers.37.mlp.gate_proj.weight": "model-00010-of-00010.safetensors",
|
| 291 |
+
"language_model.model.layers.37.mlp.up_proj.weight": "model-00010-of-00010.safetensors",
|
| 292 |
+
"language_model.model.layers.37.post_attention_layernorm.weight": "model-00010-of-00010.safetensors",
|
| 293 |
+
"language_model.model.layers.37.self_attn.k_proj.weight": "model-00009-of-00010.safetensors",
|
| 294 |
+
"language_model.model.layers.37.self_attn.o_proj.weight": "model-00009-of-00010.safetensors",
|
| 295 |
+
"language_model.model.layers.37.self_attn.q_proj.weight": "model-00009-of-00010.safetensors",
|
| 296 |
+
"language_model.model.layers.37.self_attn.v_proj.weight": "model-00009-of-00010.safetensors",
|
| 297 |
+
"language_model.model.layers.38.input_layernorm.weight": "model-00010-of-00010.safetensors",
|
| 298 |
+
"language_model.model.layers.38.mlp.down_proj.weight": "model-00010-of-00010.safetensors",
|
| 299 |
+
"language_model.model.layers.38.mlp.gate_proj.weight": "model-00010-of-00010.safetensors",
|
| 300 |
+
"language_model.model.layers.38.mlp.up_proj.weight": "model-00010-of-00010.safetensors",
|
| 301 |
+
"language_model.model.layers.38.post_attention_layernorm.weight": "model-00010-of-00010.safetensors",
|
| 302 |
+
"language_model.model.layers.38.self_attn.k_proj.weight": "model-00010-of-00010.safetensors",
|
| 303 |
+
"language_model.model.layers.38.self_attn.o_proj.weight": "model-00010-of-00010.safetensors",
|
| 304 |
+
"language_model.model.layers.38.self_attn.q_proj.weight": "model-00010-of-00010.safetensors",
|
| 305 |
+
"language_model.model.layers.38.self_attn.v_proj.weight": "model-00010-of-00010.safetensors",
|
| 306 |
+
"language_model.model.layers.39.input_layernorm.weight": "model-00010-of-00010.safetensors",
|
| 307 |
+
"language_model.model.layers.39.mlp.down_proj.weight": "model-00010-of-00010.safetensors",
|
| 308 |
+
"language_model.model.layers.39.mlp.gate_proj.weight": "model-00010-of-00010.safetensors",
|
| 309 |
+
"language_model.model.layers.39.mlp.up_proj.weight": "model-00010-of-00010.safetensors",
|
| 310 |
+
"language_model.model.layers.39.post_attention_layernorm.weight": "model-00010-of-00010.safetensors",
|
| 311 |
+
"language_model.model.layers.39.self_attn.k_proj.weight": "model-00010-of-00010.safetensors",
|
| 312 |
+
"language_model.model.layers.39.self_attn.o_proj.weight": "model-00010-of-00010.safetensors",
|
| 313 |
+
"language_model.model.layers.39.self_attn.q_proj.weight": "model-00010-of-00010.safetensors",
|
| 314 |
+
"language_model.model.layers.39.self_attn.v_proj.weight": "model-00010-of-00010.safetensors",
|
| 315 |
+
"language_model.model.layers.4.input_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 316 |
+
"language_model.model.layers.4.mlp.down_proj.weight": "model-00002-of-00010.safetensors",
|
| 317 |
+
"language_model.model.layers.4.mlp.gate_proj.weight": "model-00002-of-00010.safetensors",
|
| 318 |
+
"language_model.model.layers.4.mlp.up_proj.weight": "model-00002-of-00010.safetensors",
|
| 319 |
+
"language_model.model.layers.4.post_attention_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 320 |
+
"language_model.model.layers.4.self_attn.k_proj.weight": "model-00002-of-00010.safetensors",
|
| 321 |
+
"language_model.model.layers.4.self_attn.o_proj.weight": "model-00002-of-00010.safetensors",
|
| 322 |
+
"language_model.model.layers.4.self_attn.q_proj.weight": "model-00002-of-00010.safetensors",
|
| 323 |
+
"language_model.model.layers.4.self_attn.v_proj.weight": "model-00002-of-00010.safetensors",
|
| 324 |
+
"language_model.model.layers.5.input_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 325 |
+
"language_model.model.layers.5.mlp.down_proj.weight": "model-00002-of-00010.safetensors",
|
| 326 |
+
"language_model.model.layers.5.mlp.gate_proj.weight": "model-00002-of-00010.safetensors",
|
| 327 |
+
"language_model.model.layers.5.mlp.up_proj.weight": "model-00002-of-00010.safetensors",
|
| 328 |
+
"language_model.model.layers.5.post_attention_layernorm.weight": "model-00002-of-00010.safetensors",
|
| 329 |
+
"language_model.model.layers.5.self_attn.k_proj.weight": "model-00002-of-00010.safetensors",
|
| 330 |
+
"language_model.model.layers.5.self_attn.o_proj.weight": "model-00002-of-00010.safetensors",
|
| 331 |
+
"language_model.model.layers.5.self_attn.q_proj.weight": "model-00002-of-00010.safetensors",
|
| 332 |
+
"language_model.model.layers.5.self_attn.v_proj.weight": "model-00002-of-00010.safetensors",
|
| 333 |
+
"language_model.model.layers.6.input_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 334 |
+
"language_model.model.layers.6.mlp.down_proj.weight": "model-00003-of-00010.safetensors",
|
| 335 |
+
"language_model.model.layers.6.mlp.gate_proj.weight": "model-00002-of-00010.safetensors",
|
| 336 |
+
"language_model.model.layers.6.mlp.up_proj.weight": "model-00002-of-00010.safetensors",
|
| 337 |
+
"language_model.model.layers.6.post_attention_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 338 |
+
"language_model.model.layers.6.self_attn.k_proj.weight": "model-00002-of-00010.safetensors",
|
| 339 |
+
"language_model.model.layers.6.self_attn.o_proj.weight": "model-00002-of-00010.safetensors",
|
| 340 |
+
"language_model.model.layers.6.self_attn.q_proj.weight": "model-00002-of-00010.safetensors",
|
| 341 |
+
"language_model.model.layers.6.self_attn.v_proj.weight": "model-00002-of-00010.safetensors",
|
| 342 |
+
"language_model.model.layers.7.input_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 343 |
+
"language_model.model.layers.7.mlp.down_proj.weight": "model-00003-of-00010.safetensors",
|
| 344 |
+
"language_model.model.layers.7.mlp.gate_proj.weight": "model-00003-of-00010.safetensors",
|
| 345 |
+
"language_model.model.layers.7.mlp.up_proj.weight": "model-00003-of-00010.safetensors",
|
| 346 |
+
"language_model.model.layers.7.post_attention_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 347 |
+
"language_model.model.layers.7.self_attn.k_proj.weight": "model-00003-of-00010.safetensors",
|
| 348 |
+
"language_model.model.layers.7.self_attn.o_proj.weight": "model-00003-of-00010.safetensors",
|
| 349 |
+
"language_model.model.layers.7.self_attn.q_proj.weight": "model-00003-of-00010.safetensors",
|
| 350 |
+
"language_model.model.layers.7.self_attn.v_proj.weight": "model-00003-of-00010.safetensors",
|
| 351 |
+
"language_model.model.layers.8.input_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 352 |
+
"language_model.model.layers.8.mlp.down_proj.weight": "model-00003-of-00010.safetensors",
|
| 353 |
+
"language_model.model.layers.8.mlp.gate_proj.weight": "model-00003-of-00010.safetensors",
|
| 354 |
+
"language_model.model.layers.8.mlp.up_proj.weight": "model-00003-of-00010.safetensors",
|
| 355 |
+
"language_model.model.layers.8.post_attention_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 356 |
+
"language_model.model.layers.8.self_attn.k_proj.weight": "model-00003-of-00010.safetensors",
|
| 357 |
+
"language_model.model.layers.8.self_attn.o_proj.weight": "model-00003-of-00010.safetensors",
|
| 358 |
+
"language_model.model.layers.8.self_attn.q_proj.weight": "model-00003-of-00010.safetensors",
|
| 359 |
+
"language_model.model.layers.8.self_attn.v_proj.weight": "model-00003-of-00010.safetensors",
|
| 360 |
+
"language_model.model.layers.9.input_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 361 |
+
"language_model.model.layers.9.mlp.down_proj.weight": "model-00003-of-00010.safetensors",
|
| 362 |
+
"language_model.model.layers.9.mlp.gate_proj.weight": "model-00003-of-00010.safetensors",
|
| 363 |
+
"language_model.model.layers.9.mlp.up_proj.weight": "model-00003-of-00010.safetensors",
|
| 364 |
+
"language_model.model.layers.9.post_attention_layernorm.weight": "model-00003-of-00010.safetensors",
|
| 365 |
+
"language_model.model.layers.9.self_attn.k_proj.weight": "model-00003-of-00010.safetensors",
|
| 366 |
+
"language_model.model.layers.9.self_attn.o_proj.weight": "model-00003-of-00010.safetensors",
|
| 367 |
+
"language_model.model.layers.9.self_attn.q_proj.weight": "model-00003-of-00010.safetensors",
|
| 368 |
+
"language_model.model.layers.9.self_attn.v_proj.weight": "model-00003-of-00010.safetensors",
|
| 369 |
+
"language_model.model.norm.weight": "model-00010-of-00010.safetensors",
|
| 370 |
+
"multi_modal_projector.linear_1.weight": "model-00001-of-00010.safetensors",
|
| 371 |
+
"multi_modal_projector.linear_2.weight": "model-00001-of-00010.safetensors",
|
| 372 |
+
"multi_modal_projector.norm.weight": "model-00001-of-00010.safetensors",
|
| 373 |
+
"multi_modal_projector.patch_merger.merging_layer.weight": "model-00001-of-00010.safetensors",
|
| 374 |
+
"vision_tower.ln_pre.weight": "model-00001-of-00010.safetensors",
|
| 375 |
+
"vision_tower.patch_conv.weight": "model-00001-of-00010.safetensors",
|
| 376 |
+
"vision_tower.transformer.layers.0.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 377 |
+
"vision_tower.transformer.layers.0.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 378 |
+
"vision_tower.transformer.layers.0.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 379 |
+
"vision_tower.transformer.layers.0.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 380 |
+
"vision_tower.transformer.layers.0.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 381 |
+
"vision_tower.transformer.layers.0.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 382 |
+
"vision_tower.transformer.layers.0.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 383 |
+
"vision_tower.transformer.layers.0.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 384 |
+
"vision_tower.transformer.layers.0.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 385 |
+
"vision_tower.transformer.layers.1.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 386 |
+
"vision_tower.transformer.layers.1.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 387 |
+
"vision_tower.transformer.layers.1.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 388 |
+
"vision_tower.transformer.layers.1.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 389 |
+
"vision_tower.transformer.layers.1.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 390 |
+
"vision_tower.transformer.layers.1.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 391 |
+
"vision_tower.transformer.layers.1.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 392 |
+
"vision_tower.transformer.layers.1.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 393 |
+
"vision_tower.transformer.layers.1.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 394 |
+
"vision_tower.transformer.layers.10.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 395 |
+
"vision_tower.transformer.layers.10.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 396 |
+
"vision_tower.transformer.layers.10.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 397 |
+
"vision_tower.transformer.layers.10.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 398 |
+
"vision_tower.transformer.layers.10.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 399 |
+
"vision_tower.transformer.layers.10.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 400 |
+
"vision_tower.transformer.layers.10.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 401 |
+
"vision_tower.transformer.layers.10.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 402 |
+
"vision_tower.transformer.layers.10.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 403 |
+
"vision_tower.transformer.layers.11.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 404 |
+
"vision_tower.transformer.layers.11.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 405 |
+
"vision_tower.transformer.layers.11.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 406 |
+
"vision_tower.transformer.layers.11.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 407 |
+
"vision_tower.transformer.layers.11.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 408 |
+
"vision_tower.transformer.layers.11.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 409 |
+
"vision_tower.transformer.layers.11.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 410 |
+
"vision_tower.transformer.layers.11.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 411 |
+
"vision_tower.transformer.layers.11.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 412 |
+
"vision_tower.transformer.layers.12.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 413 |
+
"vision_tower.transformer.layers.12.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 414 |
+
"vision_tower.transformer.layers.12.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 415 |
+
"vision_tower.transformer.layers.12.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 416 |
+
"vision_tower.transformer.layers.12.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 417 |
+
"vision_tower.transformer.layers.12.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 418 |
+
"vision_tower.transformer.layers.12.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 419 |
+
"vision_tower.transformer.layers.12.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 420 |
+
"vision_tower.transformer.layers.12.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 421 |
+
"vision_tower.transformer.layers.13.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 422 |
+
"vision_tower.transformer.layers.13.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 423 |
+
"vision_tower.transformer.layers.13.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 424 |
+
"vision_tower.transformer.layers.13.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 425 |
+
"vision_tower.transformer.layers.13.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 426 |
+
"vision_tower.transformer.layers.13.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 427 |
+
"vision_tower.transformer.layers.13.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 428 |
+
"vision_tower.transformer.layers.13.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 429 |
+
"vision_tower.transformer.layers.13.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 430 |
+
"vision_tower.transformer.layers.14.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 431 |
+
"vision_tower.transformer.layers.14.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 432 |
+
"vision_tower.transformer.layers.14.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 433 |
+
"vision_tower.transformer.layers.14.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 434 |
+
"vision_tower.transformer.layers.14.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 435 |
+
"vision_tower.transformer.layers.14.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 436 |
+
"vision_tower.transformer.layers.14.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 437 |
+
"vision_tower.transformer.layers.14.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 438 |
+
"vision_tower.transformer.layers.14.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 439 |
+
"vision_tower.transformer.layers.15.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 440 |
+
"vision_tower.transformer.layers.15.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 441 |
+
"vision_tower.transformer.layers.15.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 442 |
+
"vision_tower.transformer.layers.15.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 443 |
+
"vision_tower.transformer.layers.15.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 444 |
+
"vision_tower.transformer.layers.15.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 445 |
+
"vision_tower.transformer.layers.15.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 446 |
+
"vision_tower.transformer.layers.15.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 447 |
+
"vision_tower.transformer.layers.15.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 448 |
+
"vision_tower.transformer.layers.16.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 449 |
+
"vision_tower.transformer.layers.16.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 450 |
+
"vision_tower.transformer.layers.16.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 451 |
+
"vision_tower.transformer.layers.16.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 452 |
+
"vision_tower.transformer.layers.16.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 453 |
+
"vision_tower.transformer.layers.16.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 454 |
+
"vision_tower.transformer.layers.16.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 455 |
+
"vision_tower.transformer.layers.16.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 456 |
+
"vision_tower.transformer.layers.16.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 457 |
+
"vision_tower.transformer.layers.17.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 458 |
+
"vision_tower.transformer.layers.17.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 459 |
+
"vision_tower.transformer.layers.17.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 460 |
+
"vision_tower.transformer.layers.17.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 461 |
+
"vision_tower.transformer.layers.17.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 462 |
+
"vision_tower.transformer.layers.17.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 463 |
+
"vision_tower.transformer.layers.17.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 464 |
+
"vision_tower.transformer.layers.17.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 465 |
+
"vision_tower.transformer.layers.17.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 466 |
+
"vision_tower.transformer.layers.18.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 467 |
+
"vision_tower.transformer.layers.18.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 468 |
+
"vision_tower.transformer.layers.18.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 469 |
+
"vision_tower.transformer.layers.18.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 470 |
+
"vision_tower.transformer.layers.18.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 471 |
+
"vision_tower.transformer.layers.18.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 472 |
+
"vision_tower.transformer.layers.18.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 473 |
+
"vision_tower.transformer.layers.18.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 474 |
+
"vision_tower.transformer.layers.18.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 475 |
+
"vision_tower.transformer.layers.19.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 476 |
+
"vision_tower.transformer.layers.19.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 477 |
+
"vision_tower.transformer.layers.19.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 478 |
+
"vision_tower.transformer.layers.19.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 479 |
+
"vision_tower.transformer.layers.19.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 480 |
+
"vision_tower.transformer.layers.19.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 481 |
+
"vision_tower.transformer.layers.19.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 482 |
+
"vision_tower.transformer.layers.19.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 483 |
+
"vision_tower.transformer.layers.19.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 484 |
+
"vision_tower.transformer.layers.2.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 485 |
+
"vision_tower.transformer.layers.2.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 486 |
+
"vision_tower.transformer.layers.2.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 487 |
+
"vision_tower.transformer.layers.2.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 488 |
+
"vision_tower.transformer.layers.2.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 489 |
+
"vision_tower.transformer.layers.2.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 490 |
+
"vision_tower.transformer.layers.2.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 491 |
+
"vision_tower.transformer.layers.2.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 492 |
+
"vision_tower.transformer.layers.2.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 493 |
+
"vision_tower.transformer.layers.20.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 494 |
+
"vision_tower.transformer.layers.20.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 495 |
+
"vision_tower.transformer.layers.20.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 496 |
+
"vision_tower.transformer.layers.20.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 497 |
+
"vision_tower.transformer.layers.20.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 498 |
+
"vision_tower.transformer.layers.20.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 499 |
+
"vision_tower.transformer.layers.20.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 500 |
+
"vision_tower.transformer.layers.20.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 501 |
+
"vision_tower.transformer.layers.20.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 502 |
+
"vision_tower.transformer.layers.21.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 503 |
+
"vision_tower.transformer.layers.21.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 504 |
+
"vision_tower.transformer.layers.21.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 505 |
+
"vision_tower.transformer.layers.21.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 506 |
+
"vision_tower.transformer.layers.21.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 507 |
+
"vision_tower.transformer.layers.21.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 508 |
+
"vision_tower.transformer.layers.21.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 509 |
+
"vision_tower.transformer.layers.21.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 510 |
+
"vision_tower.transformer.layers.21.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 511 |
+
"vision_tower.transformer.layers.22.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 512 |
+
"vision_tower.transformer.layers.22.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 513 |
+
"vision_tower.transformer.layers.22.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 514 |
+
"vision_tower.transformer.layers.22.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 515 |
+
"vision_tower.transformer.layers.22.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 516 |
+
"vision_tower.transformer.layers.22.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 517 |
+
"vision_tower.transformer.layers.22.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 518 |
+
"vision_tower.transformer.layers.22.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 519 |
+
"vision_tower.transformer.layers.22.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 520 |
+
"vision_tower.transformer.layers.23.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 521 |
+
"vision_tower.transformer.layers.23.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 522 |
+
"vision_tower.transformer.layers.23.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 523 |
+
"vision_tower.transformer.layers.23.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 524 |
+
"vision_tower.transformer.layers.23.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 525 |
+
"vision_tower.transformer.layers.23.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 526 |
+
"vision_tower.transformer.layers.23.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 527 |
+
"vision_tower.transformer.layers.23.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 528 |
+
"vision_tower.transformer.layers.23.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 529 |
+
"vision_tower.transformer.layers.3.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 530 |
+
"vision_tower.transformer.layers.3.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 531 |
+
"vision_tower.transformer.layers.3.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 532 |
+
"vision_tower.transformer.layers.3.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 533 |
+
"vision_tower.transformer.layers.3.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 534 |
+
"vision_tower.transformer.layers.3.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 535 |
+
"vision_tower.transformer.layers.3.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 536 |
+
"vision_tower.transformer.layers.3.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 537 |
+
"vision_tower.transformer.layers.3.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 538 |
+
"vision_tower.transformer.layers.4.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 539 |
+
"vision_tower.transformer.layers.4.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 540 |
+
"vision_tower.transformer.layers.4.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 541 |
+
"vision_tower.transformer.layers.4.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 542 |
+
"vision_tower.transformer.layers.4.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 543 |
+
"vision_tower.transformer.layers.4.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 544 |
+
"vision_tower.transformer.layers.4.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 545 |
+
"vision_tower.transformer.layers.4.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 546 |
+
"vision_tower.transformer.layers.4.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 547 |
+
"vision_tower.transformer.layers.5.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 548 |
+
"vision_tower.transformer.layers.5.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 549 |
+
"vision_tower.transformer.layers.5.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 550 |
+
"vision_tower.transformer.layers.5.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 551 |
+
"vision_tower.transformer.layers.5.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 552 |
+
"vision_tower.transformer.layers.5.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 553 |
+
"vision_tower.transformer.layers.5.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 554 |
+
"vision_tower.transformer.layers.5.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 555 |
+
"vision_tower.transformer.layers.5.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 556 |
+
"vision_tower.transformer.layers.6.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 557 |
+
"vision_tower.transformer.layers.6.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 558 |
+
"vision_tower.transformer.layers.6.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 559 |
+
"vision_tower.transformer.layers.6.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 560 |
+
"vision_tower.transformer.layers.6.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 561 |
+
"vision_tower.transformer.layers.6.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 562 |
+
"vision_tower.transformer.layers.6.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 563 |
+
"vision_tower.transformer.layers.6.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 564 |
+
"vision_tower.transformer.layers.6.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 565 |
+
"vision_tower.transformer.layers.7.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 566 |
+
"vision_tower.transformer.layers.7.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 567 |
+
"vision_tower.transformer.layers.7.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 568 |
+
"vision_tower.transformer.layers.7.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 569 |
+
"vision_tower.transformer.layers.7.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 570 |
+
"vision_tower.transformer.layers.7.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 571 |
+
"vision_tower.transformer.layers.7.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 572 |
+
"vision_tower.transformer.layers.7.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 573 |
+
"vision_tower.transformer.layers.7.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 574 |
+
"vision_tower.transformer.layers.8.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 575 |
+
"vision_tower.transformer.layers.8.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 576 |
+
"vision_tower.transformer.layers.8.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 577 |
+
"vision_tower.transformer.layers.8.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 578 |
+
"vision_tower.transformer.layers.8.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 579 |
+
"vision_tower.transformer.layers.8.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 580 |
+
"vision_tower.transformer.layers.8.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 581 |
+
"vision_tower.transformer.layers.8.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 582 |
+
"vision_tower.transformer.layers.8.ffn_norm.weight": "model-00001-of-00010.safetensors",
|
| 583 |
+
"vision_tower.transformer.layers.9.attention.k_proj.weight": "model-00001-of-00010.safetensors",
|
| 584 |
+
"vision_tower.transformer.layers.9.attention.o_proj.weight": "model-00001-of-00010.safetensors",
|
| 585 |
+
"vision_tower.transformer.layers.9.attention.q_proj.weight": "model-00001-of-00010.safetensors",
|
| 586 |
+
"vision_tower.transformer.layers.9.attention.v_proj.weight": "model-00001-of-00010.safetensors",
|
| 587 |
+
"vision_tower.transformer.layers.9.attention_norm.weight": "model-00001-of-00010.safetensors",
|
| 588 |
+
"vision_tower.transformer.layers.9.feed_forward.down_proj.weight": "model-00001-of-00010.safetensors",
|
| 589 |
+
"vision_tower.transformer.layers.9.feed_forward.gate_proj.weight": "model-00001-of-00010.safetensors",
|
| 590 |
+
"vision_tower.transformer.layers.9.feed_forward.up_proj.weight": "model-00001-of-00010.safetensors",
|
| 591 |
+
"vision_tower.transformer.layers.9.ffn_norm.weight": "model-00001-of-00010.safetensors"
|
| 592 |
+
}
|
| 593 |
+
}
|
tokenizer/chat_template.jinja
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set today = strftime_now("%Y-%m-%d") %}
|
| 2 |
+
{%- set default_system_message = "You are Mistral Small 3, a Large Language Model (LLM) created by Mistral AI, a French startup headquartered in Paris.\nYour knowledge base was last updated on 2023-10-01. The current date is " + today + ".\n\nWhen you're not sure about some information, you say that you don't have the information and don't make up anything.\nIf the user's question is not clear, ambiguous, or does not provide enough context for you to accurately answer the question, you do not try to answer it right away and you rather ask the user to clarify their request (e.g. \"What are some good restaurants around me?\" => \"Where are you?\" or \"When is the next flight to Tokyo\" => \"Where do you travel from?\")" %}
|
| 3 |
+
|
| 4 |
+
{{- bos_token }}
|
| 5 |
+
|
| 6 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 7 |
+
{%- if messages[0]['content'] is string %}
|
| 8 |
+
{%- set system_message = messages[0]['content'] %}
|
| 9 |
+
{%- else %}
|
| 10 |
+
{%- set system_message = messages[0]['content'][0]['text'] %}
|
| 11 |
+
{%- endif %}
|
| 12 |
+
{%- set loop_messages = messages[1:] %}
|
| 13 |
+
{%- else %}
|
| 14 |
+
{%- set system_message = default_system_message %}
|
| 15 |
+
{%- set loop_messages = messages %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{{- '[SYSTEM_PROMPT]' + system_message + '[/SYSTEM_PROMPT]' }}
|
| 18 |
+
|
| 19 |
+
{%- for message in loop_messages %}
|
| 20 |
+
{%- if message['role'] == 'user' %}
|
| 21 |
+
{%- if message['content'] is string %}
|
| 22 |
+
{{- '[INST]' + message['content'] + '[/INST]' }}
|
| 23 |
+
{%- else %}
|
| 24 |
+
{{- '[INST]' }}
|
| 25 |
+
{%- for block in message['content'] %}
|
| 26 |
+
{%- if block['type'] == 'text' %}
|
| 27 |
+
{{- block['text'] }}
|
| 28 |
+
{%- elif block['type'] in ['image', 'image_url'] %}
|
| 29 |
+
{{- '[IMG]' }}
|
| 30 |
+
{%- else %}
|
| 31 |
+
{{- raise_exception('Only text and image blocks are supported in message content!') }}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{%- endfor %}
|
| 34 |
+
{{- '[/INST]' }}
|
| 35 |
+
{%- endif %}
|
| 36 |
+
{%- elif message['role'] == 'system' %}
|
| 37 |
+
{%- if message['content'] is string %}
|
| 38 |
+
{{- '[SYSTEM_PROMPT]' + message['content'] + '[/SYSTEM_PROMPT]' }}
|
| 39 |
+
{%- else %}
|
| 40 |
+
{{- '[SYSTEM_PROMPT]' + message['content'][0]['text'] + '[/SYSTEM_PROMPT]' }}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- elif message['role'] == 'assistant' %}
|
| 43 |
+
{%- if message['content'] is string %}
|
| 44 |
+
{{- message['content'] + eos_token }}
|
| 45 |
+
{%- else %}
|
| 46 |
+
{{- message['content'][0]['text'] + eos_token }}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- else %}
|
| 49 |
+
{{- raise_exception('Only user, system and assistant roles are supported!') }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
tokenizer/preprocessor_config.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_size": null,
|
| 3 |
+
"data_format": "channels_first",
|
| 4 |
+
"default_to_square": true,
|
| 5 |
+
"device": null,
|
| 6 |
+
"disable_grouping": null,
|
| 7 |
+
"do_center_crop": null,
|
| 8 |
+
"do_convert_rgb": true,
|
| 9 |
+
"do_normalize": true,
|
| 10 |
+
"do_pad": null,
|
| 11 |
+
"do_rescale": true,
|
| 12 |
+
"do_resize": true,
|
| 13 |
+
"image_mean": [
|
| 14 |
+
0.48145466,
|
| 15 |
+
0.4578275,
|
| 16 |
+
0.40821073
|
| 17 |
+
],
|
| 18 |
+
"image_processor_type": "PixtralImageProcessorFast",
|
| 19 |
+
"image_std": [
|
| 20 |
+
0.26862954,
|
| 21 |
+
0.26130258,
|
| 22 |
+
0.27577711
|
| 23 |
+
],
|
| 24 |
+
"input_data_format": null,
|
| 25 |
+
"pad_size": null,
|
| 26 |
+
"patch_size": 14,
|
| 27 |
+
"processor_class": "PixtralProcessor",
|
| 28 |
+
"resample": 3,
|
| 29 |
+
"rescale_factor": 0.00392156862745098,
|
| 30 |
+
"return_tensors": null,
|
| 31 |
+
"size": {
|
| 32 |
+
"longest_edge": 1540
|
| 33 |
+
}
|
| 34 |
+
}
|
tokenizer/processor_config.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_break_token": "[IMG_BREAK]",
|
| 3 |
+
"image_end_token": "[IMG_END]",
|
| 4 |
+
"image_token": "[IMG]",
|
| 5 |
+
"patch_size": 14,
|
| 6 |
+
"processor_class": "PixtralProcessor",
|
| 7 |
+
"spatial_merge_size": 2
|
| 8 |
+
}
|
tokenizer/special_tokens_map.json
ADDED
|
@@ -0,0 +1,1032 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<unk>",
|
| 4 |
+
"<s>",
|
| 5 |
+
"</s>",
|
| 6 |
+
"[INST]",
|
| 7 |
+
"[/INST]",
|
| 8 |
+
"[AVAILABLE_TOOLS]",
|
| 9 |
+
"[/AVAILABLE_TOOLS]",
|
| 10 |
+
"[TOOL_RESULTS]",
|
| 11 |
+
"[/TOOL_RESULTS]",
|
| 12 |
+
"[TOOL_CALLS]",
|
| 13 |
+
"[IMG]",
|
| 14 |
+
"<pad>",
|
| 15 |
+
"[IMG_BREAK]",
|
| 16 |
+
"[IMG_END]",
|
| 17 |
+
"[PREFIX]",
|
| 18 |
+
"[MIDDLE]",
|
| 19 |
+
"[SUFFIX]",
|
| 20 |
+
"[SYSTEM_PROMPT]",
|
| 21 |
+
"[/SYSTEM_PROMPT]",
|
| 22 |
+
"[TOOL_CONTENT]",
|
| 23 |
+
"<SPECIAL_20>",
|
| 24 |
+
"<SPECIAL_21>",
|
| 25 |
+
"<SPECIAL_22>",
|
| 26 |
+
"<SPECIAL_23>",
|
| 27 |
+
"<SPECIAL_24>",
|
| 28 |
+
"<SPECIAL_25>",
|
| 29 |
+
"<SPECIAL_26>",
|
| 30 |
+
"<SPECIAL_27>",
|
| 31 |
+
"<SPECIAL_28>",
|
| 32 |
+
"<SPECIAL_29>",
|
| 33 |
+
"<SPECIAL_30>",
|
| 34 |
+
"<SPECIAL_31>",
|
| 35 |
+
"<SPECIAL_32>",
|
| 36 |
+
"<SPECIAL_33>",
|
| 37 |
+
"<SPECIAL_34>",
|
| 38 |
+
"<SPECIAL_35>",
|
| 39 |
+
"<SPECIAL_36>",
|
| 40 |
+
"<SPECIAL_37>",
|
| 41 |
+
"<SPECIAL_38>",
|
| 42 |
+
"<SPECIAL_39>",
|
| 43 |
+
"<SPECIAL_40>",
|
| 44 |
+
"<SPECIAL_41>",
|
| 45 |
+
"<SPECIAL_42>",
|
| 46 |
+
"<SPECIAL_43>",
|
| 47 |
+
"<SPECIAL_44>",
|
| 48 |
+
"<SPECIAL_45>",
|
| 49 |
+
"<SPECIAL_46>",
|
| 50 |
+
"<SPECIAL_47>",
|
| 51 |
+
"<SPECIAL_48>",
|
| 52 |
+
"<SPECIAL_49>",
|
| 53 |
+
"<SPECIAL_50>",
|
| 54 |
+
"<SPECIAL_51>",
|
| 55 |
+
"<SPECIAL_52>",
|
| 56 |
+
"<SPECIAL_53>",
|
| 57 |
+
"<SPECIAL_54>",
|
| 58 |
+
"<SPECIAL_55>",
|
| 59 |
+
"<SPECIAL_56>",
|
| 60 |
+
"<SPECIAL_57>",
|
| 61 |
+
"<SPECIAL_58>",
|
| 62 |
+
"<SPECIAL_59>",
|
| 63 |
+
"<SPECIAL_60>",
|
| 64 |
+
"<SPECIAL_61>",
|
| 65 |
+
"<SPECIAL_62>",
|
| 66 |
+
"<SPECIAL_63>",
|
| 67 |
+
"<SPECIAL_64>",
|
| 68 |
+
"<SPECIAL_65>",
|
| 69 |
+
"<SPECIAL_66>",
|
| 70 |
+
"<SPECIAL_67>",
|
| 71 |
+
"<SPECIAL_68>",
|
| 72 |
+
"<SPECIAL_69>",
|
| 73 |
+
"<SPECIAL_70>",
|
| 74 |
+
"<SPECIAL_71>",
|
| 75 |
+
"<SPECIAL_72>",
|
| 76 |
+
"<SPECIAL_73>",
|
| 77 |
+
"<SPECIAL_74>",
|
| 78 |
+
"<SPECIAL_75>",
|
| 79 |
+
"<SPECIAL_76>",
|
| 80 |
+
"<SPECIAL_77>",
|
| 81 |
+
"<SPECIAL_78>",
|
| 82 |
+
"<SPECIAL_79>",
|
| 83 |
+
"<SPECIAL_80>",
|
| 84 |
+
"<SPECIAL_81>",
|
| 85 |
+
"<SPECIAL_82>",
|
| 86 |
+
"<SPECIAL_83>",
|
| 87 |
+
"<SPECIAL_84>",
|
| 88 |
+
"<SPECIAL_85>",
|
| 89 |
+
"<SPECIAL_86>",
|
| 90 |
+
"<SPECIAL_87>",
|
| 91 |
+
"<SPECIAL_88>",
|
| 92 |
+
"<SPECIAL_89>",
|
| 93 |
+
"<SPECIAL_90>",
|
| 94 |
+
"<SPECIAL_91>",
|
| 95 |
+
"<SPECIAL_92>",
|
| 96 |
+
"<SPECIAL_93>",
|
| 97 |
+
"<SPECIAL_94>",
|
| 98 |
+
"<SPECIAL_95>",
|
| 99 |
+
"<SPECIAL_96>",
|
| 100 |
+
"<SPECIAL_97>",
|
| 101 |
+
"<SPECIAL_98>",
|
| 102 |
+
"<SPECIAL_99>",
|
| 103 |
+
"<SPECIAL_100>",
|
| 104 |
+
"<SPECIAL_101>",
|
| 105 |
+
"<SPECIAL_102>",
|
| 106 |
+
"<SPECIAL_103>",
|
| 107 |
+
"<SPECIAL_104>",
|
| 108 |
+
"<SPECIAL_105>",
|
| 109 |
+
"<SPECIAL_106>",
|
| 110 |
+
"<SPECIAL_107>",
|
| 111 |
+
"<SPECIAL_108>",
|
| 112 |
+
"<SPECIAL_109>",
|
| 113 |
+
"<SPECIAL_110>",
|
| 114 |
+
"<SPECIAL_111>",
|
| 115 |
+
"<SPECIAL_112>",
|
| 116 |
+
"<SPECIAL_113>",
|
| 117 |
+
"<SPECIAL_114>",
|
| 118 |
+
"<SPECIAL_115>",
|
| 119 |
+
"<SPECIAL_116>",
|
| 120 |
+
"<SPECIAL_117>",
|
| 121 |
+
"<SPECIAL_118>",
|
| 122 |
+
"<SPECIAL_119>",
|
| 123 |
+
"<SPECIAL_120>",
|
| 124 |
+
"<SPECIAL_121>",
|
| 125 |
+
"<SPECIAL_122>",
|
| 126 |
+
"<SPECIAL_123>",
|
| 127 |
+
"<SPECIAL_124>",
|
| 128 |
+
"<SPECIAL_125>",
|
| 129 |
+
"<SPECIAL_126>",
|
| 130 |
+
"<SPECIAL_127>",
|
| 131 |
+
"<SPECIAL_128>",
|
| 132 |
+
"<SPECIAL_129>",
|
| 133 |
+
"<SPECIAL_130>",
|
| 134 |
+
"<SPECIAL_131>",
|
| 135 |
+
"<SPECIAL_132>",
|
| 136 |
+
"<SPECIAL_133>",
|
| 137 |
+
"<SPECIAL_134>",
|
| 138 |
+
"<SPECIAL_135>",
|
| 139 |
+
"<SPECIAL_136>",
|
| 140 |
+
"<SPECIAL_137>",
|
| 141 |
+
"<SPECIAL_138>",
|
| 142 |
+
"<SPECIAL_139>",
|
| 143 |
+
"<SPECIAL_140>",
|
| 144 |
+
"<SPECIAL_141>",
|
| 145 |
+
"<SPECIAL_142>",
|
| 146 |
+
"<SPECIAL_143>",
|
| 147 |
+
"<SPECIAL_144>",
|
| 148 |
+
"<SPECIAL_145>",
|
| 149 |
+
"<SPECIAL_146>",
|
| 150 |
+
"<SPECIAL_147>",
|
| 151 |
+
"<SPECIAL_148>",
|
| 152 |
+
"<SPECIAL_149>",
|
| 153 |
+
"<SPECIAL_150>",
|
| 154 |
+
"<SPECIAL_151>",
|
| 155 |
+
"<SPECIAL_152>",
|
| 156 |
+
"<SPECIAL_153>",
|
| 157 |
+
"<SPECIAL_154>",
|
| 158 |
+
"<SPECIAL_155>",
|
| 159 |
+
"<SPECIAL_156>",
|
| 160 |
+
"<SPECIAL_157>",
|
| 161 |
+
"<SPECIAL_158>",
|
| 162 |
+
"<SPECIAL_159>",
|
| 163 |
+
"<SPECIAL_160>",
|
| 164 |
+
"<SPECIAL_161>",
|
| 165 |
+
"<SPECIAL_162>",
|
| 166 |
+
"<SPECIAL_163>",
|
| 167 |
+
"<SPECIAL_164>",
|
| 168 |
+
"<SPECIAL_165>",
|
| 169 |
+
"<SPECIAL_166>",
|
| 170 |
+
"<SPECIAL_167>",
|
| 171 |
+
"<SPECIAL_168>",
|
| 172 |
+
"<SPECIAL_169>",
|
| 173 |
+
"<SPECIAL_170>",
|
| 174 |
+
"<SPECIAL_171>",
|
| 175 |
+
"<SPECIAL_172>",
|
| 176 |
+
"<SPECIAL_173>",
|
| 177 |
+
"<SPECIAL_174>",
|
| 178 |
+
"<SPECIAL_175>",
|
| 179 |
+
"<SPECIAL_176>",
|
| 180 |
+
"<SPECIAL_177>",
|
| 181 |
+
"<SPECIAL_178>",
|
| 182 |
+
"<SPECIAL_179>",
|
| 183 |
+
"<SPECIAL_180>",
|
| 184 |
+
"<SPECIAL_181>",
|
| 185 |
+
"<SPECIAL_182>",
|
| 186 |
+
"<SPECIAL_183>",
|
| 187 |
+
"<SPECIAL_184>",
|
| 188 |
+
"<SPECIAL_185>",
|
| 189 |
+
"<SPECIAL_186>",
|
| 190 |
+
"<SPECIAL_187>",
|
| 191 |
+
"<SPECIAL_188>",
|
| 192 |
+
"<SPECIAL_189>",
|
| 193 |
+
"<SPECIAL_190>",
|
| 194 |
+
"<SPECIAL_191>",
|
| 195 |
+
"<SPECIAL_192>",
|
| 196 |
+
"<SPECIAL_193>",
|
| 197 |
+
"<SPECIAL_194>",
|
| 198 |
+
"<SPECIAL_195>",
|
| 199 |
+
"<SPECIAL_196>",
|
| 200 |
+
"<SPECIAL_197>",
|
| 201 |
+
"<SPECIAL_198>",
|
| 202 |
+
"<SPECIAL_199>",
|
| 203 |
+
"<SPECIAL_200>",
|
| 204 |
+
"<SPECIAL_201>",
|
| 205 |
+
"<SPECIAL_202>",
|
| 206 |
+
"<SPECIAL_203>",
|
| 207 |
+
"<SPECIAL_204>",
|
| 208 |
+
"<SPECIAL_205>",
|
| 209 |
+
"<SPECIAL_206>",
|
| 210 |
+
"<SPECIAL_207>",
|
| 211 |
+
"<SPECIAL_208>",
|
| 212 |
+
"<SPECIAL_209>",
|
| 213 |
+
"<SPECIAL_210>",
|
| 214 |
+
"<SPECIAL_211>",
|
| 215 |
+
"<SPECIAL_212>",
|
| 216 |
+
"<SPECIAL_213>",
|
| 217 |
+
"<SPECIAL_214>",
|
| 218 |
+
"<SPECIAL_215>",
|
| 219 |
+
"<SPECIAL_216>",
|
| 220 |
+
"<SPECIAL_217>",
|
| 221 |
+
"<SPECIAL_218>",
|
| 222 |
+
"<SPECIAL_219>",
|
| 223 |
+
"<SPECIAL_220>",
|
| 224 |
+
"<SPECIAL_221>",
|
| 225 |
+
"<SPECIAL_222>",
|
| 226 |
+
"<SPECIAL_223>",
|
| 227 |
+
"<SPECIAL_224>",
|
| 228 |
+
"<SPECIAL_225>",
|
| 229 |
+
"<SPECIAL_226>",
|
| 230 |
+
"<SPECIAL_227>",
|
| 231 |
+
"<SPECIAL_228>",
|
| 232 |
+
"<SPECIAL_229>",
|
| 233 |
+
"<SPECIAL_230>",
|
| 234 |
+
"<SPECIAL_231>",
|
| 235 |
+
"<SPECIAL_232>",
|
| 236 |
+
"<SPECIAL_233>",
|
| 237 |
+
"<SPECIAL_234>",
|
| 238 |
+
"<SPECIAL_235>",
|
| 239 |
+
"<SPECIAL_236>",
|
| 240 |
+
"<SPECIAL_237>",
|
| 241 |
+
"<SPECIAL_238>",
|
| 242 |
+
"<SPECIAL_239>",
|
| 243 |
+
"<SPECIAL_240>",
|
| 244 |
+
"<SPECIAL_241>",
|
| 245 |
+
"<SPECIAL_242>",
|
| 246 |
+
"<SPECIAL_243>",
|
| 247 |
+
"<SPECIAL_244>",
|
| 248 |
+
"<SPECIAL_245>",
|
| 249 |
+
"<SPECIAL_246>",
|
| 250 |
+
"<SPECIAL_247>",
|
| 251 |
+
"<SPECIAL_248>",
|
| 252 |
+
"<SPECIAL_249>",
|
| 253 |
+
"<SPECIAL_250>",
|
| 254 |
+
"<SPECIAL_251>",
|
| 255 |
+
"<SPECIAL_252>",
|
| 256 |
+
"<SPECIAL_253>",
|
| 257 |
+
"<SPECIAL_254>",
|
| 258 |
+
"<SPECIAL_255>",
|
| 259 |
+
"<SPECIAL_256>",
|
| 260 |
+
"<SPECIAL_257>",
|
| 261 |
+
"<SPECIAL_258>",
|
| 262 |
+
"<SPECIAL_259>",
|
| 263 |
+
"<SPECIAL_260>",
|
| 264 |
+
"<SPECIAL_261>",
|
| 265 |
+
"<SPECIAL_262>",
|
| 266 |
+
"<SPECIAL_263>",
|
| 267 |
+
"<SPECIAL_264>",
|
| 268 |
+
"<SPECIAL_265>",
|
| 269 |
+
"<SPECIAL_266>",
|
| 270 |
+
"<SPECIAL_267>",
|
| 271 |
+
"<SPECIAL_268>",
|
| 272 |
+
"<SPECIAL_269>",
|
| 273 |
+
"<SPECIAL_270>",
|
| 274 |
+
"<SPECIAL_271>",
|
| 275 |
+
"<SPECIAL_272>",
|
| 276 |
+
"<SPECIAL_273>",
|
| 277 |
+
"<SPECIAL_274>",
|
| 278 |
+
"<SPECIAL_275>",
|
| 279 |
+
"<SPECIAL_276>",
|
| 280 |
+
"<SPECIAL_277>",
|
| 281 |
+
"<SPECIAL_278>",
|
| 282 |
+
"<SPECIAL_279>",
|
| 283 |
+
"<SPECIAL_280>",
|
| 284 |
+
"<SPECIAL_281>",
|
| 285 |
+
"<SPECIAL_282>",
|
| 286 |
+
"<SPECIAL_283>",
|
| 287 |
+
"<SPECIAL_284>",
|
| 288 |
+
"<SPECIAL_285>",
|
| 289 |
+
"<SPECIAL_286>",
|
| 290 |
+
"<SPECIAL_287>",
|
| 291 |
+
"<SPECIAL_288>",
|
| 292 |
+
"<SPECIAL_289>",
|
| 293 |
+
"<SPECIAL_290>",
|
| 294 |
+
"<SPECIAL_291>",
|
| 295 |
+
"<SPECIAL_292>",
|
| 296 |
+
"<SPECIAL_293>",
|
| 297 |
+
"<SPECIAL_294>",
|
| 298 |
+
"<SPECIAL_295>",
|
| 299 |
+
"<SPECIAL_296>",
|
| 300 |
+
"<SPECIAL_297>",
|
| 301 |
+
"<SPECIAL_298>",
|
| 302 |
+
"<SPECIAL_299>",
|
| 303 |
+
"<SPECIAL_300>",
|
| 304 |
+
"<SPECIAL_301>",
|
| 305 |
+
"<SPECIAL_302>",
|
| 306 |
+
"<SPECIAL_303>",
|
| 307 |
+
"<SPECIAL_304>",
|
| 308 |
+
"<SPECIAL_305>",
|
| 309 |
+
"<SPECIAL_306>",
|
| 310 |
+
"<SPECIAL_307>",
|
| 311 |
+
"<SPECIAL_308>",
|
| 312 |
+
"<SPECIAL_309>",
|
| 313 |
+
"<SPECIAL_310>",
|
| 314 |
+
"<SPECIAL_311>",
|
| 315 |
+
"<SPECIAL_312>",
|
| 316 |
+
"<SPECIAL_313>",
|
| 317 |
+
"<SPECIAL_314>",
|
| 318 |
+
"<SPECIAL_315>",
|
| 319 |
+
"<SPECIAL_316>",
|
| 320 |
+
"<SPECIAL_317>",
|
| 321 |
+
"<SPECIAL_318>",
|
| 322 |
+
"<SPECIAL_319>",
|
| 323 |
+
"<SPECIAL_320>",
|
| 324 |
+
"<SPECIAL_321>",
|
| 325 |
+
"<SPECIAL_322>",
|
| 326 |
+
"<SPECIAL_323>",
|
| 327 |
+
"<SPECIAL_324>",
|
| 328 |
+
"<SPECIAL_325>",
|
| 329 |
+
"<SPECIAL_326>",
|
| 330 |
+
"<SPECIAL_327>",
|
| 331 |
+
"<SPECIAL_328>",
|
| 332 |
+
"<SPECIAL_329>",
|
| 333 |
+
"<SPECIAL_330>",
|
| 334 |
+
"<SPECIAL_331>",
|
| 335 |
+
"<SPECIAL_332>",
|
| 336 |
+
"<SPECIAL_333>",
|
| 337 |
+
"<SPECIAL_334>",
|
| 338 |
+
"<SPECIAL_335>",
|
| 339 |
+
"<SPECIAL_336>",
|
| 340 |
+
"<SPECIAL_337>",
|
| 341 |
+
"<SPECIAL_338>",
|
| 342 |
+
"<SPECIAL_339>",
|
| 343 |
+
"<SPECIAL_340>",
|
| 344 |
+
"<SPECIAL_341>",
|
| 345 |
+
"<SPECIAL_342>",
|
| 346 |
+
"<SPECIAL_343>",
|
| 347 |
+
"<SPECIAL_344>",
|
| 348 |
+
"<SPECIAL_345>",
|
| 349 |
+
"<SPECIAL_346>",
|
| 350 |
+
"<SPECIAL_347>",
|
| 351 |
+
"<SPECIAL_348>",
|
| 352 |
+
"<SPECIAL_349>",
|
| 353 |
+
"<SPECIAL_350>",
|
| 354 |
+
"<SPECIAL_351>",
|
| 355 |
+
"<SPECIAL_352>",
|
| 356 |
+
"<SPECIAL_353>",
|
| 357 |
+
"<SPECIAL_354>",
|
| 358 |
+
"<SPECIAL_355>",
|
| 359 |
+
"<SPECIAL_356>",
|
| 360 |
+
"<SPECIAL_357>",
|
| 361 |
+
"<SPECIAL_358>",
|
| 362 |
+
"<SPECIAL_359>",
|
| 363 |
+
"<SPECIAL_360>",
|
| 364 |
+
"<SPECIAL_361>",
|
| 365 |
+
"<SPECIAL_362>",
|
| 366 |
+
"<SPECIAL_363>",
|
| 367 |
+
"<SPECIAL_364>",
|
| 368 |
+
"<SPECIAL_365>",
|
| 369 |
+
"<SPECIAL_366>",
|
| 370 |
+
"<SPECIAL_367>",
|
| 371 |
+
"<SPECIAL_368>",
|
| 372 |
+
"<SPECIAL_369>",
|
| 373 |
+
"<SPECIAL_370>",
|
| 374 |
+
"<SPECIAL_371>",
|
| 375 |
+
"<SPECIAL_372>",
|
| 376 |
+
"<SPECIAL_373>",
|
| 377 |
+
"<SPECIAL_374>",
|
| 378 |
+
"<SPECIAL_375>",
|
| 379 |
+
"<SPECIAL_376>",
|
| 380 |
+
"<SPECIAL_377>",
|
| 381 |
+
"<SPECIAL_378>",
|
| 382 |
+
"<SPECIAL_379>",
|
| 383 |
+
"<SPECIAL_380>",
|
| 384 |
+
"<SPECIAL_381>",
|
| 385 |
+
"<SPECIAL_382>",
|
| 386 |
+
"<SPECIAL_383>",
|
| 387 |
+
"<SPECIAL_384>",
|
| 388 |
+
"<SPECIAL_385>",
|
| 389 |
+
"<SPECIAL_386>",
|
| 390 |
+
"<SPECIAL_387>",
|
| 391 |
+
"<SPECIAL_388>",
|
| 392 |
+
"<SPECIAL_389>",
|
| 393 |
+
"<SPECIAL_390>",
|
| 394 |
+
"<SPECIAL_391>",
|
| 395 |
+
"<SPECIAL_392>",
|
| 396 |
+
"<SPECIAL_393>",
|
| 397 |
+
"<SPECIAL_394>",
|
| 398 |
+
"<SPECIAL_395>",
|
| 399 |
+
"<SPECIAL_396>",
|
| 400 |
+
"<SPECIAL_397>",
|
| 401 |
+
"<SPECIAL_398>",
|
| 402 |
+
"<SPECIAL_399>",
|
| 403 |
+
"<SPECIAL_400>",
|
| 404 |
+
"<SPECIAL_401>",
|
| 405 |
+
"<SPECIAL_402>",
|
| 406 |
+
"<SPECIAL_403>",
|
| 407 |
+
"<SPECIAL_404>",
|
| 408 |
+
"<SPECIAL_405>",
|
| 409 |
+
"<SPECIAL_406>",
|
| 410 |
+
"<SPECIAL_407>",
|
| 411 |
+
"<SPECIAL_408>",
|
| 412 |
+
"<SPECIAL_409>",
|
| 413 |
+
"<SPECIAL_410>",
|
| 414 |
+
"<SPECIAL_411>",
|
| 415 |
+
"<SPECIAL_412>",
|
| 416 |
+
"<SPECIAL_413>",
|
| 417 |
+
"<SPECIAL_414>",
|
| 418 |
+
"<SPECIAL_415>",
|
| 419 |
+
"<SPECIAL_416>",
|
| 420 |
+
"<SPECIAL_417>",
|
| 421 |
+
"<SPECIAL_418>",
|
| 422 |
+
"<SPECIAL_419>",
|
| 423 |
+
"<SPECIAL_420>",
|
| 424 |
+
"<SPECIAL_421>",
|
| 425 |
+
"<SPECIAL_422>",
|
| 426 |
+
"<SPECIAL_423>",
|
| 427 |
+
"<SPECIAL_424>",
|
| 428 |
+
"<SPECIAL_425>",
|
| 429 |
+
"<SPECIAL_426>",
|
| 430 |
+
"<SPECIAL_427>",
|
| 431 |
+
"<SPECIAL_428>",
|
| 432 |
+
"<SPECIAL_429>",
|
| 433 |
+
"<SPECIAL_430>",
|
| 434 |
+
"<SPECIAL_431>",
|
| 435 |
+
"<SPECIAL_432>",
|
| 436 |
+
"<SPECIAL_433>",
|
| 437 |
+
"<SPECIAL_434>",
|
| 438 |
+
"<SPECIAL_435>",
|
| 439 |
+
"<SPECIAL_436>",
|
| 440 |
+
"<SPECIAL_437>",
|
| 441 |
+
"<SPECIAL_438>",
|
| 442 |
+
"<SPECIAL_439>",
|
| 443 |
+
"<SPECIAL_440>",
|
| 444 |
+
"<SPECIAL_441>",
|
| 445 |
+
"<SPECIAL_442>",
|
| 446 |
+
"<SPECIAL_443>",
|
| 447 |
+
"<SPECIAL_444>",
|
| 448 |
+
"<SPECIAL_445>",
|
| 449 |
+
"<SPECIAL_446>",
|
| 450 |
+
"<SPECIAL_447>",
|
| 451 |
+
"<SPECIAL_448>",
|
| 452 |
+
"<SPECIAL_449>",
|
| 453 |
+
"<SPECIAL_450>",
|
| 454 |
+
"<SPECIAL_451>",
|
| 455 |
+
"<SPECIAL_452>",
|
| 456 |
+
"<SPECIAL_453>",
|
| 457 |
+
"<SPECIAL_454>",
|
| 458 |
+
"<SPECIAL_455>",
|
| 459 |
+
"<SPECIAL_456>",
|
| 460 |
+
"<SPECIAL_457>",
|
| 461 |
+
"<SPECIAL_458>",
|
| 462 |
+
"<SPECIAL_459>",
|
| 463 |
+
"<SPECIAL_460>",
|
| 464 |
+
"<SPECIAL_461>",
|
| 465 |
+
"<SPECIAL_462>",
|
| 466 |
+
"<SPECIAL_463>",
|
| 467 |
+
"<SPECIAL_464>",
|
| 468 |
+
"<SPECIAL_465>",
|
| 469 |
+
"<SPECIAL_466>",
|
| 470 |
+
"<SPECIAL_467>",
|
| 471 |
+
"<SPECIAL_468>",
|
| 472 |
+
"<SPECIAL_469>",
|
| 473 |
+
"<SPECIAL_470>",
|
| 474 |
+
"<SPECIAL_471>",
|
| 475 |
+
"<SPECIAL_472>",
|
| 476 |
+
"<SPECIAL_473>",
|
| 477 |
+
"<SPECIAL_474>",
|
| 478 |
+
"<SPECIAL_475>",
|
| 479 |
+
"<SPECIAL_476>",
|
| 480 |
+
"<SPECIAL_477>",
|
| 481 |
+
"<SPECIAL_478>",
|
| 482 |
+
"<SPECIAL_479>",
|
| 483 |
+
"<SPECIAL_480>",
|
| 484 |
+
"<SPECIAL_481>",
|
| 485 |
+
"<SPECIAL_482>",
|
| 486 |
+
"<SPECIAL_483>",
|
| 487 |
+
"<SPECIAL_484>",
|
| 488 |
+
"<SPECIAL_485>",
|
| 489 |
+
"<SPECIAL_486>",
|
| 490 |
+
"<SPECIAL_487>",
|
| 491 |
+
"<SPECIAL_488>",
|
| 492 |
+
"<SPECIAL_489>",
|
| 493 |
+
"<SPECIAL_490>",
|
| 494 |
+
"<SPECIAL_491>",
|
| 495 |
+
"<SPECIAL_492>",
|
| 496 |
+
"<SPECIAL_493>",
|
| 497 |
+
"<SPECIAL_494>",
|
| 498 |
+
"<SPECIAL_495>",
|
| 499 |
+
"<SPECIAL_496>",
|
| 500 |
+
"<SPECIAL_497>",
|
| 501 |
+
"<SPECIAL_498>",
|
| 502 |
+
"<SPECIAL_499>",
|
| 503 |
+
"<SPECIAL_500>",
|
| 504 |
+
"<SPECIAL_501>",
|
| 505 |
+
"<SPECIAL_502>",
|
| 506 |
+
"<SPECIAL_503>",
|
| 507 |
+
"<SPECIAL_504>",
|
| 508 |
+
"<SPECIAL_505>",
|
| 509 |
+
"<SPECIAL_506>",
|
| 510 |
+
"<SPECIAL_507>",
|
| 511 |
+
"<SPECIAL_508>",
|
| 512 |
+
"<SPECIAL_509>",
|
| 513 |
+
"<SPECIAL_510>",
|
| 514 |
+
"<SPECIAL_511>",
|
| 515 |
+
"<SPECIAL_512>",
|
| 516 |
+
"<SPECIAL_513>",
|
| 517 |
+
"<SPECIAL_514>",
|
| 518 |
+
"<SPECIAL_515>",
|
| 519 |
+
"<SPECIAL_516>",
|
| 520 |
+
"<SPECIAL_517>",
|
| 521 |
+
"<SPECIAL_518>",
|
| 522 |
+
"<SPECIAL_519>",
|
| 523 |
+
"<SPECIAL_520>",
|
| 524 |
+
"<SPECIAL_521>",
|
| 525 |
+
"<SPECIAL_522>",
|
| 526 |
+
"<SPECIAL_523>",
|
| 527 |
+
"<SPECIAL_524>",
|
| 528 |
+
"<SPECIAL_525>",
|
| 529 |
+
"<SPECIAL_526>",
|
| 530 |
+
"<SPECIAL_527>",
|
| 531 |
+
"<SPECIAL_528>",
|
| 532 |
+
"<SPECIAL_529>",
|
| 533 |
+
"<SPECIAL_530>",
|
| 534 |
+
"<SPECIAL_531>",
|
| 535 |
+
"<SPECIAL_532>",
|
| 536 |
+
"<SPECIAL_533>",
|
| 537 |
+
"<SPECIAL_534>",
|
| 538 |
+
"<SPECIAL_535>",
|
| 539 |
+
"<SPECIAL_536>",
|
| 540 |
+
"<SPECIAL_537>",
|
| 541 |
+
"<SPECIAL_538>",
|
| 542 |
+
"<SPECIAL_539>",
|
| 543 |
+
"<SPECIAL_540>",
|
| 544 |
+
"<SPECIAL_541>",
|
| 545 |
+
"<SPECIAL_542>",
|
| 546 |
+
"<SPECIAL_543>",
|
| 547 |
+
"<SPECIAL_544>",
|
| 548 |
+
"<SPECIAL_545>",
|
| 549 |
+
"<SPECIAL_546>",
|
| 550 |
+
"<SPECIAL_547>",
|
| 551 |
+
"<SPECIAL_548>",
|
| 552 |
+
"<SPECIAL_549>",
|
| 553 |
+
"<SPECIAL_550>",
|
| 554 |
+
"<SPECIAL_551>",
|
| 555 |
+
"<SPECIAL_552>",
|
| 556 |
+
"<SPECIAL_553>",
|
| 557 |
+
"<SPECIAL_554>",
|
| 558 |
+
"<SPECIAL_555>",
|
| 559 |
+
"<SPECIAL_556>",
|
| 560 |
+
"<SPECIAL_557>",
|
| 561 |
+
"<SPECIAL_558>",
|
| 562 |
+
"<SPECIAL_559>",
|
| 563 |
+
"<SPECIAL_560>",
|
| 564 |
+
"<SPECIAL_561>",
|
| 565 |
+
"<SPECIAL_562>",
|
| 566 |
+
"<SPECIAL_563>",
|
| 567 |
+
"<SPECIAL_564>",
|
| 568 |
+
"<SPECIAL_565>",
|
| 569 |
+
"<SPECIAL_566>",
|
| 570 |
+
"<SPECIAL_567>",
|
| 571 |
+
"<SPECIAL_568>",
|
| 572 |
+
"<SPECIAL_569>",
|
| 573 |
+
"<SPECIAL_570>",
|
| 574 |
+
"<SPECIAL_571>",
|
| 575 |
+
"<SPECIAL_572>",
|
| 576 |
+
"<SPECIAL_573>",
|
| 577 |
+
"<SPECIAL_574>",
|
| 578 |
+
"<SPECIAL_575>",
|
| 579 |
+
"<SPECIAL_576>",
|
| 580 |
+
"<SPECIAL_577>",
|
| 581 |
+
"<SPECIAL_578>",
|
| 582 |
+
"<SPECIAL_579>",
|
| 583 |
+
"<SPECIAL_580>",
|
| 584 |
+
"<SPECIAL_581>",
|
| 585 |
+
"<SPECIAL_582>",
|
| 586 |
+
"<SPECIAL_583>",
|
| 587 |
+
"<SPECIAL_584>",
|
| 588 |
+
"<SPECIAL_585>",
|
| 589 |
+
"<SPECIAL_586>",
|
| 590 |
+
"<SPECIAL_587>",
|
| 591 |
+
"<SPECIAL_588>",
|
| 592 |
+
"<SPECIAL_589>",
|
| 593 |
+
"<SPECIAL_590>",
|
| 594 |
+
"<SPECIAL_591>",
|
| 595 |
+
"<SPECIAL_592>",
|
| 596 |
+
"<SPECIAL_593>",
|
| 597 |
+
"<SPECIAL_594>",
|
| 598 |
+
"<SPECIAL_595>",
|
| 599 |
+
"<SPECIAL_596>",
|
| 600 |
+
"<SPECIAL_597>",
|
| 601 |
+
"<SPECIAL_598>",
|
| 602 |
+
"<SPECIAL_599>",
|
| 603 |
+
"<SPECIAL_600>",
|
| 604 |
+
"<SPECIAL_601>",
|
| 605 |
+
"<SPECIAL_602>",
|
| 606 |
+
"<SPECIAL_603>",
|
| 607 |
+
"<SPECIAL_604>",
|
| 608 |
+
"<SPECIAL_605>",
|
| 609 |
+
"<SPECIAL_606>",
|
| 610 |
+
"<SPECIAL_607>",
|
| 611 |
+
"<SPECIAL_608>",
|
| 612 |
+
"<SPECIAL_609>",
|
| 613 |
+
"<SPECIAL_610>",
|
| 614 |
+
"<SPECIAL_611>",
|
| 615 |
+
"<SPECIAL_612>",
|
| 616 |
+
"<SPECIAL_613>",
|
| 617 |
+
"<SPECIAL_614>",
|
| 618 |
+
"<SPECIAL_615>",
|
| 619 |
+
"<SPECIAL_616>",
|
| 620 |
+
"<SPECIAL_617>",
|
| 621 |
+
"<SPECIAL_618>",
|
| 622 |
+
"<SPECIAL_619>",
|
| 623 |
+
"<SPECIAL_620>",
|
| 624 |
+
"<SPECIAL_621>",
|
| 625 |
+
"<SPECIAL_622>",
|
| 626 |
+
"<SPECIAL_623>",
|
| 627 |
+
"<SPECIAL_624>",
|
| 628 |
+
"<SPECIAL_625>",
|
| 629 |
+
"<SPECIAL_626>",
|
| 630 |
+
"<SPECIAL_627>",
|
| 631 |
+
"<SPECIAL_628>",
|
| 632 |
+
"<SPECIAL_629>",
|
| 633 |
+
"<SPECIAL_630>",
|
| 634 |
+
"<SPECIAL_631>",
|
| 635 |
+
"<SPECIAL_632>",
|
| 636 |
+
"<SPECIAL_633>",
|
| 637 |
+
"<SPECIAL_634>",
|
| 638 |
+
"<SPECIAL_635>",
|
| 639 |
+
"<SPECIAL_636>",
|
| 640 |
+
"<SPECIAL_637>",
|
| 641 |
+
"<SPECIAL_638>",
|
| 642 |
+
"<SPECIAL_639>",
|
| 643 |
+
"<SPECIAL_640>",
|
| 644 |
+
"<SPECIAL_641>",
|
| 645 |
+
"<SPECIAL_642>",
|
| 646 |
+
"<SPECIAL_643>",
|
| 647 |
+
"<SPECIAL_644>",
|
| 648 |
+
"<SPECIAL_645>",
|
| 649 |
+
"<SPECIAL_646>",
|
| 650 |
+
"<SPECIAL_647>",
|
| 651 |
+
"<SPECIAL_648>",
|
| 652 |
+
"<SPECIAL_649>",
|
| 653 |
+
"<SPECIAL_650>",
|
| 654 |
+
"<SPECIAL_651>",
|
| 655 |
+
"<SPECIAL_652>",
|
| 656 |
+
"<SPECIAL_653>",
|
| 657 |
+
"<SPECIAL_654>",
|
| 658 |
+
"<SPECIAL_655>",
|
| 659 |
+
"<SPECIAL_656>",
|
| 660 |
+
"<SPECIAL_657>",
|
| 661 |
+
"<SPECIAL_658>",
|
| 662 |
+
"<SPECIAL_659>",
|
| 663 |
+
"<SPECIAL_660>",
|
| 664 |
+
"<SPECIAL_661>",
|
| 665 |
+
"<SPECIAL_662>",
|
| 666 |
+
"<SPECIAL_663>",
|
| 667 |
+
"<SPECIAL_664>",
|
| 668 |
+
"<SPECIAL_665>",
|
| 669 |
+
"<SPECIAL_666>",
|
| 670 |
+
"<SPECIAL_667>",
|
| 671 |
+
"<SPECIAL_668>",
|
| 672 |
+
"<SPECIAL_669>",
|
| 673 |
+
"<SPECIAL_670>",
|
| 674 |
+
"<SPECIAL_671>",
|
| 675 |
+
"<SPECIAL_672>",
|
| 676 |
+
"<SPECIAL_673>",
|
| 677 |
+
"<SPECIAL_674>",
|
| 678 |
+
"<SPECIAL_675>",
|
| 679 |
+
"<SPECIAL_676>",
|
| 680 |
+
"<SPECIAL_677>",
|
| 681 |
+
"<SPECIAL_678>",
|
| 682 |
+
"<SPECIAL_679>",
|
| 683 |
+
"<SPECIAL_680>",
|
| 684 |
+
"<SPECIAL_681>",
|
| 685 |
+
"<SPECIAL_682>",
|
| 686 |
+
"<SPECIAL_683>",
|
| 687 |
+
"<SPECIAL_684>",
|
| 688 |
+
"<SPECIAL_685>",
|
| 689 |
+
"<SPECIAL_686>",
|
| 690 |
+
"<SPECIAL_687>",
|
| 691 |
+
"<SPECIAL_688>",
|
| 692 |
+
"<SPECIAL_689>",
|
| 693 |
+
"<SPECIAL_690>",
|
| 694 |
+
"<SPECIAL_691>",
|
| 695 |
+
"<SPECIAL_692>",
|
| 696 |
+
"<SPECIAL_693>",
|
| 697 |
+
"<SPECIAL_694>",
|
| 698 |
+
"<SPECIAL_695>",
|
| 699 |
+
"<SPECIAL_696>",
|
| 700 |
+
"<SPECIAL_697>",
|
| 701 |
+
"<SPECIAL_698>",
|
| 702 |
+
"<SPECIAL_699>",
|
| 703 |
+
"<SPECIAL_700>",
|
| 704 |
+
"<SPECIAL_701>",
|
| 705 |
+
"<SPECIAL_702>",
|
| 706 |
+
"<SPECIAL_703>",
|
| 707 |
+
"<SPECIAL_704>",
|
| 708 |
+
"<SPECIAL_705>",
|
| 709 |
+
"<SPECIAL_706>",
|
| 710 |
+
"<SPECIAL_707>",
|
| 711 |
+
"<SPECIAL_708>",
|
| 712 |
+
"<SPECIAL_709>",
|
| 713 |
+
"<SPECIAL_710>",
|
| 714 |
+
"<SPECIAL_711>",
|
| 715 |
+
"<SPECIAL_712>",
|
| 716 |
+
"<SPECIAL_713>",
|
| 717 |
+
"<SPECIAL_714>",
|
| 718 |
+
"<SPECIAL_715>",
|
| 719 |
+
"<SPECIAL_716>",
|
| 720 |
+
"<SPECIAL_717>",
|
| 721 |
+
"<SPECIAL_718>",
|
| 722 |
+
"<SPECIAL_719>",
|
| 723 |
+
"<SPECIAL_720>",
|
| 724 |
+
"<SPECIAL_721>",
|
| 725 |
+
"<SPECIAL_722>",
|
| 726 |
+
"<SPECIAL_723>",
|
| 727 |
+
"<SPECIAL_724>",
|
| 728 |
+
"<SPECIAL_725>",
|
| 729 |
+
"<SPECIAL_726>",
|
| 730 |
+
"<SPECIAL_727>",
|
| 731 |
+
"<SPECIAL_728>",
|
| 732 |
+
"<SPECIAL_729>",
|
| 733 |
+
"<SPECIAL_730>",
|
| 734 |
+
"<SPECIAL_731>",
|
| 735 |
+
"<SPECIAL_732>",
|
| 736 |
+
"<SPECIAL_733>",
|
| 737 |
+
"<SPECIAL_734>",
|
| 738 |
+
"<SPECIAL_735>",
|
| 739 |
+
"<SPECIAL_736>",
|
| 740 |
+
"<SPECIAL_737>",
|
| 741 |
+
"<SPECIAL_738>",
|
| 742 |
+
"<SPECIAL_739>",
|
| 743 |
+
"<SPECIAL_740>",
|
| 744 |
+
"<SPECIAL_741>",
|
| 745 |
+
"<SPECIAL_742>",
|
| 746 |
+
"<SPECIAL_743>",
|
| 747 |
+
"<SPECIAL_744>",
|
| 748 |
+
"<SPECIAL_745>",
|
| 749 |
+
"<SPECIAL_746>",
|
| 750 |
+
"<SPECIAL_747>",
|
| 751 |
+
"<SPECIAL_748>",
|
| 752 |
+
"<SPECIAL_749>",
|
| 753 |
+
"<SPECIAL_750>",
|
| 754 |
+
"<SPECIAL_751>",
|
| 755 |
+
"<SPECIAL_752>",
|
| 756 |
+
"<SPECIAL_753>",
|
| 757 |
+
"<SPECIAL_754>",
|
| 758 |
+
"<SPECIAL_755>",
|
| 759 |
+
"<SPECIAL_756>",
|
| 760 |
+
"<SPECIAL_757>",
|
| 761 |
+
"<SPECIAL_758>",
|
| 762 |
+
"<SPECIAL_759>",
|
| 763 |
+
"<SPECIAL_760>",
|
| 764 |
+
"<SPECIAL_761>",
|
| 765 |
+
"<SPECIAL_762>",
|
| 766 |
+
"<SPECIAL_763>",
|
| 767 |
+
"<SPECIAL_764>",
|
| 768 |
+
"<SPECIAL_765>",
|
| 769 |
+
"<SPECIAL_766>",
|
| 770 |
+
"<SPECIAL_767>",
|
| 771 |
+
"<SPECIAL_768>",
|
| 772 |
+
"<SPECIAL_769>",
|
| 773 |
+
"<SPECIAL_770>",
|
| 774 |
+
"<SPECIAL_771>",
|
| 775 |
+
"<SPECIAL_772>",
|
| 776 |
+
"<SPECIAL_773>",
|
| 777 |
+
"<SPECIAL_774>",
|
| 778 |
+
"<SPECIAL_775>",
|
| 779 |
+
"<SPECIAL_776>",
|
| 780 |
+
"<SPECIAL_777>",
|
| 781 |
+
"<SPECIAL_778>",
|
| 782 |
+
"<SPECIAL_779>",
|
| 783 |
+
"<SPECIAL_780>",
|
| 784 |
+
"<SPECIAL_781>",
|
| 785 |
+
"<SPECIAL_782>",
|
| 786 |
+
"<SPECIAL_783>",
|
| 787 |
+
"<SPECIAL_784>",
|
| 788 |
+
"<SPECIAL_785>",
|
| 789 |
+
"<SPECIAL_786>",
|
| 790 |
+
"<SPECIAL_787>",
|
| 791 |
+
"<SPECIAL_788>",
|
| 792 |
+
"<SPECIAL_789>",
|
| 793 |
+
"<SPECIAL_790>",
|
| 794 |
+
"<SPECIAL_791>",
|
| 795 |
+
"<SPECIAL_792>",
|
| 796 |
+
"<SPECIAL_793>",
|
| 797 |
+
"<SPECIAL_794>",
|
| 798 |
+
"<SPECIAL_795>",
|
| 799 |
+
"<SPECIAL_796>",
|
| 800 |
+
"<SPECIAL_797>",
|
| 801 |
+
"<SPECIAL_798>",
|
| 802 |
+
"<SPECIAL_799>",
|
| 803 |
+
"<SPECIAL_800>",
|
| 804 |
+
"<SPECIAL_801>",
|
| 805 |
+
"<SPECIAL_802>",
|
| 806 |
+
"<SPECIAL_803>",
|
| 807 |
+
"<SPECIAL_804>",
|
| 808 |
+
"<SPECIAL_805>",
|
| 809 |
+
"<SPECIAL_806>",
|
| 810 |
+
"<SPECIAL_807>",
|
| 811 |
+
"<SPECIAL_808>",
|
| 812 |
+
"<SPECIAL_809>",
|
| 813 |
+
"<SPECIAL_810>",
|
| 814 |
+
"<SPECIAL_811>",
|
| 815 |
+
"<SPECIAL_812>",
|
| 816 |
+
"<SPECIAL_813>",
|
| 817 |
+
"<SPECIAL_814>",
|
| 818 |
+
"<SPECIAL_815>",
|
| 819 |
+
"<SPECIAL_816>",
|
| 820 |
+
"<SPECIAL_817>",
|
| 821 |
+
"<SPECIAL_818>",
|
| 822 |
+
"<SPECIAL_819>",
|
| 823 |
+
"<SPECIAL_820>",
|
| 824 |
+
"<SPECIAL_821>",
|
| 825 |
+
"<SPECIAL_822>",
|
| 826 |
+
"<SPECIAL_823>",
|
| 827 |
+
"<SPECIAL_824>",
|
| 828 |
+
"<SPECIAL_825>",
|
| 829 |
+
"<SPECIAL_826>",
|
| 830 |
+
"<SPECIAL_827>",
|
| 831 |
+
"<SPECIAL_828>",
|
| 832 |
+
"<SPECIAL_829>",
|
| 833 |
+
"<SPECIAL_830>",
|
| 834 |
+
"<SPECIAL_831>",
|
| 835 |
+
"<SPECIAL_832>",
|
| 836 |
+
"<SPECIAL_833>",
|
| 837 |
+
"<SPECIAL_834>",
|
| 838 |
+
"<SPECIAL_835>",
|
| 839 |
+
"<SPECIAL_836>",
|
| 840 |
+
"<SPECIAL_837>",
|
| 841 |
+
"<SPECIAL_838>",
|
| 842 |
+
"<SPECIAL_839>",
|
| 843 |
+
"<SPECIAL_840>",
|
| 844 |
+
"<SPECIAL_841>",
|
| 845 |
+
"<SPECIAL_842>",
|
| 846 |
+
"<SPECIAL_843>",
|
| 847 |
+
"<SPECIAL_844>",
|
| 848 |
+
"<SPECIAL_845>",
|
| 849 |
+
"<SPECIAL_846>",
|
| 850 |
+
"<SPECIAL_847>",
|
| 851 |
+
"<SPECIAL_848>",
|
| 852 |
+
"<SPECIAL_849>",
|
| 853 |
+
"<SPECIAL_850>",
|
| 854 |
+
"<SPECIAL_851>",
|
| 855 |
+
"<SPECIAL_852>",
|
| 856 |
+
"<SPECIAL_853>",
|
| 857 |
+
"<SPECIAL_854>",
|
| 858 |
+
"<SPECIAL_855>",
|
| 859 |
+
"<SPECIAL_856>",
|
| 860 |
+
"<SPECIAL_857>",
|
| 861 |
+
"<SPECIAL_858>",
|
| 862 |
+
"<SPECIAL_859>",
|
| 863 |
+
"<SPECIAL_860>",
|
| 864 |
+
"<SPECIAL_861>",
|
| 865 |
+
"<SPECIAL_862>",
|
| 866 |
+
"<SPECIAL_863>",
|
| 867 |
+
"<SPECIAL_864>",
|
| 868 |
+
"<SPECIAL_865>",
|
| 869 |
+
"<SPECIAL_866>",
|
| 870 |
+
"<SPECIAL_867>",
|
| 871 |
+
"<SPECIAL_868>",
|
| 872 |
+
"<SPECIAL_869>",
|
| 873 |
+
"<SPECIAL_870>",
|
| 874 |
+
"<SPECIAL_871>",
|
| 875 |
+
"<SPECIAL_872>",
|
| 876 |
+
"<SPECIAL_873>",
|
| 877 |
+
"<SPECIAL_874>",
|
| 878 |
+
"<SPECIAL_875>",
|
| 879 |
+
"<SPECIAL_876>",
|
| 880 |
+
"<SPECIAL_877>",
|
| 881 |
+
"<SPECIAL_878>",
|
| 882 |
+
"<SPECIAL_879>",
|
| 883 |
+
"<SPECIAL_880>",
|
| 884 |
+
"<SPECIAL_881>",
|
| 885 |
+
"<SPECIAL_882>",
|
| 886 |
+
"<SPECIAL_883>",
|
| 887 |
+
"<SPECIAL_884>",
|
| 888 |
+
"<SPECIAL_885>",
|
| 889 |
+
"<SPECIAL_886>",
|
| 890 |
+
"<SPECIAL_887>",
|
| 891 |
+
"<SPECIAL_888>",
|
| 892 |
+
"<SPECIAL_889>",
|
| 893 |
+
"<SPECIAL_890>",
|
| 894 |
+
"<SPECIAL_891>",
|
| 895 |
+
"<SPECIAL_892>",
|
| 896 |
+
"<SPECIAL_893>",
|
| 897 |
+
"<SPECIAL_894>",
|
| 898 |
+
"<SPECIAL_895>",
|
| 899 |
+
"<SPECIAL_896>",
|
| 900 |
+
"<SPECIAL_897>",
|
| 901 |
+
"<SPECIAL_898>",
|
| 902 |
+
"<SPECIAL_899>",
|
| 903 |
+
"<SPECIAL_900>",
|
| 904 |
+
"<SPECIAL_901>",
|
| 905 |
+
"<SPECIAL_902>",
|
| 906 |
+
"<SPECIAL_903>",
|
| 907 |
+
"<SPECIAL_904>",
|
| 908 |
+
"<SPECIAL_905>",
|
| 909 |
+
"<SPECIAL_906>",
|
| 910 |
+
"<SPECIAL_907>",
|
| 911 |
+
"<SPECIAL_908>",
|
| 912 |
+
"<SPECIAL_909>",
|
| 913 |
+
"<SPECIAL_910>",
|
| 914 |
+
"<SPECIAL_911>",
|
| 915 |
+
"<SPECIAL_912>",
|
| 916 |
+
"<SPECIAL_913>",
|
| 917 |
+
"<SPECIAL_914>",
|
| 918 |
+
"<SPECIAL_915>",
|
| 919 |
+
"<SPECIAL_916>",
|
| 920 |
+
"<SPECIAL_917>",
|
| 921 |
+
"<SPECIAL_918>",
|
| 922 |
+
"<SPECIAL_919>",
|
| 923 |
+
"<SPECIAL_920>",
|
| 924 |
+
"<SPECIAL_921>",
|
| 925 |
+
"<SPECIAL_922>",
|
| 926 |
+
"<SPECIAL_923>",
|
| 927 |
+
"<SPECIAL_924>",
|
| 928 |
+
"<SPECIAL_925>",
|
| 929 |
+
"<SPECIAL_926>",
|
| 930 |
+
"<SPECIAL_927>",
|
| 931 |
+
"<SPECIAL_928>",
|
| 932 |
+
"<SPECIAL_929>",
|
| 933 |
+
"<SPECIAL_930>",
|
| 934 |
+
"<SPECIAL_931>",
|
| 935 |
+
"<SPECIAL_932>",
|
| 936 |
+
"<SPECIAL_933>",
|
| 937 |
+
"<SPECIAL_934>",
|
| 938 |
+
"<SPECIAL_935>",
|
| 939 |
+
"<SPECIAL_936>",
|
| 940 |
+
"<SPECIAL_937>",
|
| 941 |
+
"<SPECIAL_938>",
|
| 942 |
+
"<SPECIAL_939>",
|
| 943 |
+
"<SPECIAL_940>",
|
| 944 |
+
"<SPECIAL_941>",
|
| 945 |
+
"<SPECIAL_942>",
|
| 946 |
+
"<SPECIAL_943>",
|
| 947 |
+
"<SPECIAL_944>",
|
| 948 |
+
"<SPECIAL_945>",
|
| 949 |
+
"<SPECIAL_946>",
|
| 950 |
+
"<SPECIAL_947>",
|
| 951 |
+
"<SPECIAL_948>",
|
| 952 |
+
"<SPECIAL_949>",
|
| 953 |
+
"<SPECIAL_950>",
|
| 954 |
+
"<SPECIAL_951>",
|
| 955 |
+
"<SPECIAL_952>",
|
| 956 |
+
"<SPECIAL_953>",
|
| 957 |
+
"<SPECIAL_954>",
|
| 958 |
+
"<SPECIAL_955>",
|
| 959 |
+
"<SPECIAL_956>",
|
| 960 |
+
"<SPECIAL_957>",
|
| 961 |
+
"<SPECIAL_958>",
|
| 962 |
+
"<SPECIAL_959>",
|
| 963 |
+
"<SPECIAL_960>",
|
| 964 |
+
"<SPECIAL_961>",
|
| 965 |
+
"<SPECIAL_962>",
|
| 966 |
+
"<SPECIAL_963>",
|
| 967 |
+
"<SPECIAL_964>",
|
| 968 |
+
"<SPECIAL_965>",
|
| 969 |
+
"<SPECIAL_966>",
|
| 970 |
+
"<SPECIAL_967>",
|
| 971 |
+
"<SPECIAL_968>",
|
| 972 |
+
"<SPECIAL_969>",
|
| 973 |
+
"<SPECIAL_970>",
|
| 974 |
+
"<SPECIAL_971>",
|
| 975 |
+
"<SPECIAL_972>",
|
| 976 |
+
"<SPECIAL_973>",
|
| 977 |
+
"<SPECIAL_974>",
|
| 978 |
+
"<SPECIAL_975>",
|
| 979 |
+
"<SPECIAL_976>",
|
| 980 |
+
"<SPECIAL_977>",
|
| 981 |
+
"<SPECIAL_978>",
|
| 982 |
+
"<SPECIAL_979>",
|
| 983 |
+
"<SPECIAL_980>",
|
| 984 |
+
"<SPECIAL_981>",
|
| 985 |
+
"<SPECIAL_982>",
|
| 986 |
+
"<SPECIAL_983>",
|
| 987 |
+
"<SPECIAL_984>",
|
| 988 |
+
"<SPECIAL_985>",
|
| 989 |
+
"<SPECIAL_986>",
|
| 990 |
+
"<SPECIAL_987>",
|
| 991 |
+
"<SPECIAL_988>",
|
| 992 |
+
"<SPECIAL_989>",
|
| 993 |
+
"<SPECIAL_990>",
|
| 994 |
+
"<SPECIAL_991>",
|
| 995 |
+
"<SPECIAL_992>",
|
| 996 |
+
"<SPECIAL_993>",
|
| 997 |
+
"<SPECIAL_994>",
|
| 998 |
+
"<SPECIAL_995>",
|
| 999 |
+
"<SPECIAL_996>",
|
| 1000 |
+
"<SPECIAL_997>",
|
| 1001 |
+
"<SPECIAL_998>",
|
| 1002 |
+
"<SPECIAL_999>"
|
| 1003 |
+
],
|
| 1004 |
+
"bos_token": {
|
| 1005 |
+
"content": "<s>",
|
| 1006 |
+
"lstrip": false,
|
| 1007 |
+
"normalized": false,
|
| 1008 |
+
"rstrip": false,
|
| 1009 |
+
"single_word": false
|
| 1010 |
+
},
|
| 1011 |
+
"eos_token": {
|
| 1012 |
+
"content": "</s>",
|
| 1013 |
+
"lstrip": false,
|
| 1014 |
+
"normalized": false,
|
| 1015 |
+
"rstrip": false,
|
| 1016 |
+
"single_word": false
|
| 1017 |
+
},
|
| 1018 |
+
"pad_token": {
|
| 1019 |
+
"content": "<pad>",
|
| 1020 |
+
"lstrip": false,
|
| 1021 |
+
"normalized": false,
|
| 1022 |
+
"rstrip": false,
|
| 1023 |
+
"single_word": false
|
| 1024 |
+
},
|
| 1025 |
+
"unk_token": {
|
| 1026 |
+
"content": "<unk>",
|
| 1027 |
+
"lstrip": false,
|
| 1028 |
+
"normalized": false,
|
| 1029 |
+
"rstrip": false,
|
| 1030 |
+
"single_word": false
|
| 1031 |
+
}
|
| 1032 |
+
}
|
tokenizer/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b76085f9923309d873994d444989f7eb6ec074b06f25b58f1e8d7b7741070949
|
| 3 |
+
size 17078037
|
tokenizer/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
transformer/config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "Flux2Transformer2DModel",
|
| 3 |
+
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
+
"attention_head_dim": 128,
|
| 5 |
+
"axes_dims_rope": [
|
| 6 |
+
32,
|
| 7 |
+
32,
|
| 8 |
+
32,
|
| 9 |
+
32
|
| 10 |
+
],
|
| 11 |
+
"eps": 1e-06,
|
| 12 |
+
"in_channels": 128,
|
| 13 |
+
"joint_attention_dim": 15360,
|
| 14 |
+
"mlp_ratio": 3.0,
|
| 15 |
+
"num_attention_heads": 48,
|
| 16 |
+
"num_layers": 8,
|
| 17 |
+
"num_single_layers": 48,
|
| 18 |
+
"out_channels": null,
|
| 19 |
+
"patch_size": 1,
|
| 20 |
+
"rope_theta": 2000,
|
| 21 |
+
"timestep_guidance_channels": 256
|
| 22 |
+
}
|
transformer/diffusion_pytorch_model-00001-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7d367591726756bfde832b3579d2ffd3f0a440d645b1cf1d0d36590d1802829
|
| 3 |
+
size 9935797168
|
transformer/diffusion_pytorch_model-00002-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9b1972938a5cb93aa502859e1d660767b9bb4786b31385287596f67e2d687f6
|
| 3 |
+
size 9890181016
|
transformer/diffusion_pytorch_model-00003-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d208733c35c2399cc34efed441b01ad97b3292eee6fc4a1c7aad3244151936d
|
| 3 |
+
size 9814681448
|
transformer/diffusion_pytorch_model-00004-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8fcc7ba88d09a46f16c550234ea2779366b52e924eef8f95604e21503fcf556d
|
| 3 |
+
size 9814681504
|
transformer/diffusion_pytorch_model-00005-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6656ec1edeb6671d3dd49d2546ae81689a84f4ec7ebd2adf4eda4d4fb9d1025a
|
| 3 |
+
size 9814681504
|
transformer/diffusion_pytorch_model-00006-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c98ee575c4cf13ab5eb0ccd5076457283e49c6a35e7b5831fdd0273829b9989b
|
| 3 |
+
size 9814681504
|
transformer/diffusion_pytorch_model-00007-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f250e98838e66a77be346ca669bce2580ac4df8ae353f96cf9a33b0c3c5c850
|
| 3 |
+
size 5361898768
|
transformer/diffusion_pytorch_model.safetensors.index.json
ADDED
|
@@ -0,0 +1,338 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 64446562304
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"context_embedder.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 7 |
+
"double_stream_modulation_img.linear.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 8 |
+
"double_stream_modulation_txt.linear.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 9 |
+
"norm_out.linear.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 10 |
+
"proj_out.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 11 |
+
"single_stream_modulation.linear.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 12 |
+
"single_transformer_blocks.0.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 13 |
+
"single_transformer_blocks.0.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 14 |
+
"single_transformer_blocks.0.attn.to_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 15 |
+
"single_transformer_blocks.0.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 16 |
+
"single_transformer_blocks.1.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 17 |
+
"single_transformer_blocks.1.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 18 |
+
"single_transformer_blocks.1.attn.to_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 19 |
+
"single_transformer_blocks.1.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 20 |
+
"single_transformer_blocks.10.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 21 |
+
"single_transformer_blocks.10.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 22 |
+
"single_transformer_blocks.10.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 23 |
+
"single_transformer_blocks.10.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 24 |
+
"single_transformer_blocks.11.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 25 |
+
"single_transformer_blocks.11.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 26 |
+
"single_transformer_blocks.11.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 27 |
+
"single_transformer_blocks.11.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 28 |
+
"single_transformer_blocks.12.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 29 |
+
"single_transformer_blocks.12.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 30 |
+
"single_transformer_blocks.12.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 31 |
+
"single_transformer_blocks.12.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 32 |
+
"single_transformer_blocks.13.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 33 |
+
"single_transformer_blocks.13.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 34 |
+
"single_transformer_blocks.13.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 35 |
+
"single_transformer_blocks.13.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 36 |
+
"single_transformer_blocks.14.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 37 |
+
"single_transformer_blocks.14.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 38 |
+
"single_transformer_blocks.14.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 39 |
+
"single_transformer_blocks.14.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 40 |
+
"single_transformer_blocks.15.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 41 |
+
"single_transformer_blocks.15.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 42 |
+
"single_transformer_blocks.15.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 43 |
+
"single_transformer_blocks.15.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 44 |
+
"single_transformer_blocks.16.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 45 |
+
"single_transformer_blocks.16.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 46 |
+
"single_transformer_blocks.16.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 47 |
+
"single_transformer_blocks.16.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 48 |
+
"single_transformer_blocks.17.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 49 |
+
"single_transformer_blocks.17.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 50 |
+
"single_transformer_blocks.17.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 51 |
+
"single_transformer_blocks.17.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 52 |
+
"single_transformer_blocks.18.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 53 |
+
"single_transformer_blocks.18.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 54 |
+
"single_transformer_blocks.18.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 55 |
+
"single_transformer_blocks.18.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 56 |
+
"single_transformer_blocks.19.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 57 |
+
"single_transformer_blocks.19.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 58 |
+
"single_transformer_blocks.19.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 59 |
+
"single_transformer_blocks.19.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 60 |
+
"single_transformer_blocks.2.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 61 |
+
"single_transformer_blocks.2.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 62 |
+
"single_transformer_blocks.2.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 63 |
+
"single_transformer_blocks.2.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 64 |
+
"single_transformer_blocks.20.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 65 |
+
"single_transformer_blocks.20.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 66 |
+
"single_transformer_blocks.20.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 67 |
+
"single_transformer_blocks.20.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 68 |
+
"single_transformer_blocks.21.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 69 |
+
"single_transformer_blocks.21.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 70 |
+
"single_transformer_blocks.21.attn.to_out.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 71 |
+
"single_transformer_blocks.21.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 72 |
+
"single_transformer_blocks.22.attn.norm_k.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 73 |
+
"single_transformer_blocks.22.attn.norm_q.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 74 |
+
"single_transformer_blocks.22.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 75 |
+
"single_transformer_blocks.22.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00004-of-00007.safetensors",
|
| 76 |
+
"single_transformer_blocks.23.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 77 |
+
"single_transformer_blocks.23.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 78 |
+
"single_transformer_blocks.23.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 79 |
+
"single_transformer_blocks.23.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 80 |
+
"single_transformer_blocks.24.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 81 |
+
"single_transformer_blocks.24.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 82 |
+
"single_transformer_blocks.24.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 83 |
+
"single_transformer_blocks.24.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 84 |
+
"single_transformer_blocks.25.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 85 |
+
"single_transformer_blocks.25.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 86 |
+
"single_transformer_blocks.25.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 87 |
+
"single_transformer_blocks.25.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 88 |
+
"single_transformer_blocks.26.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 89 |
+
"single_transformer_blocks.26.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 90 |
+
"single_transformer_blocks.26.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 91 |
+
"single_transformer_blocks.26.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 92 |
+
"single_transformer_blocks.27.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 93 |
+
"single_transformer_blocks.27.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 94 |
+
"single_transformer_blocks.27.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 95 |
+
"single_transformer_blocks.27.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 96 |
+
"single_transformer_blocks.28.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 97 |
+
"single_transformer_blocks.28.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 98 |
+
"single_transformer_blocks.28.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 99 |
+
"single_transformer_blocks.28.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 100 |
+
"single_transformer_blocks.29.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 101 |
+
"single_transformer_blocks.29.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 102 |
+
"single_transformer_blocks.29.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 103 |
+
"single_transformer_blocks.29.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 104 |
+
"single_transformer_blocks.3.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 105 |
+
"single_transformer_blocks.3.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 106 |
+
"single_transformer_blocks.3.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 107 |
+
"single_transformer_blocks.3.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 108 |
+
"single_transformer_blocks.30.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 109 |
+
"single_transformer_blocks.30.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 110 |
+
"single_transformer_blocks.30.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 111 |
+
"single_transformer_blocks.30.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 112 |
+
"single_transformer_blocks.31.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 113 |
+
"single_transformer_blocks.31.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 114 |
+
"single_transformer_blocks.31.attn.to_out.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 115 |
+
"single_transformer_blocks.31.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 116 |
+
"single_transformer_blocks.32.attn.norm_k.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 117 |
+
"single_transformer_blocks.32.attn.norm_q.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 118 |
+
"single_transformer_blocks.32.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 119 |
+
"single_transformer_blocks.32.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00005-of-00007.safetensors",
|
| 120 |
+
"single_transformer_blocks.33.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 121 |
+
"single_transformer_blocks.33.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 122 |
+
"single_transformer_blocks.33.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 123 |
+
"single_transformer_blocks.33.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 124 |
+
"single_transformer_blocks.34.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 125 |
+
"single_transformer_blocks.34.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 126 |
+
"single_transformer_blocks.34.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 127 |
+
"single_transformer_blocks.34.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 128 |
+
"single_transformer_blocks.35.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 129 |
+
"single_transformer_blocks.35.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 130 |
+
"single_transformer_blocks.35.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 131 |
+
"single_transformer_blocks.35.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 132 |
+
"single_transformer_blocks.36.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 133 |
+
"single_transformer_blocks.36.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 134 |
+
"single_transformer_blocks.36.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 135 |
+
"single_transformer_blocks.36.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 136 |
+
"single_transformer_blocks.37.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 137 |
+
"single_transformer_blocks.37.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 138 |
+
"single_transformer_blocks.37.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 139 |
+
"single_transformer_blocks.37.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 140 |
+
"single_transformer_blocks.38.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 141 |
+
"single_transformer_blocks.38.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 142 |
+
"single_transformer_blocks.38.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 143 |
+
"single_transformer_blocks.38.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 144 |
+
"single_transformer_blocks.39.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 145 |
+
"single_transformer_blocks.39.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 146 |
+
"single_transformer_blocks.39.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 147 |
+
"single_transformer_blocks.39.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 148 |
+
"single_transformer_blocks.4.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 149 |
+
"single_transformer_blocks.4.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 150 |
+
"single_transformer_blocks.4.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 151 |
+
"single_transformer_blocks.4.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 152 |
+
"single_transformer_blocks.40.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 153 |
+
"single_transformer_blocks.40.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 154 |
+
"single_transformer_blocks.40.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 155 |
+
"single_transformer_blocks.40.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 156 |
+
"single_transformer_blocks.41.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 157 |
+
"single_transformer_blocks.41.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 158 |
+
"single_transformer_blocks.41.attn.to_out.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 159 |
+
"single_transformer_blocks.41.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 160 |
+
"single_transformer_blocks.42.attn.norm_k.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 161 |
+
"single_transformer_blocks.42.attn.norm_q.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 162 |
+
"single_transformer_blocks.42.attn.to_out.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 163 |
+
"single_transformer_blocks.42.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00006-of-00007.safetensors",
|
| 164 |
+
"single_transformer_blocks.43.attn.norm_k.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 165 |
+
"single_transformer_blocks.43.attn.norm_q.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 166 |
+
"single_transformer_blocks.43.attn.to_out.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 167 |
+
"single_transformer_blocks.43.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 168 |
+
"single_transformer_blocks.44.attn.norm_k.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 169 |
+
"single_transformer_blocks.44.attn.norm_q.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 170 |
+
"single_transformer_blocks.44.attn.to_out.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 171 |
+
"single_transformer_blocks.44.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 172 |
+
"single_transformer_blocks.45.attn.norm_k.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 173 |
+
"single_transformer_blocks.45.attn.norm_q.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 174 |
+
"single_transformer_blocks.45.attn.to_out.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 175 |
+
"single_transformer_blocks.45.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 176 |
+
"single_transformer_blocks.46.attn.norm_k.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 177 |
+
"single_transformer_blocks.46.attn.norm_q.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 178 |
+
"single_transformer_blocks.46.attn.to_out.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 179 |
+
"single_transformer_blocks.46.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 180 |
+
"single_transformer_blocks.47.attn.norm_k.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 181 |
+
"single_transformer_blocks.47.attn.norm_q.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 182 |
+
"single_transformer_blocks.47.attn.to_out.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 183 |
+
"single_transformer_blocks.47.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00007-of-00007.safetensors",
|
| 184 |
+
"single_transformer_blocks.5.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 185 |
+
"single_transformer_blocks.5.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 186 |
+
"single_transformer_blocks.5.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 187 |
+
"single_transformer_blocks.5.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 188 |
+
"single_transformer_blocks.6.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 189 |
+
"single_transformer_blocks.6.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 190 |
+
"single_transformer_blocks.6.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 191 |
+
"single_transformer_blocks.6.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 192 |
+
"single_transformer_blocks.7.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 193 |
+
"single_transformer_blocks.7.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 194 |
+
"single_transformer_blocks.7.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 195 |
+
"single_transformer_blocks.7.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 196 |
+
"single_transformer_blocks.8.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 197 |
+
"single_transformer_blocks.8.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 198 |
+
"single_transformer_blocks.8.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 199 |
+
"single_transformer_blocks.8.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 200 |
+
"single_transformer_blocks.9.attn.norm_k.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 201 |
+
"single_transformer_blocks.9.attn.norm_q.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 202 |
+
"single_transformer_blocks.9.attn.to_out.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 203 |
+
"single_transformer_blocks.9.attn.to_qkv_mlp_proj.weight": "diffusion_pytorch_model-00003-of-00007.safetensors",
|
| 204 |
+
"time_guidance_embed.guidance_embedder.linear_1.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 205 |
+
"time_guidance_embed.guidance_embedder.linear_2.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 206 |
+
"time_guidance_embed.timestep_embedder.linear_1.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 207 |
+
"time_guidance_embed.timestep_embedder.linear_2.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 208 |
+
"transformer_blocks.0.attn.add_k_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 209 |
+
"transformer_blocks.0.attn.add_q_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 210 |
+
"transformer_blocks.0.attn.add_v_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 211 |
+
"transformer_blocks.0.attn.norm_added_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 212 |
+
"transformer_blocks.0.attn.norm_added_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 213 |
+
"transformer_blocks.0.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 214 |
+
"transformer_blocks.0.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 215 |
+
"transformer_blocks.0.attn.to_add_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 216 |
+
"transformer_blocks.0.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 217 |
+
"transformer_blocks.0.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 218 |
+
"transformer_blocks.0.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 219 |
+
"transformer_blocks.0.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 220 |
+
"transformer_blocks.0.ff.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 221 |
+
"transformer_blocks.0.ff.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 222 |
+
"transformer_blocks.0.ff_context.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 223 |
+
"transformer_blocks.0.ff_context.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 224 |
+
"transformer_blocks.1.attn.add_k_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 225 |
+
"transformer_blocks.1.attn.add_q_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 226 |
+
"transformer_blocks.1.attn.add_v_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 227 |
+
"transformer_blocks.1.attn.norm_added_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 228 |
+
"transformer_blocks.1.attn.norm_added_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 229 |
+
"transformer_blocks.1.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 230 |
+
"transformer_blocks.1.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 231 |
+
"transformer_blocks.1.attn.to_add_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 232 |
+
"transformer_blocks.1.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 233 |
+
"transformer_blocks.1.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 234 |
+
"transformer_blocks.1.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 235 |
+
"transformer_blocks.1.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 236 |
+
"transformer_blocks.1.ff.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 237 |
+
"transformer_blocks.1.ff.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 238 |
+
"transformer_blocks.1.ff_context.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 239 |
+
"transformer_blocks.1.ff_context.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 240 |
+
"transformer_blocks.2.attn.add_k_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 241 |
+
"transformer_blocks.2.attn.add_q_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 242 |
+
"transformer_blocks.2.attn.add_v_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 243 |
+
"transformer_blocks.2.attn.norm_added_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 244 |
+
"transformer_blocks.2.attn.norm_added_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 245 |
+
"transformer_blocks.2.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 246 |
+
"transformer_blocks.2.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 247 |
+
"transformer_blocks.2.attn.to_add_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 248 |
+
"transformer_blocks.2.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 249 |
+
"transformer_blocks.2.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 250 |
+
"transformer_blocks.2.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 251 |
+
"transformer_blocks.2.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 252 |
+
"transformer_blocks.2.ff.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 253 |
+
"transformer_blocks.2.ff.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 254 |
+
"transformer_blocks.2.ff_context.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 255 |
+
"transformer_blocks.2.ff_context.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 256 |
+
"transformer_blocks.3.attn.add_k_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 257 |
+
"transformer_blocks.3.attn.add_q_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 258 |
+
"transformer_blocks.3.attn.add_v_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 259 |
+
"transformer_blocks.3.attn.norm_added_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 260 |
+
"transformer_blocks.3.attn.norm_added_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 261 |
+
"transformer_blocks.3.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 262 |
+
"transformer_blocks.3.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 263 |
+
"transformer_blocks.3.attn.to_add_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 264 |
+
"transformer_blocks.3.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 265 |
+
"transformer_blocks.3.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 266 |
+
"transformer_blocks.3.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 267 |
+
"transformer_blocks.3.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 268 |
+
"transformer_blocks.3.ff.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 269 |
+
"transformer_blocks.3.ff.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 270 |
+
"transformer_blocks.3.ff_context.linear_in.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 271 |
+
"transformer_blocks.3.ff_context.linear_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 272 |
+
"transformer_blocks.4.attn.add_k_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 273 |
+
"transformer_blocks.4.attn.add_q_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 274 |
+
"transformer_blocks.4.attn.add_v_proj.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 275 |
+
"transformer_blocks.4.attn.norm_added_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 276 |
+
"transformer_blocks.4.attn.norm_added_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 277 |
+
"transformer_blocks.4.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 278 |
+
"transformer_blocks.4.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 279 |
+
"transformer_blocks.4.attn.to_add_out.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 280 |
+
"transformer_blocks.4.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 281 |
+
"transformer_blocks.4.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 282 |
+
"transformer_blocks.4.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 283 |
+
"transformer_blocks.4.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00007.safetensors",
|
| 284 |
+
"transformer_blocks.4.ff.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 285 |
+
"transformer_blocks.4.ff.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 286 |
+
"transformer_blocks.4.ff_context.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 287 |
+
"transformer_blocks.4.ff_context.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 288 |
+
"transformer_blocks.5.attn.add_k_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 289 |
+
"transformer_blocks.5.attn.add_q_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 290 |
+
"transformer_blocks.5.attn.add_v_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 291 |
+
"transformer_blocks.5.attn.norm_added_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 292 |
+
"transformer_blocks.5.attn.norm_added_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 293 |
+
"transformer_blocks.5.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 294 |
+
"transformer_blocks.5.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 295 |
+
"transformer_blocks.5.attn.to_add_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 296 |
+
"transformer_blocks.5.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 297 |
+
"transformer_blocks.5.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 298 |
+
"transformer_blocks.5.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 299 |
+
"transformer_blocks.5.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 300 |
+
"transformer_blocks.5.ff.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 301 |
+
"transformer_blocks.5.ff.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 302 |
+
"transformer_blocks.5.ff_context.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 303 |
+
"transformer_blocks.5.ff_context.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 304 |
+
"transformer_blocks.6.attn.add_k_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 305 |
+
"transformer_blocks.6.attn.add_q_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 306 |
+
"transformer_blocks.6.attn.add_v_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 307 |
+
"transformer_blocks.6.attn.norm_added_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 308 |
+
"transformer_blocks.6.attn.norm_added_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 309 |
+
"transformer_blocks.6.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 310 |
+
"transformer_blocks.6.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 311 |
+
"transformer_blocks.6.attn.to_add_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 312 |
+
"transformer_blocks.6.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 313 |
+
"transformer_blocks.6.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 314 |
+
"transformer_blocks.6.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 315 |
+
"transformer_blocks.6.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 316 |
+
"transformer_blocks.6.ff.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 317 |
+
"transformer_blocks.6.ff.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 318 |
+
"transformer_blocks.6.ff_context.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 319 |
+
"transformer_blocks.6.ff_context.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 320 |
+
"transformer_blocks.7.attn.add_k_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 321 |
+
"transformer_blocks.7.attn.add_q_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 322 |
+
"transformer_blocks.7.attn.add_v_proj.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 323 |
+
"transformer_blocks.7.attn.norm_added_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 324 |
+
"transformer_blocks.7.attn.norm_added_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 325 |
+
"transformer_blocks.7.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 326 |
+
"transformer_blocks.7.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 327 |
+
"transformer_blocks.7.attn.to_add_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 328 |
+
"transformer_blocks.7.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 329 |
+
"transformer_blocks.7.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 330 |
+
"transformer_blocks.7.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 331 |
+
"transformer_blocks.7.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 332 |
+
"transformer_blocks.7.ff.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 333 |
+
"transformer_blocks.7.ff.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 334 |
+
"transformer_blocks.7.ff_context.linear_in.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 335 |
+
"transformer_blocks.7.ff_context.linear_out.weight": "diffusion_pytorch_model-00002-of-00007.safetensors",
|
| 336 |
+
"x_embedder.weight": "diffusion_pytorch_model-00001-of-00007.safetensors"
|
| 337 |
+
}
|
| 338 |
+
}
|
vae/config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKLFlux2",
|
| 3 |
+
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"batch_norm_eps": 0.0001,
|
| 6 |
+
"batch_norm_momentum": 0.1,
|
| 7 |
+
"block_out_channels": [
|
| 8 |
+
128,
|
| 9 |
+
256,
|
| 10 |
+
512,
|
| 11 |
+
512
|
| 12 |
+
],
|
| 13 |
+
"down_block_types": [
|
| 14 |
+
"DownEncoderBlock2D",
|
| 15 |
+
"DownEncoderBlock2D",
|
| 16 |
+
"DownEncoderBlock2D",
|
| 17 |
+
"DownEncoderBlock2D"
|
| 18 |
+
],
|
| 19 |
+
"force_upcast": true,
|
| 20 |
+
"in_channels": 3,
|
| 21 |
+
"latent_channels": 32,
|
| 22 |
+
"layers_per_block": 2,
|
| 23 |
+
"mid_block_add_attention": true,
|
| 24 |
+
"norm_num_groups": 32,
|
| 25 |
+
"out_channels": 3,
|
| 26 |
+
"patch_size": [
|
| 27 |
+
2,
|
| 28 |
+
2
|
| 29 |
+
],
|
| 30 |
+
"sample_size": 1024,
|
| 31 |
+
"up_block_types": [
|
| 32 |
+
"UpDecoderBlock2D",
|
| 33 |
+
"UpDecoderBlock2D",
|
| 34 |
+
"UpDecoderBlock2D",
|
| 35 |
+
"UpDecoderBlock2D"
|
| 36 |
+
],
|
| 37 |
+
"use_post_quant_conv": true,
|
| 38 |
+
"use_quant_conv": true
|
| 39 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d64f3a68e1cc4f9f4e29b6e0da38a0204fe9a49f2d4053f0ec1fa1ca02f9c4b5
|
| 3 |
+
size 336213556
|