Text-to-Image
Diffusers
Safetensors
Krea2Pipeline
image-generation
diffusion
flow-matching
dit
krea
turbo
Instructions to use CalamitousFelicitousness/Krea-2-Turbo-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CalamitousFelicitousness/Krea-2-Turbo-Diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("CalamitousFelicitousness/Krea-2-Turbo-Diffusers", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- model_index.json +24 -0
- scheduler/scheduler_config.json +18 -0
- text_encoder/config.json +66 -0
- text_encoder/model.safetensors +3 -0
- tokenizer/chat_template.jinja +120 -0
- tokenizer/tokenizer.json +3 -0
- tokenizer/tokenizer_config.json +30 -0
- transformer/config.json +19 -0
- transformer/diffusion_pytorch_model-00001-of-00006.safetensors +3 -0
- transformer/diffusion_pytorch_model-00002-of-00006.safetensors +3 -0
- transformer/diffusion_pytorch_model-00003-of-00006.safetensors +3 -0
- transformer/diffusion_pytorch_model-00004-of-00006.safetensors +3 -0
- transformer/diffusion_pytorch_model-00005-of-00006.safetensors +3 -0
- transformer/diffusion_pytorch_model-00006-of-00006.safetensors +3 -0
- transformer/diffusion_pytorch_model.safetensors.index.json +439 -0
- vae/config.json +58 -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
|
model_index.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "Krea2Pipeline",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"scheduler": [
|
| 5 |
+
"diffusers",
|
| 6 |
+
"FlowMatchEulerDiscreteScheduler"
|
| 7 |
+
],
|
| 8 |
+
"text_encoder": [
|
| 9 |
+
"transformers",
|
| 10 |
+
"Qwen3VLModel"
|
| 11 |
+
],
|
| 12 |
+
"tokenizer": [
|
| 13 |
+
"transformers",
|
| 14 |
+
"Qwen2Tokenizer"
|
| 15 |
+
],
|
| 16 |
+
"transformer": [
|
| 17 |
+
"diffusers",
|
| 18 |
+
"Krea2Transformer2DModel"
|
| 19 |
+
],
|
| 20 |
+
"vae": [
|
| 21 |
+
"diffusers",
|
| 22 |
+
"AutoencoderKLQwenImage"
|
| 23 |
+
]
|
| 24 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "FlowMatchEulerDiscreteScheduler",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"base_image_seq_len": 256,
|
| 5 |
+
"base_shift": 1.15,
|
| 6 |
+
"invert_sigmas": false,
|
| 7 |
+
"max_image_seq_len": 6400,
|
| 8 |
+
"max_shift": 1.15,
|
| 9 |
+
"num_train_timesteps": 1000,
|
| 10 |
+
"shift": 1.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,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3VLModel"
|
| 4 |
+
],
|
| 5 |
+
"dtype": "bfloat16",
|
| 6 |
+
"image_token_id": 151655,
|
| 7 |
+
"model_type": "qwen3_vl",
|
| 8 |
+
"text_config": {
|
| 9 |
+
"attention_bias": false,
|
| 10 |
+
"attention_dropout": 0.0,
|
| 11 |
+
"bos_token_id": 151643,
|
| 12 |
+
"dtype": "bfloat16",
|
| 13 |
+
"eos_token_id": 151645,
|
| 14 |
+
"head_dim": 128,
|
| 15 |
+
"hidden_act": "silu",
|
| 16 |
+
"hidden_size": 2560,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 9728,
|
| 19 |
+
"max_position_embeddings": 262144,
|
| 20 |
+
"model_type": "qwen3_vl_text",
|
| 21 |
+
"num_attention_heads": 32,
|
| 22 |
+
"num_hidden_layers": 36,
|
| 23 |
+
"num_key_value_heads": 8,
|
| 24 |
+
"pad_token_id": null,
|
| 25 |
+
"rms_norm_eps": 1e-06,
|
| 26 |
+
"rope_parameters": {
|
| 27 |
+
"mrope_interleaved": true,
|
| 28 |
+
"mrope_section": [
|
| 29 |
+
24,
|
| 30 |
+
20,
|
| 31 |
+
20
|
| 32 |
+
],
|
| 33 |
+
"rope_theta": 5000000,
|
| 34 |
+
"rope_type": "default"
|
| 35 |
+
},
|
| 36 |
+
"tie_word_embeddings": true,
|
| 37 |
+
"use_cache": true,
|
| 38 |
+
"vocab_size": 151936
|
| 39 |
+
},
|
| 40 |
+
"tie_word_embeddings": true,
|
| 41 |
+
"transformers_version": "5.13.0.dev0",
|
| 42 |
+
"video_token_id": 151656,
|
| 43 |
+
"vision_config": {
|
| 44 |
+
"deepstack_visual_indexes": [
|
| 45 |
+
5,
|
| 46 |
+
11,
|
| 47 |
+
17
|
| 48 |
+
],
|
| 49 |
+
"depth": 24,
|
| 50 |
+
"dtype": "bfloat16",
|
| 51 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 52 |
+
"hidden_size": 1024,
|
| 53 |
+
"in_channels": 3,
|
| 54 |
+
"initializer_range": 0.02,
|
| 55 |
+
"intermediate_size": 4096,
|
| 56 |
+
"model_type": "qwen3_vl_vision",
|
| 57 |
+
"num_heads": 16,
|
| 58 |
+
"num_position_embeddings": 2304,
|
| 59 |
+
"out_hidden_size": 2560,
|
| 60 |
+
"patch_size": 16,
|
| 61 |
+
"spatial_merge_size": 2,
|
| 62 |
+
"temporal_patch_size": 2
|
| 63 |
+
},
|
| 64 |
+
"vision_end_token_id": 151653,
|
| 65 |
+
"vision_start_token_id": 151652
|
| 66 |
+
}
|
text_encoder/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8434db05292f95e0041589a7c82abeb39385be59c85b54ae11caa7b45e9f4f13
|
| 3 |
+
size 8875715136
|
tokenizer/chat_template.jinja
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{%- if messages[0].content is string %}
|
| 5 |
+
{{- messages[0].content }}
|
| 6 |
+
{%- else %}
|
| 7 |
+
{%- for content in messages[0].content %}
|
| 8 |
+
{%- if 'text' in content %}
|
| 9 |
+
{{- content.text }}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- endfor %}
|
| 12 |
+
{%- endif %}
|
| 13 |
+
{{- '\n\n' }}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{{- "# 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>" }}
|
| 16 |
+
{%- for tool in tools %}
|
| 17 |
+
{{- "\n" }}
|
| 18 |
+
{{- tool | tojson }}
|
| 19 |
+
{%- endfor %}
|
| 20 |
+
{{- "\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" }}
|
| 21 |
+
{%- else %}
|
| 22 |
+
{%- if messages[0].role == 'system' %}
|
| 23 |
+
{{- '<|im_start|>system\n' }}
|
| 24 |
+
{%- if messages[0].content is string %}
|
| 25 |
+
{{- messages[0].content }}
|
| 26 |
+
{%- else %}
|
| 27 |
+
{%- for content in messages[0].content %}
|
| 28 |
+
{%- if 'text' in content %}
|
| 29 |
+
{{- content.text }}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- endfor %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '<|im_end|>\n' }}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- endif %}
|
| 36 |
+
{%- set image_count = namespace(value=0) %}
|
| 37 |
+
{%- set video_count = namespace(value=0) %}
|
| 38 |
+
{%- for message in messages %}
|
| 39 |
+
{%- if message.role == "user" %}
|
| 40 |
+
{{- '<|im_start|>' + message.role + '\n' }}
|
| 41 |
+
{%- if message.content is string %}
|
| 42 |
+
{{- message.content }}
|
| 43 |
+
{%- else %}
|
| 44 |
+
{%- for content in message.content %}
|
| 45 |
+
{%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
|
| 46 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 47 |
+
{%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
|
| 48 |
+
<|vision_start|><|image_pad|><|vision_end|>
|
| 49 |
+
{%- elif content.type == 'video' or 'video' in content %}
|
| 50 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 51 |
+
{%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
|
| 52 |
+
<|vision_start|><|video_pad|><|vision_end|>
|
| 53 |
+
{%- elif 'text' in content %}
|
| 54 |
+
{{- content.text }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- endfor %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{{- '<|im_end|>\n' }}
|
| 59 |
+
{%- elif message.role == "assistant" %}
|
| 60 |
+
{{- '<|im_start|>' + message.role + '\n' }}
|
| 61 |
+
{%- if message.content is string %}
|
| 62 |
+
{{- message.content }}
|
| 63 |
+
{%- else %}
|
| 64 |
+
{%- for content_item in message.content %}
|
| 65 |
+
{%- if 'text' in content_item %}
|
| 66 |
+
{{- content_item.text }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{%- endfor %}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- if message.tool_calls %}
|
| 71 |
+
{%- for tool_call in message.tool_calls %}
|
| 72 |
+
{%- if (loop.first and message.content) or (not loop.first) %}
|
| 73 |
+
{{- '\n' }}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{%- if tool_call.function %}
|
| 76 |
+
{%- set tool_call = tool_call.function %}
|
| 77 |
+
{%- endif %}
|
| 78 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 79 |
+
{{- tool_call.name }}
|
| 80 |
+
{{- '", "arguments": ' }}
|
| 81 |
+
{%- if tool_call.arguments is string %}
|
| 82 |
+
{{- tool_call.arguments }}
|
| 83 |
+
{%- else %}
|
| 84 |
+
{{- tool_call.arguments | tojson }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{{- '}\n</tool_call>' }}
|
| 87 |
+
{%- endfor %}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{{- '<|im_end|>\n' }}
|
| 90 |
+
{%- elif message.role == "tool" %}
|
| 91 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 92 |
+
{{- '<|im_start|>user' }}
|
| 93 |
+
{%- endif %}
|
| 94 |
+
{{- '\n<tool_response>\n' }}
|
| 95 |
+
{%- if message.content is string %}
|
| 96 |
+
{{- message.content }}
|
| 97 |
+
{%- else %}
|
| 98 |
+
{%- for content in message.content %}
|
| 99 |
+
{%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
|
| 100 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 101 |
+
{%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
|
| 102 |
+
<|vision_start|><|image_pad|><|vision_end|>
|
| 103 |
+
{%- elif content.type == 'video' or 'video' in content %}
|
| 104 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 105 |
+
{%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
|
| 106 |
+
<|vision_start|><|video_pad|><|vision_end|>
|
| 107 |
+
{%- elif 'text' in content %}
|
| 108 |
+
{{- content.text }}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- endfor %}
|
| 111 |
+
{%- endif %}
|
| 112 |
+
{{- '\n</tool_response>' }}
|
| 113 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 114 |
+
{{- '<|im_end|>\n' }}
|
| 115 |
+
{%- endif %}
|
| 116 |
+
{%- endif %}
|
| 117 |
+
{%- endfor %}
|
| 118 |
+
{%- if add_generation_prompt %}
|
| 119 |
+
{{- '<|im_start|>assistant\n' }}
|
| 120 |
+
{%- endif %}
|
tokenizer/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
|
| 3 |
+
size 11422650
|
tokenizer/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": false,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"model_max_length": 262144,
|
| 26 |
+
"pad_token": "<|endoftext|>",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null
|
| 30 |
+
}
|
transformer/config.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "Krea2Transformer2DModel",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"bias": false,
|
| 5 |
+
"channels": 16,
|
| 6 |
+
"features": 6144,
|
| 7 |
+
"heads": 48,
|
| 8 |
+
"is_distilled": true,
|
| 9 |
+
"kvheads": 12,
|
| 10 |
+
"layers": 28,
|
| 11 |
+
"multiplier": 4,
|
| 12 |
+
"patch": 2,
|
| 13 |
+
"tdim": 256,
|
| 14 |
+
"theta": 1000.0,
|
| 15 |
+
"txtdim": 2560,
|
| 16 |
+
"txtheads": 20,
|
| 17 |
+
"txtkvheads": 20,
|
| 18 |
+
"txtlayers": 12
|
| 19 |
+
}
|
transformer/diffusion_pytorch_model-00001-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31231be8ed22d56984c061dbc983c29e20108a3c506ec37ec63a3c4a1f06ae5d
|
| 3 |
+
size 4809463200
|
transformer/diffusion_pytorch_model-00002-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ed37323e6aadb5a64852abaec1ef9a0ed81e050bf9ef67b808762dde736e916
|
| 3 |
+
size 4933694744
|
transformer/diffusion_pytorch_model-00003-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a410838eee9eb47c1c4aa387ca6e5b96c37f4e33e14d327144a5afa947df941
|
| 3 |
+
size 4820250192
|
transformer/diffusion_pytorch_model-00004-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb237ebd996eef5e78647142c0b41224b5ffec6caf4bc38fee975650d4983f59
|
| 3 |
+
size 4807865688
|
transformer/diffusion_pytorch_model-00005-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:718dce8d4f3861a4cfb4e27db8c6760babe1ddfe32bcbd13ae07511ddf814472
|
| 3 |
+
size 4952395512
|
transformer/diffusion_pytorch_model-00006-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f79aa767448ab1224a54a12ff55f07c7a6c83b2f5ce22ba0406cd5bd84907f3
|
| 3 |
+
size 2261652864
|
transformer/diffusion_pytorch_model.safetensors.index.json
ADDED
|
@@ -0,0 +1,439 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 26585278768
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"blocks.0.attn.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 7 |
+
"blocks.0.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 8 |
+
"blocks.0.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 9 |
+
"blocks.0.attn.wk.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 10 |
+
"blocks.0.attn.wo.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 11 |
+
"blocks.0.attn.wq.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 12 |
+
"blocks.0.attn.wv.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 13 |
+
"blocks.0.mlp.down.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 14 |
+
"blocks.0.mlp.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 15 |
+
"blocks.0.mlp.up.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 16 |
+
"blocks.0.mod.lin": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 17 |
+
"blocks.0.postnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 18 |
+
"blocks.0.prenorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 19 |
+
"blocks.1.attn.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 20 |
+
"blocks.1.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 21 |
+
"blocks.1.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 22 |
+
"blocks.1.attn.wk.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 23 |
+
"blocks.1.attn.wo.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 24 |
+
"blocks.1.attn.wq.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 25 |
+
"blocks.1.attn.wv.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 26 |
+
"blocks.1.mlp.down.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 27 |
+
"blocks.1.mlp.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 28 |
+
"blocks.1.mlp.up.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 29 |
+
"blocks.1.mod.lin": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 30 |
+
"blocks.1.postnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 31 |
+
"blocks.1.prenorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 32 |
+
"blocks.10.attn.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 33 |
+
"blocks.10.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 34 |
+
"blocks.10.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 35 |
+
"blocks.10.attn.wk.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 36 |
+
"blocks.10.attn.wo.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 37 |
+
"blocks.10.attn.wq.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 38 |
+
"blocks.10.attn.wv.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 39 |
+
"blocks.10.mlp.down.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 40 |
+
"blocks.10.mlp.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 41 |
+
"blocks.10.mlp.up.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 42 |
+
"blocks.10.mod.lin": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 43 |
+
"blocks.10.postnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 44 |
+
"blocks.10.prenorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 45 |
+
"blocks.11.attn.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 46 |
+
"blocks.11.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 47 |
+
"blocks.11.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 48 |
+
"blocks.11.attn.wk.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 49 |
+
"blocks.11.attn.wo.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 50 |
+
"blocks.11.attn.wq.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 51 |
+
"blocks.11.attn.wv.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 52 |
+
"blocks.11.mlp.down.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 53 |
+
"blocks.11.mlp.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 54 |
+
"blocks.11.mlp.up.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 55 |
+
"blocks.11.mod.lin": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 56 |
+
"blocks.11.postnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 57 |
+
"blocks.11.prenorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 58 |
+
"blocks.12.attn.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 59 |
+
"blocks.12.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 60 |
+
"blocks.12.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 61 |
+
"blocks.12.attn.wk.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 62 |
+
"blocks.12.attn.wo.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 63 |
+
"blocks.12.attn.wq.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 64 |
+
"blocks.12.attn.wv.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 65 |
+
"blocks.12.mlp.down.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 66 |
+
"blocks.12.mlp.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 67 |
+
"blocks.12.mlp.up.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 68 |
+
"blocks.12.mod.lin": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 69 |
+
"blocks.12.postnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 70 |
+
"blocks.12.prenorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 71 |
+
"blocks.13.attn.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 72 |
+
"blocks.13.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 73 |
+
"blocks.13.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 74 |
+
"blocks.13.attn.wk.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 75 |
+
"blocks.13.attn.wo.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 76 |
+
"blocks.13.attn.wq.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 77 |
+
"blocks.13.attn.wv.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 78 |
+
"blocks.13.mlp.down.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 79 |
+
"blocks.13.mlp.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 80 |
+
"blocks.13.mlp.up.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 81 |
+
"blocks.13.mod.lin": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 82 |
+
"blocks.13.postnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 83 |
+
"blocks.13.prenorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 84 |
+
"blocks.14.attn.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 85 |
+
"blocks.14.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 86 |
+
"blocks.14.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 87 |
+
"blocks.14.attn.wk.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 88 |
+
"blocks.14.attn.wo.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 89 |
+
"blocks.14.attn.wq.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 90 |
+
"blocks.14.attn.wv.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 91 |
+
"blocks.14.mlp.down.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 92 |
+
"blocks.14.mlp.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 93 |
+
"blocks.14.mlp.up.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 94 |
+
"blocks.14.mod.lin": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 95 |
+
"blocks.14.postnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 96 |
+
"blocks.14.prenorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 97 |
+
"blocks.15.attn.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 98 |
+
"blocks.15.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 99 |
+
"blocks.15.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 100 |
+
"blocks.15.attn.wk.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 101 |
+
"blocks.15.attn.wo.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 102 |
+
"blocks.15.attn.wq.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 103 |
+
"blocks.15.attn.wv.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 104 |
+
"blocks.15.mlp.down.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 105 |
+
"blocks.15.mlp.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 106 |
+
"blocks.15.mlp.up.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 107 |
+
"blocks.15.mod.lin": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 108 |
+
"blocks.15.postnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 109 |
+
"blocks.15.prenorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 110 |
+
"blocks.16.attn.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 111 |
+
"blocks.16.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 112 |
+
"blocks.16.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 113 |
+
"blocks.16.attn.wk.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 114 |
+
"blocks.16.attn.wo.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 115 |
+
"blocks.16.attn.wq.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 116 |
+
"blocks.16.attn.wv.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 117 |
+
"blocks.16.mlp.down.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 118 |
+
"blocks.16.mlp.gate.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 119 |
+
"blocks.16.mlp.up.weight": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 120 |
+
"blocks.16.mod.lin": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 121 |
+
"blocks.16.postnorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 122 |
+
"blocks.16.prenorm.scale": "diffusion_pytorch_model-00003-of-00006.safetensors",
|
| 123 |
+
"blocks.17.attn.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 124 |
+
"blocks.17.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 125 |
+
"blocks.17.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 126 |
+
"blocks.17.attn.wk.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 127 |
+
"blocks.17.attn.wo.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 128 |
+
"blocks.17.attn.wq.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 129 |
+
"blocks.17.attn.wv.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 130 |
+
"blocks.17.mlp.down.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 131 |
+
"blocks.17.mlp.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 132 |
+
"blocks.17.mlp.up.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 133 |
+
"blocks.17.mod.lin": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 134 |
+
"blocks.17.postnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 135 |
+
"blocks.17.prenorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 136 |
+
"blocks.18.attn.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 137 |
+
"blocks.18.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 138 |
+
"blocks.18.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 139 |
+
"blocks.18.attn.wk.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 140 |
+
"blocks.18.attn.wo.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 141 |
+
"blocks.18.attn.wq.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 142 |
+
"blocks.18.attn.wv.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 143 |
+
"blocks.18.mlp.down.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 144 |
+
"blocks.18.mlp.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 145 |
+
"blocks.18.mlp.up.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 146 |
+
"blocks.18.mod.lin": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 147 |
+
"blocks.18.postnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 148 |
+
"blocks.18.prenorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 149 |
+
"blocks.19.attn.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 150 |
+
"blocks.19.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 151 |
+
"blocks.19.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 152 |
+
"blocks.19.attn.wk.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 153 |
+
"blocks.19.attn.wo.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 154 |
+
"blocks.19.attn.wq.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 155 |
+
"blocks.19.attn.wv.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 156 |
+
"blocks.19.mlp.down.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 157 |
+
"blocks.19.mlp.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 158 |
+
"blocks.19.mlp.up.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 159 |
+
"blocks.19.mod.lin": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 160 |
+
"blocks.19.postnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 161 |
+
"blocks.19.prenorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 162 |
+
"blocks.2.attn.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 163 |
+
"blocks.2.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 164 |
+
"blocks.2.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 165 |
+
"blocks.2.attn.wk.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 166 |
+
"blocks.2.attn.wo.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 167 |
+
"blocks.2.attn.wq.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 168 |
+
"blocks.2.attn.wv.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 169 |
+
"blocks.2.mlp.down.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 170 |
+
"blocks.2.mlp.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 171 |
+
"blocks.2.mlp.up.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 172 |
+
"blocks.2.mod.lin": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 173 |
+
"blocks.2.postnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 174 |
+
"blocks.2.prenorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 175 |
+
"blocks.20.attn.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 176 |
+
"blocks.20.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 177 |
+
"blocks.20.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 178 |
+
"blocks.20.attn.wk.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 179 |
+
"blocks.20.attn.wo.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 180 |
+
"blocks.20.attn.wq.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 181 |
+
"blocks.20.attn.wv.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 182 |
+
"blocks.20.mlp.down.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 183 |
+
"blocks.20.mlp.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 184 |
+
"blocks.20.mlp.up.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 185 |
+
"blocks.20.mod.lin": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 186 |
+
"blocks.20.postnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 187 |
+
"blocks.20.prenorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 188 |
+
"blocks.21.attn.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 189 |
+
"blocks.21.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 190 |
+
"blocks.21.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 191 |
+
"blocks.21.attn.wk.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 192 |
+
"blocks.21.attn.wo.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 193 |
+
"blocks.21.attn.wq.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 194 |
+
"blocks.21.attn.wv.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 195 |
+
"blocks.21.mlp.down.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 196 |
+
"blocks.21.mlp.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 197 |
+
"blocks.21.mlp.up.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 198 |
+
"blocks.21.mod.lin": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 199 |
+
"blocks.21.postnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 200 |
+
"blocks.21.prenorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 201 |
+
"blocks.22.attn.gate.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 202 |
+
"blocks.22.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 203 |
+
"blocks.22.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 204 |
+
"blocks.22.attn.wk.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 205 |
+
"blocks.22.attn.wo.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 206 |
+
"blocks.22.attn.wq.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 207 |
+
"blocks.22.attn.wv.weight": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 208 |
+
"blocks.22.mlp.down.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 209 |
+
"blocks.22.mlp.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 210 |
+
"blocks.22.mlp.up.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 211 |
+
"blocks.22.mod.lin": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 212 |
+
"blocks.22.postnorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 213 |
+
"blocks.22.prenorm.scale": "diffusion_pytorch_model-00004-of-00006.safetensors",
|
| 214 |
+
"blocks.23.attn.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 215 |
+
"blocks.23.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 216 |
+
"blocks.23.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 217 |
+
"blocks.23.attn.wk.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 218 |
+
"blocks.23.attn.wo.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 219 |
+
"blocks.23.attn.wq.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 220 |
+
"blocks.23.attn.wv.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 221 |
+
"blocks.23.mlp.down.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 222 |
+
"blocks.23.mlp.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 223 |
+
"blocks.23.mlp.up.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 224 |
+
"blocks.23.mod.lin": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 225 |
+
"blocks.23.postnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 226 |
+
"blocks.23.prenorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 227 |
+
"blocks.24.attn.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 228 |
+
"blocks.24.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 229 |
+
"blocks.24.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 230 |
+
"blocks.24.attn.wk.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 231 |
+
"blocks.24.attn.wo.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 232 |
+
"blocks.24.attn.wq.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 233 |
+
"blocks.24.attn.wv.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 234 |
+
"blocks.24.mlp.down.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 235 |
+
"blocks.24.mlp.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 236 |
+
"blocks.24.mlp.up.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 237 |
+
"blocks.24.mod.lin": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 238 |
+
"blocks.24.postnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 239 |
+
"blocks.24.prenorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 240 |
+
"blocks.25.attn.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 241 |
+
"blocks.25.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 242 |
+
"blocks.25.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 243 |
+
"blocks.25.attn.wk.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 244 |
+
"blocks.25.attn.wo.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 245 |
+
"blocks.25.attn.wq.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 246 |
+
"blocks.25.attn.wv.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 247 |
+
"blocks.25.mlp.down.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 248 |
+
"blocks.25.mlp.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 249 |
+
"blocks.25.mlp.up.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 250 |
+
"blocks.25.mod.lin": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 251 |
+
"blocks.25.postnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 252 |
+
"blocks.25.prenorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 253 |
+
"blocks.26.attn.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 254 |
+
"blocks.26.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 255 |
+
"blocks.26.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 256 |
+
"blocks.26.attn.wk.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 257 |
+
"blocks.26.attn.wo.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 258 |
+
"blocks.26.attn.wq.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 259 |
+
"blocks.26.attn.wv.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 260 |
+
"blocks.26.mlp.down.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 261 |
+
"blocks.26.mlp.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 262 |
+
"blocks.26.mlp.up.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 263 |
+
"blocks.26.mod.lin": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 264 |
+
"blocks.26.postnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 265 |
+
"blocks.26.prenorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 266 |
+
"blocks.27.attn.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 267 |
+
"blocks.27.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 268 |
+
"blocks.27.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 269 |
+
"blocks.27.attn.wk.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 270 |
+
"blocks.27.attn.wo.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 271 |
+
"blocks.27.attn.wq.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 272 |
+
"blocks.27.attn.wv.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 273 |
+
"blocks.27.mlp.down.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 274 |
+
"blocks.27.mlp.gate.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 275 |
+
"blocks.27.mlp.up.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 276 |
+
"blocks.27.mod.lin": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 277 |
+
"blocks.27.postnorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 278 |
+
"blocks.27.prenorm.scale": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 279 |
+
"blocks.3.attn.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 280 |
+
"blocks.3.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 281 |
+
"blocks.3.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 282 |
+
"blocks.3.attn.wk.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 283 |
+
"blocks.3.attn.wo.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 284 |
+
"blocks.3.attn.wq.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 285 |
+
"blocks.3.attn.wv.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 286 |
+
"blocks.3.mlp.down.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 287 |
+
"blocks.3.mlp.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 288 |
+
"blocks.3.mlp.up.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 289 |
+
"blocks.3.mod.lin": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 290 |
+
"blocks.3.postnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 291 |
+
"blocks.3.prenorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 292 |
+
"blocks.4.attn.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 293 |
+
"blocks.4.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 294 |
+
"blocks.4.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 295 |
+
"blocks.4.attn.wk.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 296 |
+
"blocks.4.attn.wo.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 297 |
+
"blocks.4.attn.wq.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 298 |
+
"blocks.4.attn.wv.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 299 |
+
"blocks.4.mlp.down.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 300 |
+
"blocks.4.mlp.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 301 |
+
"blocks.4.mlp.up.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 302 |
+
"blocks.4.mod.lin": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 303 |
+
"blocks.4.postnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 304 |
+
"blocks.4.prenorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 305 |
+
"blocks.5.attn.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 306 |
+
"blocks.5.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 307 |
+
"blocks.5.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 308 |
+
"blocks.5.attn.wk.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 309 |
+
"blocks.5.attn.wo.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 310 |
+
"blocks.5.attn.wq.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 311 |
+
"blocks.5.attn.wv.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 312 |
+
"blocks.5.mlp.down.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 313 |
+
"blocks.5.mlp.gate.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 314 |
+
"blocks.5.mlp.up.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 315 |
+
"blocks.5.mod.lin": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 316 |
+
"blocks.5.postnorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 317 |
+
"blocks.5.prenorm.scale": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 318 |
+
"blocks.6.attn.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 319 |
+
"blocks.6.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 320 |
+
"blocks.6.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 321 |
+
"blocks.6.attn.wk.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 322 |
+
"blocks.6.attn.wo.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 323 |
+
"blocks.6.attn.wq.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 324 |
+
"blocks.6.attn.wv.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 325 |
+
"blocks.6.mlp.down.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 326 |
+
"blocks.6.mlp.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 327 |
+
"blocks.6.mlp.up.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 328 |
+
"blocks.6.mod.lin": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 329 |
+
"blocks.6.postnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 330 |
+
"blocks.6.prenorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 331 |
+
"blocks.7.attn.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 332 |
+
"blocks.7.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 333 |
+
"blocks.7.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 334 |
+
"blocks.7.attn.wk.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 335 |
+
"blocks.7.attn.wo.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 336 |
+
"blocks.7.attn.wq.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 337 |
+
"blocks.7.attn.wv.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 338 |
+
"blocks.7.mlp.down.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 339 |
+
"blocks.7.mlp.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 340 |
+
"blocks.7.mlp.up.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 341 |
+
"blocks.7.mod.lin": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 342 |
+
"blocks.7.postnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 343 |
+
"blocks.7.prenorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 344 |
+
"blocks.8.attn.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 345 |
+
"blocks.8.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 346 |
+
"blocks.8.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 347 |
+
"blocks.8.attn.wk.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 348 |
+
"blocks.8.attn.wo.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 349 |
+
"blocks.8.attn.wq.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 350 |
+
"blocks.8.attn.wv.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 351 |
+
"blocks.8.mlp.down.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 352 |
+
"blocks.8.mlp.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 353 |
+
"blocks.8.mlp.up.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 354 |
+
"blocks.8.mod.lin": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 355 |
+
"blocks.8.postnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 356 |
+
"blocks.8.prenorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 357 |
+
"blocks.9.attn.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 358 |
+
"blocks.9.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 359 |
+
"blocks.9.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 360 |
+
"blocks.9.attn.wk.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 361 |
+
"blocks.9.attn.wo.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 362 |
+
"blocks.9.attn.wq.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 363 |
+
"blocks.9.attn.wv.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 364 |
+
"blocks.9.mlp.down.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 365 |
+
"blocks.9.mlp.gate.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 366 |
+
"blocks.9.mlp.up.weight": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 367 |
+
"blocks.9.mod.lin": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 368 |
+
"blocks.9.postnorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 369 |
+
"blocks.9.prenorm.scale": "diffusion_pytorch_model-00002-of-00006.safetensors",
|
| 370 |
+
"first.bias": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 371 |
+
"first.weight": "diffusion_pytorch_model-00001-of-00006.safetensors",
|
| 372 |
+
"last.down.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 373 |
+
"last.linear.bias": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 374 |
+
"last.linear.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 375 |
+
"last.modulation.lin": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 376 |
+
"last.norm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 377 |
+
"last.up.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 378 |
+
"tmlp.0.bias": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 379 |
+
"tmlp.0.weight": "diffusion_pytorch_model-00005-of-00006.safetensors",
|
| 380 |
+
"tmlp.2.bias": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 381 |
+
"tmlp.2.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 382 |
+
"tproj.1.bias": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 383 |
+
"tproj.1.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 384 |
+
"txtfusion.layerwise_blocks.0.attn.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 385 |
+
"txtfusion.layerwise_blocks.0.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 386 |
+
"txtfusion.layerwise_blocks.0.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 387 |
+
"txtfusion.layerwise_blocks.0.attn.wk.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 388 |
+
"txtfusion.layerwise_blocks.0.attn.wo.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 389 |
+
"txtfusion.layerwise_blocks.0.attn.wq.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 390 |
+
"txtfusion.layerwise_blocks.0.attn.wv.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 391 |
+
"txtfusion.layerwise_blocks.0.mlp.down.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 392 |
+
"txtfusion.layerwise_blocks.0.mlp.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 393 |
+
"txtfusion.layerwise_blocks.0.mlp.up.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 394 |
+
"txtfusion.layerwise_blocks.0.postnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 395 |
+
"txtfusion.layerwise_blocks.0.prenorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 396 |
+
"txtfusion.layerwise_blocks.1.attn.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 397 |
+
"txtfusion.layerwise_blocks.1.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 398 |
+
"txtfusion.layerwise_blocks.1.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 399 |
+
"txtfusion.layerwise_blocks.1.attn.wk.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 400 |
+
"txtfusion.layerwise_blocks.1.attn.wo.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 401 |
+
"txtfusion.layerwise_blocks.1.attn.wq.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 402 |
+
"txtfusion.layerwise_blocks.1.attn.wv.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 403 |
+
"txtfusion.layerwise_blocks.1.mlp.down.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 404 |
+
"txtfusion.layerwise_blocks.1.mlp.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 405 |
+
"txtfusion.layerwise_blocks.1.mlp.up.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 406 |
+
"txtfusion.layerwise_blocks.1.postnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 407 |
+
"txtfusion.layerwise_blocks.1.prenorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 408 |
+
"txtfusion.projector.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 409 |
+
"txtfusion.refiner_blocks.0.attn.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 410 |
+
"txtfusion.refiner_blocks.0.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 411 |
+
"txtfusion.refiner_blocks.0.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 412 |
+
"txtfusion.refiner_blocks.0.attn.wk.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 413 |
+
"txtfusion.refiner_blocks.0.attn.wo.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 414 |
+
"txtfusion.refiner_blocks.0.attn.wq.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 415 |
+
"txtfusion.refiner_blocks.0.attn.wv.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 416 |
+
"txtfusion.refiner_blocks.0.mlp.down.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 417 |
+
"txtfusion.refiner_blocks.0.mlp.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 418 |
+
"txtfusion.refiner_blocks.0.mlp.up.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 419 |
+
"txtfusion.refiner_blocks.0.postnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 420 |
+
"txtfusion.refiner_blocks.0.prenorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 421 |
+
"txtfusion.refiner_blocks.1.attn.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 422 |
+
"txtfusion.refiner_blocks.1.attn.qknorm.knorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 423 |
+
"txtfusion.refiner_blocks.1.attn.qknorm.qnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 424 |
+
"txtfusion.refiner_blocks.1.attn.wk.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 425 |
+
"txtfusion.refiner_blocks.1.attn.wo.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 426 |
+
"txtfusion.refiner_blocks.1.attn.wq.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 427 |
+
"txtfusion.refiner_blocks.1.attn.wv.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 428 |
+
"txtfusion.refiner_blocks.1.mlp.down.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 429 |
+
"txtfusion.refiner_blocks.1.mlp.gate.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 430 |
+
"txtfusion.refiner_blocks.1.mlp.up.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 431 |
+
"txtfusion.refiner_blocks.1.postnorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 432 |
+
"txtfusion.refiner_blocks.1.prenorm.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 433 |
+
"txtmlp.0.scale": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 434 |
+
"txtmlp.1.bias": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 435 |
+
"txtmlp.1.weight": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 436 |
+
"txtmlp.3.bias": "diffusion_pytorch_model-00006-of-00006.safetensors",
|
| 437 |
+
"txtmlp.3.weight": "diffusion_pytorch_model-00006-of-00006.safetensors"
|
| 438 |
+
}
|
| 439 |
+
}
|
vae/config.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKLQwenImage",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"_name_or_path": "Qwen/Qwen-Image",
|
| 5 |
+
"attn_scales": [],
|
| 6 |
+
"base_dim": 96,
|
| 7 |
+
"dim_mult": [
|
| 8 |
+
1,
|
| 9 |
+
2,
|
| 10 |
+
4,
|
| 11 |
+
4
|
| 12 |
+
],
|
| 13 |
+
"dropout": 0.0,
|
| 14 |
+
"input_channels": 3,
|
| 15 |
+
"latents_mean": [
|
| 16 |
+
-0.7571,
|
| 17 |
+
-0.7089,
|
| 18 |
+
-0.9113,
|
| 19 |
+
0.1075,
|
| 20 |
+
-0.1745,
|
| 21 |
+
0.9653,
|
| 22 |
+
-0.1517,
|
| 23 |
+
1.5508,
|
| 24 |
+
0.4134,
|
| 25 |
+
-0.0715,
|
| 26 |
+
0.5517,
|
| 27 |
+
-0.3632,
|
| 28 |
+
-0.1922,
|
| 29 |
+
-0.9497,
|
| 30 |
+
0.2503,
|
| 31 |
+
-0.2921
|
| 32 |
+
],
|
| 33 |
+
"latents_std": [
|
| 34 |
+
2.8184,
|
| 35 |
+
1.4541,
|
| 36 |
+
2.3275,
|
| 37 |
+
2.6558,
|
| 38 |
+
1.2196,
|
| 39 |
+
1.7708,
|
| 40 |
+
2.6052,
|
| 41 |
+
2.0743,
|
| 42 |
+
3.2687,
|
| 43 |
+
2.1526,
|
| 44 |
+
2.8652,
|
| 45 |
+
1.5579,
|
| 46 |
+
1.6382,
|
| 47 |
+
1.1253,
|
| 48 |
+
2.8251,
|
| 49 |
+
1.916
|
| 50 |
+
],
|
| 51 |
+
"num_res_blocks": 2,
|
| 52 |
+
"temperal_downsample": [
|
| 53 |
+
false,
|
| 54 |
+
true,
|
| 55 |
+
true
|
| 56 |
+
],
|
| 57 |
+
"z_dim": 16
|
| 58 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab1b61103959913d6c7e628cf793dbb2ca4726a40a3b3ae206c52b8e75bf6f08
|
| 3 |
+
size 507591892
|