Publish FastVideo LingBot-Video Dense 1.3B conversion
Browse files- README.md +56 -0
- model_index.json +25 -0
- scheduler/scheduler_config.json +6 -0
- text_encoder/config.json +35 -0
- text_encoder/generation_config.json +14 -0
- text_encoder/model-00001-of-00002.safetensors +3 -0
- text_encoder/model-00002-of-00002.safetensors +3 -0
- text_encoder/model.safetensors.index.json +297 -0
- tokenizer/README.md +190 -0
- tokenizer/chat_template.json +4 -0
- tokenizer/config.json +63 -0
- tokenizer/configuration.json +1 -0
- tokenizer/generation_config.json +14 -0
- tokenizer/merges.txt +0 -0
- tokenizer/preprocessor_config.json +21 -0
- tokenizer/tokenizer.json +0 -0
- tokenizer/tokenizer_config.json +239 -0
- tokenizer/video_preprocessor_config.json +21 -0
- tokenizer/vocab.json +0 -0
- transformer/config.json +44 -0
- transformer/diffusion_pytorch_model.safetensors +3 -0
- vae/config.json +56 -0
- vae/diffusion_pytorch_model.safetensors +3 -0
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: fastvideo
|
| 4 |
+
pipeline_tag: text-to-video
|
| 5 |
+
base_model: robbyant/lingbot-video-dense-1.3b
|
| 6 |
+
tags:
|
| 7 |
+
- fastvideo
|
| 8 |
+
- video-generation
|
| 9 |
+
- text-to-video
|
| 10 |
+
- lingbot-video
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# LingBot-Video Dense 1.3B for FastVideo
|
| 14 |
+
|
| 15 |
+
This repository contains the released LingBot-Video Dense 1.3B checkpoint in
|
| 16 |
+
the component layout loaded natively by FastVideo. The transformer, VAE, and
|
| 17 |
+
scheduler tensors come from
|
| 18 |
+
[`robbyant/lingbot-video-dense-1.3b`](https://huggingface.co/robbyant/lingbot-video-dense-1.3b).
|
| 19 |
+
The Qwen3-VL language weights are converted to FastVideo's fused text-only
|
| 20 |
+
encoder layout.
|
| 21 |
+
|
| 22 |
+
The current FastVideo port supports text-to-video inference. T2I, TI2V, vision
|
| 23 |
+
conditioning, prompt rewriting, and automatic negative-prompt generation are
|
| 24 |
+
not included in this package.
|
| 25 |
+
|
| 26 |
+
## Usage
|
| 27 |
+
|
| 28 |
+
Use a FastVideo revision containing
|
| 29 |
+
[LingBot-Video support](https://github.com/hao-ai-lab/FastVideo/pull/1595):
|
| 30 |
+
|
| 31 |
+
```python
|
| 32 |
+
from fastvideo import VideoGenerator
|
| 33 |
+
|
| 34 |
+
generator = VideoGenerator.from_pretrained(
|
| 35 |
+
"FastVideo/LingBot-Video-Dense-1.3B-Diffusers",
|
| 36 |
+
num_gpus=1,
|
| 37 |
+
use_fsdp_inference=False,
|
| 38 |
+
text_encoder_cpu_offload=True,
|
| 39 |
+
)
|
| 40 |
+
result = generator.generate({
|
| 41 |
+
"prompt": "A red fox runs through fresh snow at sunrise.",
|
| 42 |
+
"output": {"output_path": "outputs/lingbot-video", "save_video": True},
|
| 43 |
+
})
|
| 44 |
+
generator.shutdown()
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
The default preset generates 121 frames at 832×480 with 40 denoising steps.
|
| 48 |
+
|
| 49 |
+
## Provenance
|
| 50 |
+
|
| 51 |
+
- Original model: https://huggingface.co/robbyant/lingbot-video-dense-1.3b
|
| 52 |
+
- Original code: https://github.com/robbyant/lingbot-video
|
| 53 |
+
- FastVideo port: https://github.com/hao-ai-lab/FastVideo/pull/1595
|
| 54 |
+
|
| 55 |
+
The original model and this converted package are distributed under the
|
| 56 |
+
Apache-2.0 license declared by the released checkpoint.
|
model_index.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "LingBotVideoDensePipeline",
|
| 3 |
+
"_diffusers_version": "0.39.0",
|
| 4 |
+
"scheduler": [
|
| 5 |
+
"diffusers",
|
| 6 |
+
"FlowUniPCMultistepScheduler"
|
| 7 |
+
],
|
| 8 |
+
"text_encoder": [
|
| 9 |
+
"transformers",
|
| 10 |
+
"LingBotVideoQwen3VLTextModel"
|
| 11 |
+
],
|
| 12 |
+
"tokenizer": [
|
| 13 |
+
"transformers",
|
| 14 |
+
"Qwen3VLProcessor"
|
| 15 |
+
],
|
| 16 |
+
"transformer": [
|
| 17 |
+
"diffusers",
|
| 18 |
+
"LingBotVideoTransformer3DModel"
|
| 19 |
+
],
|
| 20 |
+
"vae": [
|
| 21 |
+
"diffusers",
|
| 22 |
+
"AutoencoderKLWan"
|
| 23 |
+
],
|
| 24 |
+
"workload_type": "video-generation"
|
| 25 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "FlowUniPCMultistepScheduler",
|
| 3 |
+
"num_train_timesteps": 1000,
|
| 4 |
+
"shift": 1,
|
| 5 |
+
"use_dynamic_shifting": false
|
| 6 |
+
}
|
text_encoder/config.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "LingBotVideoQwen3VLTextModel",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"LingBotVideoQwen3VLTextModel"
|
| 5 |
+
],
|
| 6 |
+
"attention_bias": false,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"bos_token_id": 151643,
|
| 9 |
+
"eos_token_id": 151645,
|
| 10 |
+
"head_dim": 128,
|
| 11 |
+
"hidden_act": "silu",
|
| 12 |
+
"hidden_size": 2560,
|
| 13 |
+
"initializer_range": 0.02,
|
| 14 |
+
"intermediate_size": 9728,
|
| 15 |
+
"max_position_embeddings": 262144,
|
| 16 |
+
"mrope_interleaved": true,
|
| 17 |
+
"mrope_section": [
|
| 18 |
+
24,
|
| 19 |
+
20,
|
| 20 |
+
20
|
| 21 |
+
],
|
| 22 |
+
"num_attention_heads": 32,
|
| 23 |
+
"num_hidden_layers": 36,
|
| 24 |
+
"num_key_value_heads": 8,
|
| 25 |
+
"output_hidden_states": true,
|
| 26 |
+
"pad_token_id": 151643,
|
| 27 |
+
"require_processor": true,
|
| 28 |
+
"rms_norm_eps": 1e-06,
|
| 29 |
+
"rope_scaling": null,
|
| 30 |
+
"rope_theta": 5000000,
|
| 31 |
+
"text_len": 37698,
|
| 32 |
+
"tie_word_embeddings": true,
|
| 33 |
+
"use_cache": true,
|
| 34 |
+
"vocab_size": 151936
|
| 35 |
+
}
|
text_encoder/generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"pad_token_id": 151643,
|
| 4 |
+
"do_sample": true,
|
| 5 |
+
"eos_token_id": [
|
| 6 |
+
151645,
|
| 7 |
+
151643
|
| 8 |
+
],
|
| 9 |
+
"top_k": 20,
|
| 10 |
+
"top_p": 0.8,
|
| 11 |
+
"repetition_penalty": 1.0,
|
| 12 |
+
"temperature": 0.7,
|
| 13 |
+
"transformers_version": "4.56.0"
|
| 14 |
+
}
|
text_encoder/model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8bb97d9e4d755aeaf6851f1a9cd1f9c3f6f1ea19db32dd0b4dd59cc4e0a46e8c
|
| 3 |
+
size 4967217656
|
text_encoder/model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8fa1dbe584ceb840d1a0a61aa6fc67115ab4a8ddda71fec5e50d32a58cb76cff
|
| 3 |
+
size 3077750328
|
text_encoder/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,297 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 8044936192
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 7 |
+
"layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"layers.0.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"layers.0.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"layers.1.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"layers.1.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"layers.10.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"layers.10.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"layers.11.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"layers.11.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"layers.12.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"layers.12.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 49 |
+
"layers.13.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 52 |
+
"layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 54 |
+
"layers.13.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"layers.14.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 61 |
+
"layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"layers.14.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 64 |
+
"layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"layers.15.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 66 |
+
"layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"layers.15.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 72 |
+
"layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 73 |
+
"layers.16.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 75 |
+
"layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 76 |
+
"layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 78 |
+
"layers.16.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 81 |
+
"layers.17.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
+
"layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 83 |
+
"layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 84 |
+
"layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 85 |
+
"layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 86 |
+
"layers.17.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 87 |
+
"layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 88 |
+
"layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
+
"layers.18.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 90 |
+
"layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 91 |
+
"layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 92 |
+
"layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
+
"layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 94 |
+
"layers.18.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 95 |
+
"layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 96 |
+
"layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 97 |
+
"layers.19.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 98 |
+
"layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 100 |
+
"layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 102 |
+
"layers.19.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"layers.2.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 109 |
+
"layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"layers.2.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 112 |
+
"layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 113 |
+
"layers.20.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 114 |
+
"layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"layers.20.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 120 |
+
"layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 121 |
+
"layers.21.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 122 |
+
"layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 123 |
+
"layers.21.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 124 |
+
"layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 125 |
+
"layers.21.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 126 |
+
"layers.21.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 127 |
+
"layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 128 |
+
"layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 129 |
+
"layers.22.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 130 |
+
"layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 131 |
+
"layers.22.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 132 |
+
"layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 133 |
+
"layers.22.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 134 |
+
"layers.22.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 135 |
+
"layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 136 |
+
"layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 137 |
+
"layers.23.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 138 |
+
"layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 139 |
+
"layers.23.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 140 |
+
"layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 141 |
+
"layers.23.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 142 |
+
"layers.23.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 143 |
+
"layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 144 |
+
"layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 145 |
+
"layers.24.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 146 |
+
"layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 147 |
+
"layers.24.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 148 |
+
"layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 149 |
+
"layers.24.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 150 |
+
"layers.24.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 151 |
+
"layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 152 |
+
"layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 153 |
+
"layers.25.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 154 |
+
"layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 155 |
+
"layers.25.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 156 |
+
"layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 157 |
+
"layers.25.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 158 |
+
"layers.25.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 159 |
+
"layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 160 |
+
"layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 161 |
+
"layers.26.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 162 |
+
"layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 163 |
+
"layers.26.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 164 |
+
"layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 165 |
+
"layers.26.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 166 |
+
"layers.26.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 167 |
+
"layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 168 |
+
"layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 169 |
+
"layers.27.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 170 |
+
"layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 171 |
+
"layers.27.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 172 |
+
"layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 173 |
+
"layers.27.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 174 |
+
"layers.27.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 175 |
+
"layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 176 |
+
"layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 177 |
+
"layers.28.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 178 |
+
"layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 179 |
+
"layers.28.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 180 |
+
"layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 181 |
+
"layers.28.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 182 |
+
"layers.28.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 183 |
+
"layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 184 |
+
"layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 185 |
+
"layers.29.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 186 |
+
"layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 187 |
+
"layers.29.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 188 |
+
"layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 189 |
+
"layers.29.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 190 |
+
"layers.29.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 191 |
+
"layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 192 |
+
"layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 193 |
+
"layers.3.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 194 |
+
"layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 195 |
+
"layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 196 |
+
"layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 197 |
+
"layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 198 |
+
"layers.3.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 199 |
+
"layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 200 |
+
"layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 201 |
+
"layers.30.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 202 |
+
"layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 203 |
+
"layers.30.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 204 |
+
"layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 205 |
+
"layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 206 |
+
"layers.30.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 207 |
+
"layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 208 |
+
"layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 209 |
+
"layers.31.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 210 |
+
"layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 211 |
+
"layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 212 |
+
"layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 213 |
+
"layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 214 |
+
"layers.31.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 215 |
+
"layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 216 |
+
"layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 217 |
+
"layers.32.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 218 |
+
"layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 219 |
+
"layers.32.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 220 |
+
"layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 221 |
+
"layers.32.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 222 |
+
"layers.32.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 223 |
+
"layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 224 |
+
"layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 225 |
+
"layers.33.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 226 |
+
"layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 227 |
+
"layers.33.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 228 |
+
"layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 229 |
+
"layers.33.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 230 |
+
"layers.33.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 231 |
+
"layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 232 |
+
"layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 233 |
+
"layers.34.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 234 |
+
"layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 235 |
+
"layers.34.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 236 |
+
"layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 237 |
+
"layers.34.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 238 |
+
"layers.34.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 239 |
+
"layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 240 |
+
"layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 241 |
+
"layers.35.mlp.gate_up_proj.weight": "model-00002-of-00002.safetensors",
|
| 242 |
+
"layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 243 |
+
"layers.35.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 244 |
+
"layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 245 |
+
"layers.35.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 246 |
+
"layers.35.self_attn.qkv_proj.weight": "model-00002-of-00002.safetensors",
|
| 247 |
+
"layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 248 |
+
"layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 249 |
+
"layers.4.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 250 |
+
"layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 251 |
+
"layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 252 |
+
"layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 253 |
+
"layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 254 |
+
"layers.4.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 255 |
+
"layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 256 |
+
"layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 257 |
+
"layers.5.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 258 |
+
"layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 259 |
+
"layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 260 |
+
"layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 261 |
+
"layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 262 |
+
"layers.5.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 263 |
+
"layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 264 |
+
"layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 265 |
+
"layers.6.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 268 |
+
"layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 270 |
+
"layers.6.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 272 |
+
"layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 273 |
+
"layers.7.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 274 |
+
"layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 275 |
+
"layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 276 |
+
"layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 277 |
+
"layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 278 |
+
"layers.7.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 279 |
+
"layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 280 |
+
"layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 281 |
+
"layers.8.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 282 |
+
"layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 283 |
+
"layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 284 |
+
"layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 285 |
+
"layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 286 |
+
"layers.8.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 287 |
+
"layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 288 |
+
"layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 289 |
+
"layers.9.mlp.gate_up_proj.weight": "model-00001-of-00002.safetensors",
|
| 290 |
+
"layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 291 |
+
"layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 292 |
+
"layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 293 |
+
"layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 294 |
+
"layers.9.self_attn.qkv_proj.weight": "model-00001-of-00002.safetensors",
|
| 295 |
+
"norm.weight": "model-00002-of-00002.safetensors"
|
| 296 |
+
}
|
| 297 |
+
}
|
tokenizer/README.md
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-text-to-text
|
| 4 |
+
---
|
| 5 |
+
<a href="https://chat.qwenlm.ai/" target="_blank" style="margin: 2px;">
|
| 6 |
+
<img alt="Chat" src="https://img.shields.io/badge/%F0%9F%92%9C%EF%B8%8F%20Qwen%20Chat%20-536af5" style="display: inline-block; vertical-align: middle;"/>
|
| 7 |
+
</a>
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
# Qwen3-VL-4B-Instruct
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
Meet Qwen3-VL — the most powerful vision-language model in the Qwen series to date.
|
| 14 |
+
|
| 15 |
+
This generation delivers comprehensive upgrades across the board: superior text understanding & generation, deeper visual perception & reasoning, extended context length, enhanced spatial and video dynamics comprehension, and stronger agent interaction capabilities.
|
| 16 |
+
|
| 17 |
+
Available in Dense and MoE architectures that scale from edge to cloud, with Instruct and reasoning‑enhanced Thinking editions for flexible, on‑demand deployment.
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
#### Key Enhancements:
|
| 21 |
+
|
| 22 |
+
* **Visual Agent**: Operates PC/mobile GUIs—recognizes elements, understands functions, invokes tools, completes tasks.
|
| 23 |
+
|
| 24 |
+
* **Visual Coding Boost**: Generates Draw.io/HTML/CSS/JS from images/videos.
|
| 25 |
+
|
| 26 |
+
* **Advanced Spatial Perception**: Judges object positions, viewpoints, and occlusions; provides stronger 2D grounding and enables 3D grounding for spatial reasoning and embodied AI.
|
| 27 |
+
|
| 28 |
+
* **Long Context & Video Understanding**: Native 256K context, expandable to 1M; handles books and hours-long video with full recall and second-level indexing.
|
| 29 |
+
|
| 30 |
+
* **Enhanced Multimodal Reasoning**: Excels in STEM/Math—causal analysis and logical, evidence-based answers.
|
| 31 |
+
|
| 32 |
+
* **Upgraded Visual Recognition**: Broader, higher-quality pretraining is able to “recognize everything”—celebrities, anime, products, landmarks, flora/fauna, etc.
|
| 33 |
+
|
| 34 |
+
* **Expanded OCR**: Supports 32 languages (up from 19); robust in low light, blur, and tilt; better with rare/ancient characters and jargon; improved long-document structure parsing.
|
| 35 |
+
|
| 36 |
+
* **Text Understanding on par with pure LLMs**: Seamless text–vision fusion for lossless, unified comprehension.
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
#### Model Architecture Updates:
|
| 40 |
+
|
| 41 |
+
<p align="center">
|
| 42 |
+
<img src="https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3-VL/qwen3vl_arc.jpg" width="80%"/>
|
| 43 |
+
<p>
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
1. **Interleaved-MRoPE**: Full‑frequency allocation over time, width, and height via robust positional embeddings, enhancing long‑horizon video reasoning.
|
| 47 |
+
|
| 48 |
+
2. **DeepStack**: Fuses multi‑level ViT features to capture fine‑grained details and sharpen image–text alignment.
|
| 49 |
+
|
| 50 |
+
3. **Text–Timestamp Alignment:** Moves beyond T‑RoPE to precise, timestamp‑grounded event localization for stronger video temporal modeling.
|
| 51 |
+
|
| 52 |
+
This is the weight repository for Qwen3-VL-4B-Instruct.
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
## Model Performance
|
| 58 |
+
|
| 59 |
+
**Multimodal performance**
|
| 60 |
+
|
| 61 |
+

|
| 62 |
+
|
| 63 |
+
**Pure text performance**
|
| 64 |
+

|
| 65 |
+
|
| 66 |
+
## Quickstart
|
| 67 |
+
|
| 68 |
+
Below, we provide simple examples to show how to use Qwen3-VL with 🤖 ModelScope and 🤗 Transformers.
|
| 69 |
+
|
| 70 |
+
The code of Qwen3-VL has been in the latest Hugging Face transformers and we advise you to build from source with command:
|
| 71 |
+
```
|
| 72 |
+
pip install git+https://github.com/huggingface/transformers
|
| 73 |
+
# pip install transformers==4.57.0 # currently, V4.57.0 is not released
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
### Using 🤗 Transformers to Chat
|
| 77 |
+
|
| 78 |
+
Here we show a code snippet to show how to use the chat model with `transformers`:
|
| 79 |
+
|
| 80 |
+
```python
|
| 81 |
+
from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
|
| 82 |
+
|
| 83 |
+
# default: Load the model on the available device(s)
|
| 84 |
+
model = Qwen3VLForConditionalGeneration.from_pretrained(
|
| 85 |
+
"Qwen/Qwen3-VL-4B-Instruct", dtype="auto", device_map="auto"
|
| 86 |
+
)
|
| 87 |
+
|
| 88 |
+
# We recommend enabling flash_attention_2 for better acceleration and memory saving, especially in multi-image and video scenarios.
|
| 89 |
+
# model = Qwen3VLForConditionalGeneration.from_pretrained(
|
| 90 |
+
# "Qwen/Qwen3-VL-4B-Instruct",
|
| 91 |
+
# dtype=torch.bfloat16,
|
| 92 |
+
# attn_implementation="flash_attention_2",
|
| 93 |
+
# device_map="auto",
|
| 94 |
+
# )
|
| 95 |
+
|
| 96 |
+
processor = AutoProcessor.from_pretrained("Qwen/Qwen/Qwen3-VL-4B-Instruct")
|
| 97 |
+
|
| 98 |
+
messages = [
|
| 99 |
+
{
|
| 100 |
+
"role": "user",
|
| 101 |
+
"content": [
|
| 102 |
+
{
|
| 103 |
+
"type": "image",
|
| 104 |
+
"image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg",
|
| 105 |
+
},
|
| 106 |
+
{"type": "text", "text": "Describe this image."},
|
| 107 |
+
],
|
| 108 |
+
}
|
| 109 |
+
]
|
| 110 |
+
|
| 111 |
+
# Preparation for inference
|
| 112 |
+
inputs = processor.apply_chat_template(
|
| 113 |
+
messages,
|
| 114 |
+
tokenize=True,
|
| 115 |
+
add_generation_prompt=True,
|
| 116 |
+
return_dict=True,
|
| 117 |
+
return_tensors="pt"
|
| 118 |
+
)
|
| 119 |
+
|
| 120 |
+
# Inference: Generation of the output
|
| 121 |
+
generated_ids = model.generate(**inputs, max_new_tokens=128)
|
| 122 |
+
generated_ids_trimmed = [
|
| 123 |
+
out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
|
| 124 |
+
]
|
| 125 |
+
output_text = processor.batch_decode(
|
| 126 |
+
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
|
| 127 |
+
)
|
| 128 |
+
print(output_text)
|
| 129 |
+
```
|
| 130 |
+
|
| 131 |
+
### Generation Hyperparameters
|
| 132 |
+
#### VL
|
| 133 |
+
```bash
|
| 134 |
+
export greedy='false'
|
| 135 |
+
export top_p=0.8
|
| 136 |
+
export top_k=20
|
| 137 |
+
export temperature=0.7
|
| 138 |
+
export repetition_penalty=1.0
|
| 139 |
+
export presence_penalty=1.5
|
| 140 |
+
export out_seq_length=16384
|
| 141 |
+
```
|
| 142 |
+
|
| 143 |
+
#### Text
|
| 144 |
+
```bash
|
| 145 |
+
export greedy='false'
|
| 146 |
+
export top_p=1.0
|
| 147 |
+
export top_k=40
|
| 148 |
+
export repetition_penalty=1.0
|
| 149 |
+
export presence_penalty=2.0
|
| 150 |
+
export temperature=1.0
|
| 151 |
+
export out_seq_length=32768
|
| 152 |
+
```
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
## Citation
|
| 156 |
+
|
| 157 |
+
If you find our work helpful, feel free to give us a cite.
|
| 158 |
+
|
| 159 |
+
```
|
| 160 |
+
@misc{qwen3technicalreport,
|
| 161 |
+
title={Qwen3 Technical Report},
|
| 162 |
+
author={Qwen Team},
|
| 163 |
+
year={2025},
|
| 164 |
+
eprint={2505.09388},
|
| 165 |
+
archivePrefix={arXiv},
|
| 166 |
+
primaryClass={cs.CL},
|
| 167 |
+
url={https://arxiv.org/abs/2505.09388},
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
@article{Qwen2.5-VL,
|
| 171 |
+
title={Qwen2.5-VL Technical Report},
|
| 172 |
+
author={Bai, Shuai and Chen, Keqin and Liu, Xuejing and Wang, Jialin and Ge, Wenbin and Song, Sibo and Dang, Kai and Wang, Peng and Wang, Shijie and Tang, Jun and Zhong, Humen and Zhu, Yuanzhi and Yang, Mingkun and Li, Zhaohai and Wan, Jianqiang and Wang, Pengfei and Ding, Wei and Fu, Zheren and Xu, Yiheng and Ye, Jiabo and Zhang, Xi and Xie, Tianbao and Cheng, Zesen and Zhang, Hang and Yang, Zhibo and Xu, Haiyang and Lin, Junyang},
|
| 173 |
+
journal={arXiv preprint arXiv:2502.13923},
|
| 174 |
+
year={2025}
|
| 175 |
+
}
|
| 176 |
+
|
| 177 |
+
@article{Qwen2VL,
|
| 178 |
+
title={Qwen2-VL: Enhancing Vision-Language Model's Perception of the World at Any Resolution},
|
| 179 |
+
author={Wang, Peng and Bai, Shuai and Tan, Sinan and Wang, Shijie and Fan, Zhihao and Bai, Jinze and Chen, Keqin and Liu, Xuejing and Wang, Jialin and Ge, Wenbin and Fan, Yang and Dang, Kai and Du, Mengfei and Ren, Xuancheng and Men, Rui and Liu, Dayiheng and Zhou, Chang and Zhou, Jingren and Lin, Junyang},
|
| 180 |
+
journal={arXiv preprint arXiv:2409.12191},
|
| 181 |
+
year={2024}
|
| 182 |
+
}
|
| 183 |
+
|
| 184 |
+
@article{Qwen-VL,
|
| 185 |
+
title={Qwen-VL: A Versatile Vision-Language Model for Understanding, Localization, Text Reading, and Beyond},
|
| 186 |
+
author={Bai, Jinze and Bai, Shuai and Yang, Shusheng and Wang, Shijie and Tan, Sinan and Wang, Peng and Lin, Junyang and Zhou, Chang and Zhou, Jingren},
|
| 187 |
+
journal={arXiv preprint arXiv:2308.12966},
|
| 188 |
+
year={2023}
|
| 189 |
+
}
|
| 190 |
+
```
|
tokenizer/chat_template.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n\\n' }}\n {%- endif %}\n {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- for message in messages %}\n {%- if message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content_item in message.content %}\n {%- if 'text' in content_item %}\n {{- content_item.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and message.content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n"
|
| 3 |
+
}
|
| 4 |
+
|
tokenizer/config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3VLForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"image_token_id": 151655,
|
| 6 |
+
"model_type": "qwen3_vl",
|
| 7 |
+
"text_config": {
|
| 8 |
+
"attention_bias": false,
|
| 9 |
+
"attention_dropout": 0.0,
|
| 10 |
+
"bos_token_id": 151643,
|
| 11 |
+
"dtype": "bfloat16",
|
| 12 |
+
"eos_token_id": 151645,
|
| 13 |
+
"head_dim": 128,
|
| 14 |
+
"hidden_act": "silu",
|
| 15 |
+
"hidden_size": 2560,
|
| 16 |
+
"initializer_range": 0.02,
|
| 17 |
+
"intermediate_size": 9728,
|
| 18 |
+
"max_position_embeddings": 262144,
|
| 19 |
+
"model_type": "qwen3_vl_text",
|
| 20 |
+
"num_attention_heads": 32,
|
| 21 |
+
"num_hidden_layers": 36,
|
| 22 |
+
"num_key_value_heads": 8,
|
| 23 |
+
"rms_norm_eps": 1e-06,
|
| 24 |
+
"rope_scaling": {
|
| 25 |
+
"mrope_interleaved": true,
|
| 26 |
+
"mrope_section": [
|
| 27 |
+
24,
|
| 28 |
+
20,
|
| 29 |
+
20
|
| 30 |
+
],
|
| 31 |
+
"rope_type": "default"
|
| 32 |
+
},
|
| 33 |
+
"rope_theta": 5000000,
|
| 34 |
+
"tie_word_embeddings": true,
|
| 35 |
+
"use_cache": true,
|
| 36 |
+
"vocab_size": 151936
|
| 37 |
+
},
|
| 38 |
+
"tie_word_embeddings": true,
|
| 39 |
+
"transformers_version": "4.57.0.dev0",
|
| 40 |
+
"video_token_id": 151656,
|
| 41 |
+
"vision_config": {
|
| 42 |
+
"deepstack_visual_indexes": [
|
| 43 |
+
5,
|
| 44 |
+
11,
|
| 45 |
+
17
|
| 46 |
+
],
|
| 47 |
+
"depth": 24,
|
| 48 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 49 |
+
"hidden_size": 1024,
|
| 50 |
+
"in_channels": 3,
|
| 51 |
+
"initializer_range": 0.02,
|
| 52 |
+
"intermediate_size": 4096,
|
| 53 |
+
"model_type": "qwen3_vl",
|
| 54 |
+
"num_heads": 16,
|
| 55 |
+
"num_position_embeddings": 2304,
|
| 56 |
+
"out_hidden_size": 2560,
|
| 57 |
+
"patch_size": 16,
|
| 58 |
+
"spatial_merge_size": 2,
|
| 59 |
+
"temporal_patch_size": 2
|
| 60 |
+
},
|
| 61 |
+
"vision_end_token_id": 151653,
|
| 62 |
+
"vision_start_token_id": 151652
|
| 63 |
+
}
|
tokenizer/configuration.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"framework": "pytorch", "task": "text-generation", "allow_remote": true}
|
tokenizer/generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"pad_token_id": 151643,
|
| 4 |
+
"do_sample": true,
|
| 5 |
+
"eos_token_id": [
|
| 6 |
+
151645,
|
| 7 |
+
151643
|
| 8 |
+
],
|
| 9 |
+
"top_k": 20,
|
| 10 |
+
"top_p": 0.8,
|
| 11 |
+
"repetition_penalty": 1.0,
|
| 12 |
+
"temperature": 0.7,
|
| 13 |
+
"transformers_version": "4.56.0"
|
| 14 |
+
}
|
tokenizer/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer/preprocessor_config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"size": {
|
| 3 |
+
"longest_edge": 16777216,
|
| 4 |
+
"shortest_edge": 65536
|
| 5 |
+
},
|
| 6 |
+
"patch_size": 16,
|
| 7 |
+
"temporal_patch_size": 2,
|
| 8 |
+
"merge_size": 2,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"processor_class": "Qwen3VLProcessor",
|
| 20 |
+
"image_processor_type": "Qwen2VLImageProcessorFast"
|
| 21 |
+
}
|
tokenizer/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer/tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n\\n' }}\n {%- endif %}\n {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- for message in messages %}\n {%- if message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content_item in message.content %}\n {%- if 'text' in content_item %}\n {{- content_item.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and message.content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
| 231 |
+
"clean_up_tokenization_spaces": false,
|
| 232 |
+
"eos_token": "<|im_end|>",
|
| 233 |
+
"errors": "replace",
|
| 234 |
+
"model_max_length": 262144,
|
| 235 |
+
"pad_token": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
tokenizer/video_preprocessor_config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"size": {
|
| 3 |
+
"longest_edge": 25165824,
|
| 4 |
+
"shortest_edge": 4096
|
| 5 |
+
},
|
| 6 |
+
"patch_size": 16,
|
| 7 |
+
"temporal_patch_size": 2,
|
| 8 |
+
"merge_size": 2,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"processor_class": "Qwen3VLProcessor",
|
| 20 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 21 |
+
}
|
tokenizer/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
transformer/config.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "LingBotVideoTransformer3DModel",
|
| 3 |
+
"_diffusers_version": "0.37.0",
|
| 4 |
+
"axes_dims": [
|
| 5 |
+
32,
|
| 6 |
+
48,
|
| 7 |
+
48
|
| 8 |
+
],
|
| 9 |
+
"axes_lens": [
|
| 10 |
+
8192,
|
| 11 |
+
1024,
|
| 12 |
+
1024
|
| 13 |
+
],
|
| 14 |
+
"decoder_sparse_step": 1,
|
| 15 |
+
"depth": 24,
|
| 16 |
+
"freq_dim": 256,
|
| 17 |
+
"hidden_size": 2048,
|
| 18 |
+
"in_channels": 16,
|
| 19 |
+
"intermediate_size": 6144,
|
| 20 |
+
"mlp_only_layers": [],
|
| 21 |
+
"moe_intermediate_size": 512,
|
| 22 |
+
"n_group": null,
|
| 23 |
+
"n_shared_experts": null,
|
| 24 |
+
"norm_eps": 1e-06,
|
| 25 |
+
"norm_topk_prob": true,
|
| 26 |
+
"num_attention_heads": 16,
|
| 27 |
+
"num_experts": 0,
|
| 28 |
+
"num_experts_per_tok": 8,
|
| 29 |
+
"out_bias": true,
|
| 30 |
+
"out_channels": 16,
|
| 31 |
+
"patch_embed_bias": true,
|
| 32 |
+
"patch_size": [
|
| 33 |
+
1,
|
| 34 |
+
2,
|
| 35 |
+
2
|
| 36 |
+
],
|
| 37 |
+
"qkv_bias": false,
|
| 38 |
+
"rope_theta": 256.0,
|
| 39 |
+
"routed_scaling_factor": 1.0,
|
| 40 |
+
"score_func": "sigmoid",
|
| 41 |
+
"text_dim": 2560,
|
| 42 |
+
"timestep_mlp_bias": true,
|
| 43 |
+
"topk_group": null
|
| 44 |
+
}
|
transformer/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:948b15845c0fe24fdfa598204ffc2d80b96a4ad2ab5b03d303f0b6d8b0e9b494
|
| 3 |
+
size 2791967328
|
vae/config.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKLWan",
|
| 3 |
+
"_diffusers_version": "0.33.0.dev0",
|
| 4 |
+
"attn_scales": [],
|
| 5 |
+
"base_dim": 96,
|
| 6 |
+
"dim_mult": [
|
| 7 |
+
1,
|
| 8 |
+
2,
|
| 9 |
+
4,
|
| 10 |
+
4
|
| 11 |
+
],
|
| 12 |
+
"dropout": 0.0,
|
| 13 |
+
"latents_mean": [
|
| 14 |
+
-0.7571,
|
| 15 |
+
-0.7089,
|
| 16 |
+
-0.9113,
|
| 17 |
+
0.1075,
|
| 18 |
+
-0.1745,
|
| 19 |
+
0.9653,
|
| 20 |
+
-0.1517,
|
| 21 |
+
1.5508,
|
| 22 |
+
0.4134,
|
| 23 |
+
-0.0715,
|
| 24 |
+
0.5517,
|
| 25 |
+
-0.3632,
|
| 26 |
+
-0.1922,
|
| 27 |
+
-0.9497,
|
| 28 |
+
0.2503,
|
| 29 |
+
-0.2921
|
| 30 |
+
],
|
| 31 |
+
"latents_std": [
|
| 32 |
+
2.8184,
|
| 33 |
+
1.4541,
|
| 34 |
+
2.3275,
|
| 35 |
+
2.6558,
|
| 36 |
+
1.2196,
|
| 37 |
+
1.7708,
|
| 38 |
+
2.6052,
|
| 39 |
+
2.0743,
|
| 40 |
+
3.2687,
|
| 41 |
+
2.1526,
|
| 42 |
+
2.8652,
|
| 43 |
+
1.5579,
|
| 44 |
+
1.6382,
|
| 45 |
+
1.1253,
|
| 46 |
+
2.8251,
|
| 47 |
+
1.916
|
| 48 |
+
],
|
| 49 |
+
"num_res_blocks": 2,
|
| 50 |
+
"temperal_downsample": [
|
| 51 |
+
false,
|
| 52 |
+
true,
|
| 53 |
+
true
|
| 54 |
+
],
|
| 55 |
+
"z_dim": 16
|
| 56 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6e524b3fffede1787a74e81b30976dce5400c4439ba64222168e607ed19e793
|
| 3 |
+
size 507591892
|