Image-to-Text
Diffusers
Safetensors
English
uniar
image-generation
image-understanding
image-editing
multimodal
autoregressive
text-to-image
unified-model
Instructions to use ShareLab-SII/UniAR-RL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ShareLab-SII/UniAR-RL with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ShareLab-SII/UniAR-RL", 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
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +3 -0
- added_tokens.json +29 -0
- bsq_encoder/config.json +30 -0
- bsq_encoder/model.safetensors +3 -0
- chat_template.jinja +7 -0
- config.json +68 -0
- generation_config.json +6 -0
- merges.txt +0 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +853 -0
- preprocessor_config.json +29 -0
- sd3_pipeline/.gitattributes +35 -0
- sd3_pipeline/LICENSE.md +51 -0
- sd3_pipeline/README.md +256 -0
- sd3_pipeline/SD3.5L_plus_SD3.5M_upscaling_example_workflow.json +1235 -0
- sd3_pipeline/SD3.5M_SLG_example_workflow.json +1006 -0
- sd3_pipeline/SD3.5M_example_workflow.json +697 -0
- sd3_pipeline/mmdit-x.png +3 -0
- sd3_pipeline/model_index.json +40 -0
- sd3_pipeline/scheduler/scheduler_config.json +6 -0
- sd3_pipeline/sd3.5_medium.safetensors +3 -0
- sd3_pipeline/sd3.5_medium_demo.jpg +3 -0
- sd3_pipeline/text_encoder/config.json +24 -0
- sd3_pipeline/text_encoder/model.fp16.safetensors +3 -0
- sd3_pipeline/text_encoder/model.safetensors +3 -0
- sd3_pipeline/text_encoder_2/config.json +24 -0
- sd3_pipeline/text_encoder_2/model.fp16.safetensors +3 -0
- sd3_pipeline/text_encoder_2/model.safetensors +3 -0
- sd3_pipeline/text_encoder_3/config.json +31 -0
- sd3_pipeline/text_encoder_3/model-00001-of-00002.safetensors +3 -0
- sd3_pipeline/text_encoder_3/model-00002-of-00002.safetensors +3 -0
- sd3_pipeline/text_encoder_3/model.fp16-00001-of-00002.safetensors +3 -0
- sd3_pipeline/text_encoder_3/model.fp16-00002-of-00002.safetensors +3 -0
- sd3_pipeline/text_encoder_3/model.safetensors.index.fp16.json +226 -0
- sd3_pipeline/text_encoder_3/model.safetensors.index.json +226 -0
- sd3_pipeline/text_encoders/README.md +11 -0
- sd3_pipeline/text_encoders/clip_g.safetensors +3 -0
- sd3_pipeline/text_encoders/clip_l.safetensors +3 -0
- sd3_pipeline/text_encoders/t5xxl_fp16.safetensors +3 -0
- sd3_pipeline/text_encoders/t5xxl_fp8_e4m3fn.safetensors +3 -0
- sd3_pipeline/tokenizer/merges.txt +0 -0
- sd3_pipeline/tokenizer/special_tokens_map.json +30 -0
- sd3_pipeline/tokenizer/tokenizer_config.json +30 -0
- sd3_pipeline/tokenizer/vocab.json +0 -0
- sd3_pipeline/tokenizer_2/merges.txt +0 -0
- sd3_pipeline/tokenizer_2/special_tokens_map.json +30 -0
- sd3_pipeline/tokenizer_2/tokenizer_config.json +38 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ 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 |
+
sd3_pipeline/mmdit-x.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
sd3_pipeline/sd3.5_medium_demo.jpg filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
added_tokens.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<image_gen>": 151669,
|
| 6 |
+
"<think>": 151667,
|
| 7 |
+
"<tool_call>": 151657,
|
| 8 |
+
"<tool_response>": 151665,
|
| 9 |
+
"<|box_end|>": 151649,
|
| 10 |
+
"<|box_start|>": 151648,
|
| 11 |
+
"<|endoftext|>": 151643,
|
| 12 |
+
"<|file_sep|>": 151664,
|
| 13 |
+
"<|fim_middle|>": 151660,
|
| 14 |
+
"<|fim_pad|>": 151662,
|
| 15 |
+
"<|fim_prefix|>": 151659,
|
| 16 |
+
"<|fim_suffix|>": 151661,
|
| 17 |
+
"<|im_end|>": 151645,
|
| 18 |
+
"<|im_start|>": 151644,
|
| 19 |
+
"<|image_pad|>": 151655,
|
| 20 |
+
"<|object_ref_end|>": 151647,
|
| 21 |
+
"<|object_ref_start|>": 151646,
|
| 22 |
+
"<|quad_end|>": 151651,
|
| 23 |
+
"<|quad_start|>": 151650,
|
| 24 |
+
"<|repo_name|>": 151663,
|
| 25 |
+
"<|video_pad|>": 151656,
|
| 26 |
+
"<|vision_end|>": 151653,
|
| 27 |
+
"<|vision_pad|>": 151654,
|
| 28 |
+
"<|vision_start|>": 151652
|
| 29 |
+
}
|
bsq_encoder/config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"depth": 27,
|
| 3 |
+
"hidden_size": 1152,
|
| 4 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 5 |
+
"intermediate_size": 4304,
|
| 6 |
+
"num_heads": 16,
|
| 7 |
+
"in_channels": 3,
|
| 8 |
+
"patch_size": 16,
|
| 9 |
+
"spatial_merge_size": 2,
|
| 10 |
+
"temporal_patch_size": 2,
|
| 11 |
+
"out_hidden_size": 4096,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"use_bsq": true,
|
| 14 |
+
"bsq_dim": 64,
|
| 15 |
+
"bsq_hidden_dim": 8192,
|
| 16 |
+
"bsq_skip_final_layernorm": true,
|
| 17 |
+
"vistok_pred": false,
|
| 18 |
+
"vistok_pred_layernorm": false,
|
| 19 |
+
"vistok_pred_transformer_head": false,
|
| 20 |
+
"architectures": [
|
| 21 |
+
"UniARVisionModel"
|
| 22 |
+
],
|
| 23 |
+
"model_type": "uniar_vision",
|
| 24 |
+
"deepstack_visual_indexes": [
|
| 25 |
+
8,
|
| 26 |
+
16,
|
| 27 |
+
24
|
| 28 |
+
],
|
| 29 |
+
"num_position_embeddings": 2304
|
| 30 |
+
}
|
bsq_encoder/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a07a8018053621883d0a988c7ba7d974a1941922d1cb1fe27d76c6420664ad0a
|
| 3 |
+
size 1312361072
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
|
| 2 |
+
You are a helpful assistant.<|im_end|>
|
| 3 |
+
{% endif %}<|im_start|>{{ message['role'] }}
|
| 4 |
+
{% if message['content'] is string %}{{ message['content'] }}<|im_end|>
|
| 5 |
+
{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
|
| 6 |
+
{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
|
| 7 |
+
{% endif %}
|
config.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"UniARForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "uniar",
|
| 6 |
+
"text_config": {
|
| 7 |
+
"vocab_size": 151936,
|
| 8 |
+
"hidden_size": 4096,
|
| 9 |
+
"intermediate_size": 12288,
|
| 10 |
+
"num_hidden_layers": 36,
|
| 11 |
+
"num_attention_heads": 32,
|
| 12 |
+
"num_key_value_heads": 8,
|
| 13 |
+
"head_dim": 128,
|
| 14 |
+
"hidden_act": "silu",
|
| 15 |
+
"max_position_embeddings": 32768,
|
| 16 |
+
"initializer_range": 0.02,
|
| 17 |
+
"rms_norm_eps": 1e-06,
|
| 18 |
+
"use_cache": true,
|
| 19 |
+
"rope_theta": 1000000,
|
| 20 |
+
"rope_scaling": {
|
| 21 |
+
"mrope_section": [
|
| 22 |
+
24,
|
| 23 |
+
20,
|
| 24 |
+
20
|
| 25 |
+
],
|
| 26 |
+
"rope_type": "default"
|
| 27 |
+
},
|
| 28 |
+
"attention_bias": false,
|
| 29 |
+
"attention_dropout": 0.0,
|
| 30 |
+
"tie_word_embeddings": false
|
| 31 |
+
},
|
| 32 |
+
"vision_config": {
|
| 33 |
+
"depth": 27,
|
| 34 |
+
"hidden_size": 1152,
|
| 35 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 36 |
+
"intermediate_size": 4304,
|
| 37 |
+
"num_heads": 16,
|
| 38 |
+
"in_channels": 3,
|
| 39 |
+
"patch_size": 16,
|
| 40 |
+
"spatial_merge_size": 2,
|
| 41 |
+
"temporal_patch_size": 2,
|
| 42 |
+
"out_hidden_size": 4096,
|
| 43 |
+
"initializer_range": 0.02,
|
| 44 |
+
"use_bsq": true,
|
| 45 |
+
"bsq_dim": 64,
|
| 46 |
+
"bsq_hidden_dim": 8192,
|
| 47 |
+
"bsq_skip_final_layernorm": true,
|
| 48 |
+
"vistok_pred": false,
|
| 49 |
+
"vistok_pred_layernorm": false,
|
| 50 |
+
"vistok_pred_transformer_head": false,
|
| 51 |
+
"num_position_embeddings": 2304,
|
| 52 |
+
"deepstack_visual_indexes": [
|
| 53 |
+
8,
|
| 54 |
+
16,
|
| 55 |
+
24
|
| 56 |
+
]
|
| 57 |
+
},
|
| 58 |
+
"vistok_pred": true,
|
| 59 |
+
"vistok_pred_layernorm": true,
|
| 60 |
+
"vistok_pred_use_mlp": false,
|
| 61 |
+
"visual_transformer_decoder": true,
|
| 62 |
+
"image_token_id": 151655,
|
| 63 |
+
"video_token_id": 151656,
|
| 64 |
+
"vision_start_token_id": 151652,
|
| 65 |
+
"vision_end_token_id": 151653,
|
| 66 |
+
"tie_word_embeddings": false,
|
| 67 |
+
"torch_dtype": "bfloat16"
|
| 68 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 151643,
|
| 4 |
+
"eos_token_id": 151645,
|
| 5 |
+
"transformers_version": "4.53.0.dev0"
|
| 6 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bfc3ce6379861b9bd928ff49915a5b97187ef7c770303d140b69be1ad8a1535
|
| 3 |
+
size 4956280080
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cb214416ab4e233422b61cf4fc6380824861083354b04dad7eacaa935d2fc2b
|
| 3 |
+
size 4983070560
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:481e4f80640b2f84bf938366789fe10703a9218069b11d7d925352de964d8fc8
|
| 3 |
+
size 4999848448
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:becf34aaabfc23e0af53f629f5bade2b18dd11a1327a98462145e2db3df3d070
|
| 3 |
+
size 4315053008
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,853 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 19254148584
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"model.visual.bsq.basis": "model-00001-of-00004.safetensors",
|
| 7 |
+
"model.visual.bsq.group_basis": "model-00001-of-00004.safetensors",
|
| 8 |
+
"model.language_model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"model.language_model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"model.language_model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 11 |
+
"model.language_model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"model.language_model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 13 |
+
"model.language_model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 14 |
+
"model.language_model.layers.0.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 15 |
+
"model.language_model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"model.language_model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 17 |
+
"model.language_model.layers.0.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 18 |
+
"model.language_model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 19 |
+
"model.language_model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 20 |
+
"model.language_model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.language_model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.language_model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.language_model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.language_model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.language_model.layers.1.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.language_model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.language_model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.language_model.layers.1.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.language_model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.language_model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 31 |
+
"model.language_model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 32 |
+
"model.language_model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 33 |
+
"model.language_model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 34 |
+
"model.language_model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 35 |
+
"model.language_model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 36 |
+
"model.language_model.layers.2.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 37 |
+
"model.language_model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 38 |
+
"model.language_model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 39 |
+
"model.language_model.layers.2.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 40 |
+
"model.language_model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 41 |
+
"model.language_model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 42 |
+
"model.language_model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 43 |
+
"model.language_model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 44 |
+
"model.language_model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 45 |
+
"model.language_model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 46 |
+
"model.language_model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 47 |
+
"model.language_model.layers.3.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 48 |
+
"model.language_model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 49 |
+
"model.language_model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 50 |
+
"model.language_model.layers.3.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 51 |
+
"model.language_model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 52 |
+
"model.language_model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 53 |
+
"model.language_model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 54 |
+
"model.language_model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 55 |
+
"model.language_model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 56 |
+
"model.language_model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 57 |
+
"model.language_model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 58 |
+
"model.language_model.layers.4.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 59 |
+
"model.language_model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 60 |
+
"model.language_model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 61 |
+
"model.language_model.layers.4.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 62 |
+
"model.language_model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 63 |
+
"model.language_model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 64 |
+
"model.language_model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 65 |
+
"model.language_model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 66 |
+
"model.language_model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 67 |
+
"model.language_model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 68 |
+
"model.language_model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 69 |
+
"model.language_model.layers.5.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 70 |
+
"model.language_model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 71 |
+
"model.language_model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 72 |
+
"model.language_model.layers.5.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 73 |
+
"model.language_model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 74 |
+
"model.language_model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 75 |
+
"model.language_model.layers.6.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 76 |
+
"model.language_model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 77 |
+
"model.language_model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 78 |
+
"model.language_model.layers.6.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 79 |
+
"model.language_model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 80 |
+
"model.language_model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 81 |
+
"model.visual.blocks.0.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 82 |
+
"model.visual.blocks.0.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 83 |
+
"model.visual.blocks.0.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 84 |
+
"model.visual.blocks.0.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 85 |
+
"model.visual.blocks.0.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 86 |
+
"model.visual.blocks.0.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 87 |
+
"model.visual.blocks.0.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 88 |
+
"model.visual.blocks.0.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 89 |
+
"model.visual.blocks.0.norm1.bias": "model-00001-of-00004.safetensors",
|
| 90 |
+
"model.visual.blocks.0.norm1.weight": "model-00001-of-00004.safetensors",
|
| 91 |
+
"model.visual.blocks.0.norm2.bias": "model-00001-of-00004.safetensors",
|
| 92 |
+
"model.visual.blocks.0.norm2.weight": "model-00001-of-00004.safetensors",
|
| 93 |
+
"model.visual.blocks.1.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 94 |
+
"model.visual.blocks.1.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 95 |
+
"model.visual.blocks.1.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 96 |
+
"model.visual.blocks.1.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 97 |
+
"model.visual.blocks.1.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 98 |
+
"model.visual.blocks.1.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 99 |
+
"model.visual.blocks.1.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 100 |
+
"model.visual.blocks.1.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 101 |
+
"model.visual.blocks.1.norm1.bias": "model-00001-of-00004.safetensors",
|
| 102 |
+
"model.visual.blocks.1.norm1.weight": "model-00001-of-00004.safetensors",
|
| 103 |
+
"model.visual.blocks.1.norm2.bias": "model-00001-of-00004.safetensors",
|
| 104 |
+
"model.visual.blocks.1.norm2.weight": "model-00001-of-00004.safetensors",
|
| 105 |
+
"model.visual.blocks.10.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 106 |
+
"model.visual.blocks.10.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 107 |
+
"model.visual.blocks.10.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 108 |
+
"model.visual.blocks.10.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 109 |
+
"model.visual.blocks.10.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 110 |
+
"model.visual.blocks.10.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 111 |
+
"model.visual.blocks.10.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 112 |
+
"model.visual.blocks.10.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 113 |
+
"model.visual.blocks.10.norm1.bias": "model-00001-of-00004.safetensors",
|
| 114 |
+
"model.visual.blocks.10.norm1.weight": "model-00001-of-00004.safetensors",
|
| 115 |
+
"model.visual.blocks.10.norm2.bias": "model-00001-of-00004.safetensors",
|
| 116 |
+
"model.visual.blocks.10.norm2.weight": "model-00001-of-00004.safetensors",
|
| 117 |
+
"model.visual.blocks.11.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 118 |
+
"model.visual.blocks.11.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 119 |
+
"model.visual.blocks.11.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 120 |
+
"model.visual.blocks.11.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 121 |
+
"model.visual.blocks.11.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 122 |
+
"model.visual.blocks.11.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 123 |
+
"model.visual.blocks.11.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 124 |
+
"model.visual.blocks.11.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 125 |
+
"model.visual.blocks.11.norm1.bias": "model-00001-of-00004.safetensors",
|
| 126 |
+
"model.visual.blocks.11.norm1.weight": "model-00001-of-00004.safetensors",
|
| 127 |
+
"model.visual.blocks.11.norm2.bias": "model-00001-of-00004.safetensors",
|
| 128 |
+
"model.visual.blocks.11.norm2.weight": "model-00001-of-00004.safetensors",
|
| 129 |
+
"model.visual.blocks.12.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 130 |
+
"model.visual.blocks.12.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 131 |
+
"model.visual.blocks.12.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 132 |
+
"model.visual.blocks.12.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 133 |
+
"model.visual.blocks.12.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 134 |
+
"model.visual.blocks.12.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 135 |
+
"model.visual.blocks.12.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 136 |
+
"model.visual.blocks.12.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 137 |
+
"model.visual.blocks.12.norm1.bias": "model-00001-of-00004.safetensors",
|
| 138 |
+
"model.visual.blocks.12.norm1.weight": "model-00001-of-00004.safetensors",
|
| 139 |
+
"model.visual.blocks.12.norm2.bias": "model-00001-of-00004.safetensors",
|
| 140 |
+
"model.visual.blocks.12.norm2.weight": "model-00001-of-00004.safetensors",
|
| 141 |
+
"model.visual.blocks.13.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 142 |
+
"model.visual.blocks.13.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 143 |
+
"model.visual.blocks.13.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 144 |
+
"model.visual.blocks.13.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 145 |
+
"model.visual.blocks.13.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 146 |
+
"model.visual.blocks.13.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 147 |
+
"model.visual.blocks.13.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 148 |
+
"model.visual.blocks.13.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 149 |
+
"model.visual.blocks.13.norm1.bias": "model-00001-of-00004.safetensors",
|
| 150 |
+
"model.visual.blocks.13.norm1.weight": "model-00001-of-00004.safetensors",
|
| 151 |
+
"model.visual.blocks.13.norm2.bias": "model-00001-of-00004.safetensors",
|
| 152 |
+
"model.visual.blocks.13.norm2.weight": "model-00001-of-00004.safetensors",
|
| 153 |
+
"model.visual.blocks.14.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 154 |
+
"model.visual.blocks.14.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 155 |
+
"model.visual.blocks.14.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 156 |
+
"model.visual.blocks.14.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 157 |
+
"model.visual.blocks.14.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 158 |
+
"model.visual.blocks.14.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 159 |
+
"model.visual.blocks.14.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 160 |
+
"model.visual.blocks.14.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 161 |
+
"model.visual.blocks.14.norm1.bias": "model-00001-of-00004.safetensors",
|
| 162 |
+
"model.visual.blocks.14.norm1.weight": "model-00001-of-00004.safetensors",
|
| 163 |
+
"model.visual.blocks.14.norm2.bias": "model-00001-of-00004.safetensors",
|
| 164 |
+
"model.visual.blocks.14.norm2.weight": "model-00001-of-00004.safetensors",
|
| 165 |
+
"model.visual.blocks.15.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 166 |
+
"model.visual.blocks.15.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 167 |
+
"model.visual.blocks.15.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 168 |
+
"model.visual.blocks.15.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 169 |
+
"model.visual.blocks.15.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 170 |
+
"model.visual.blocks.15.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 171 |
+
"model.visual.blocks.15.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 172 |
+
"model.visual.blocks.15.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 173 |
+
"model.visual.blocks.15.norm1.bias": "model-00001-of-00004.safetensors",
|
| 174 |
+
"model.visual.blocks.15.norm1.weight": "model-00001-of-00004.safetensors",
|
| 175 |
+
"model.visual.blocks.15.norm2.bias": "model-00001-of-00004.safetensors",
|
| 176 |
+
"model.visual.blocks.15.norm2.weight": "model-00001-of-00004.safetensors",
|
| 177 |
+
"model.visual.blocks.16.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 178 |
+
"model.visual.blocks.16.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 179 |
+
"model.visual.blocks.16.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 180 |
+
"model.visual.blocks.16.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 181 |
+
"model.visual.blocks.16.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 182 |
+
"model.visual.blocks.16.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 183 |
+
"model.visual.blocks.16.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 184 |
+
"model.visual.blocks.16.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 185 |
+
"model.visual.blocks.16.norm1.bias": "model-00001-of-00004.safetensors",
|
| 186 |
+
"model.visual.blocks.16.norm1.weight": "model-00001-of-00004.safetensors",
|
| 187 |
+
"model.visual.blocks.16.norm2.bias": "model-00001-of-00004.safetensors",
|
| 188 |
+
"model.visual.blocks.16.norm2.weight": "model-00001-of-00004.safetensors",
|
| 189 |
+
"model.visual.blocks.17.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 190 |
+
"model.visual.blocks.17.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 191 |
+
"model.visual.blocks.17.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 192 |
+
"model.visual.blocks.17.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 193 |
+
"model.visual.blocks.17.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 194 |
+
"model.visual.blocks.17.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 195 |
+
"model.visual.blocks.17.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 196 |
+
"model.visual.blocks.17.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 197 |
+
"model.visual.blocks.17.norm1.bias": "model-00001-of-00004.safetensors",
|
| 198 |
+
"model.visual.blocks.17.norm1.weight": "model-00001-of-00004.safetensors",
|
| 199 |
+
"model.visual.blocks.17.norm2.bias": "model-00001-of-00004.safetensors",
|
| 200 |
+
"model.visual.blocks.17.norm2.weight": "model-00001-of-00004.safetensors",
|
| 201 |
+
"model.visual.blocks.18.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 202 |
+
"model.visual.blocks.18.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 203 |
+
"model.visual.blocks.18.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 204 |
+
"model.visual.blocks.18.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 205 |
+
"model.visual.blocks.18.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 206 |
+
"model.visual.blocks.18.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 207 |
+
"model.visual.blocks.18.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 208 |
+
"model.visual.blocks.18.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 209 |
+
"model.visual.blocks.18.norm1.bias": "model-00001-of-00004.safetensors",
|
| 210 |
+
"model.visual.blocks.18.norm1.weight": "model-00001-of-00004.safetensors",
|
| 211 |
+
"model.visual.blocks.18.norm2.bias": "model-00001-of-00004.safetensors",
|
| 212 |
+
"model.visual.blocks.18.norm2.weight": "model-00001-of-00004.safetensors",
|
| 213 |
+
"model.visual.blocks.19.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 214 |
+
"model.visual.blocks.19.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 215 |
+
"model.visual.blocks.19.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 216 |
+
"model.visual.blocks.19.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 217 |
+
"model.visual.blocks.19.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 218 |
+
"model.visual.blocks.19.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 219 |
+
"model.visual.blocks.19.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 220 |
+
"model.visual.blocks.19.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 221 |
+
"model.visual.blocks.19.norm1.bias": "model-00001-of-00004.safetensors",
|
| 222 |
+
"model.visual.blocks.19.norm1.weight": "model-00001-of-00004.safetensors",
|
| 223 |
+
"model.visual.blocks.19.norm2.bias": "model-00001-of-00004.safetensors",
|
| 224 |
+
"model.visual.blocks.19.norm2.weight": "model-00001-of-00004.safetensors",
|
| 225 |
+
"model.visual.blocks.2.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 226 |
+
"model.visual.blocks.2.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 227 |
+
"model.visual.blocks.2.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 228 |
+
"model.visual.blocks.2.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 229 |
+
"model.visual.blocks.2.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 230 |
+
"model.visual.blocks.2.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 231 |
+
"model.visual.blocks.2.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 232 |
+
"model.visual.blocks.2.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 233 |
+
"model.visual.blocks.2.norm1.bias": "model-00001-of-00004.safetensors",
|
| 234 |
+
"model.visual.blocks.2.norm1.weight": "model-00001-of-00004.safetensors",
|
| 235 |
+
"model.visual.blocks.2.norm2.bias": "model-00001-of-00004.safetensors",
|
| 236 |
+
"model.visual.blocks.2.norm2.weight": "model-00001-of-00004.safetensors",
|
| 237 |
+
"model.visual.blocks.20.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 238 |
+
"model.visual.blocks.20.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 239 |
+
"model.visual.blocks.20.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 240 |
+
"model.visual.blocks.20.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 241 |
+
"model.visual.blocks.20.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 242 |
+
"model.visual.blocks.20.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 243 |
+
"model.visual.blocks.20.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 244 |
+
"model.visual.blocks.20.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 245 |
+
"model.visual.blocks.20.norm1.bias": "model-00001-of-00004.safetensors",
|
| 246 |
+
"model.visual.blocks.20.norm1.weight": "model-00001-of-00004.safetensors",
|
| 247 |
+
"model.visual.blocks.20.norm2.bias": "model-00001-of-00004.safetensors",
|
| 248 |
+
"model.visual.blocks.20.norm2.weight": "model-00001-of-00004.safetensors",
|
| 249 |
+
"model.visual.blocks.21.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 250 |
+
"model.visual.blocks.21.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 251 |
+
"model.visual.blocks.21.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 252 |
+
"model.visual.blocks.21.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 253 |
+
"model.visual.blocks.21.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 254 |
+
"model.visual.blocks.21.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 255 |
+
"model.visual.blocks.21.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 256 |
+
"model.visual.blocks.21.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 257 |
+
"model.visual.blocks.21.norm1.bias": "model-00001-of-00004.safetensors",
|
| 258 |
+
"model.visual.blocks.21.norm1.weight": "model-00001-of-00004.safetensors",
|
| 259 |
+
"model.visual.blocks.21.norm2.bias": "model-00001-of-00004.safetensors",
|
| 260 |
+
"model.visual.blocks.21.norm2.weight": "model-00001-of-00004.safetensors",
|
| 261 |
+
"model.visual.blocks.22.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.visual.blocks.22.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.visual.blocks.22.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.visual.blocks.22.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.visual.blocks.22.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.visual.blocks.22.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.visual.blocks.22.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.visual.blocks.22.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.visual.blocks.22.norm1.bias": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.visual.blocks.22.norm1.weight": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.visual.blocks.22.norm2.bias": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.visual.blocks.22.norm2.weight": "model-00001-of-00004.safetensors",
|
| 273 |
+
"model.visual.blocks.23.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 274 |
+
"model.visual.blocks.23.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 275 |
+
"model.visual.blocks.23.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 276 |
+
"model.visual.blocks.23.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 277 |
+
"model.visual.blocks.23.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 278 |
+
"model.visual.blocks.23.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 279 |
+
"model.visual.blocks.23.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 280 |
+
"model.visual.blocks.23.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 281 |
+
"model.visual.blocks.23.norm1.bias": "model-00001-of-00004.safetensors",
|
| 282 |
+
"model.visual.blocks.23.norm1.weight": "model-00001-of-00004.safetensors",
|
| 283 |
+
"model.visual.blocks.23.norm2.bias": "model-00001-of-00004.safetensors",
|
| 284 |
+
"model.visual.blocks.23.norm2.weight": "model-00001-of-00004.safetensors",
|
| 285 |
+
"model.visual.blocks.24.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 286 |
+
"model.visual.blocks.24.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 287 |
+
"model.visual.blocks.24.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 288 |
+
"model.visual.blocks.24.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 289 |
+
"model.visual.blocks.24.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 290 |
+
"model.visual.blocks.24.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 291 |
+
"model.visual.blocks.24.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 292 |
+
"model.visual.blocks.24.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 293 |
+
"model.visual.blocks.24.norm1.bias": "model-00001-of-00004.safetensors",
|
| 294 |
+
"model.visual.blocks.24.norm1.weight": "model-00001-of-00004.safetensors",
|
| 295 |
+
"model.visual.blocks.24.norm2.bias": "model-00001-of-00004.safetensors",
|
| 296 |
+
"model.visual.blocks.24.norm2.weight": "model-00001-of-00004.safetensors",
|
| 297 |
+
"model.visual.blocks.25.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 298 |
+
"model.visual.blocks.25.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 299 |
+
"model.visual.blocks.25.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 300 |
+
"model.visual.blocks.25.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 301 |
+
"model.visual.blocks.25.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 302 |
+
"model.visual.blocks.25.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 303 |
+
"model.visual.blocks.25.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 304 |
+
"model.visual.blocks.25.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 305 |
+
"model.visual.blocks.25.norm1.bias": "model-00001-of-00004.safetensors",
|
| 306 |
+
"model.visual.blocks.25.norm1.weight": "model-00001-of-00004.safetensors",
|
| 307 |
+
"model.visual.blocks.25.norm2.bias": "model-00001-of-00004.safetensors",
|
| 308 |
+
"model.visual.blocks.25.norm2.weight": "model-00001-of-00004.safetensors",
|
| 309 |
+
"model.visual.blocks.26.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 310 |
+
"model.visual.blocks.26.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 311 |
+
"model.visual.blocks.26.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 312 |
+
"model.visual.blocks.26.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 313 |
+
"model.visual.blocks.26.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 314 |
+
"model.visual.blocks.26.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 315 |
+
"model.visual.blocks.26.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 316 |
+
"model.visual.blocks.26.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 317 |
+
"model.visual.blocks.26.norm1.bias": "model-00001-of-00004.safetensors",
|
| 318 |
+
"model.visual.blocks.26.norm1.weight": "model-00001-of-00004.safetensors",
|
| 319 |
+
"model.visual.blocks.26.norm2.bias": "model-00001-of-00004.safetensors",
|
| 320 |
+
"model.visual.blocks.26.norm2.weight": "model-00001-of-00004.safetensors",
|
| 321 |
+
"model.visual.blocks.3.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 322 |
+
"model.visual.blocks.3.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 323 |
+
"model.visual.blocks.3.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 324 |
+
"model.visual.blocks.3.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 325 |
+
"model.visual.blocks.3.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 326 |
+
"model.visual.blocks.3.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 327 |
+
"model.visual.blocks.3.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 328 |
+
"model.visual.blocks.3.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 329 |
+
"model.visual.blocks.3.norm1.bias": "model-00001-of-00004.safetensors",
|
| 330 |
+
"model.visual.blocks.3.norm1.weight": "model-00001-of-00004.safetensors",
|
| 331 |
+
"model.visual.blocks.3.norm2.bias": "model-00001-of-00004.safetensors",
|
| 332 |
+
"model.visual.blocks.3.norm2.weight": "model-00001-of-00004.safetensors",
|
| 333 |
+
"model.visual.blocks.4.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 334 |
+
"model.visual.blocks.4.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 335 |
+
"model.visual.blocks.4.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 336 |
+
"model.visual.blocks.4.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 337 |
+
"model.visual.blocks.4.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 338 |
+
"model.visual.blocks.4.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 339 |
+
"model.visual.blocks.4.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 340 |
+
"model.visual.blocks.4.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 341 |
+
"model.visual.blocks.4.norm1.bias": "model-00001-of-00004.safetensors",
|
| 342 |
+
"model.visual.blocks.4.norm1.weight": "model-00001-of-00004.safetensors",
|
| 343 |
+
"model.visual.blocks.4.norm2.bias": "model-00001-of-00004.safetensors",
|
| 344 |
+
"model.visual.blocks.4.norm2.weight": "model-00001-of-00004.safetensors",
|
| 345 |
+
"model.visual.blocks.5.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 346 |
+
"model.visual.blocks.5.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 347 |
+
"model.visual.blocks.5.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 348 |
+
"model.visual.blocks.5.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 349 |
+
"model.visual.blocks.5.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 350 |
+
"model.visual.blocks.5.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 351 |
+
"model.visual.blocks.5.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 352 |
+
"model.visual.blocks.5.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 353 |
+
"model.visual.blocks.5.norm1.bias": "model-00001-of-00004.safetensors",
|
| 354 |
+
"model.visual.blocks.5.norm1.weight": "model-00001-of-00004.safetensors",
|
| 355 |
+
"model.visual.blocks.5.norm2.bias": "model-00001-of-00004.safetensors",
|
| 356 |
+
"model.visual.blocks.5.norm2.weight": "model-00001-of-00004.safetensors",
|
| 357 |
+
"model.visual.blocks.6.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 358 |
+
"model.visual.blocks.6.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 359 |
+
"model.visual.blocks.6.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 360 |
+
"model.visual.blocks.6.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 361 |
+
"model.visual.blocks.6.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 362 |
+
"model.visual.blocks.6.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 363 |
+
"model.visual.blocks.6.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 364 |
+
"model.visual.blocks.6.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 365 |
+
"model.visual.blocks.6.norm1.bias": "model-00001-of-00004.safetensors",
|
| 366 |
+
"model.visual.blocks.6.norm1.weight": "model-00001-of-00004.safetensors",
|
| 367 |
+
"model.visual.blocks.6.norm2.bias": "model-00001-of-00004.safetensors",
|
| 368 |
+
"model.visual.blocks.6.norm2.weight": "model-00001-of-00004.safetensors",
|
| 369 |
+
"model.visual.blocks.7.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 370 |
+
"model.visual.blocks.7.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 371 |
+
"model.visual.blocks.7.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 372 |
+
"model.visual.blocks.7.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 373 |
+
"model.visual.blocks.7.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 374 |
+
"model.visual.blocks.7.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 375 |
+
"model.visual.blocks.7.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 376 |
+
"model.visual.blocks.7.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 377 |
+
"model.visual.blocks.7.norm1.bias": "model-00001-of-00004.safetensors",
|
| 378 |
+
"model.visual.blocks.7.norm1.weight": "model-00001-of-00004.safetensors",
|
| 379 |
+
"model.visual.blocks.7.norm2.bias": "model-00001-of-00004.safetensors",
|
| 380 |
+
"model.visual.blocks.7.norm2.weight": "model-00001-of-00004.safetensors",
|
| 381 |
+
"model.visual.blocks.8.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 382 |
+
"model.visual.blocks.8.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 383 |
+
"model.visual.blocks.8.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 384 |
+
"model.visual.blocks.8.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 385 |
+
"model.visual.blocks.8.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 386 |
+
"model.visual.blocks.8.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 387 |
+
"model.visual.blocks.8.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 388 |
+
"model.visual.blocks.8.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 389 |
+
"model.visual.blocks.8.norm1.bias": "model-00001-of-00004.safetensors",
|
| 390 |
+
"model.visual.blocks.8.norm1.weight": "model-00001-of-00004.safetensors",
|
| 391 |
+
"model.visual.blocks.8.norm2.bias": "model-00001-of-00004.safetensors",
|
| 392 |
+
"model.visual.blocks.8.norm2.weight": "model-00001-of-00004.safetensors",
|
| 393 |
+
"model.visual.blocks.9.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 394 |
+
"model.visual.blocks.9.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 395 |
+
"model.visual.blocks.9.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 396 |
+
"model.visual.blocks.9.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 397 |
+
"model.visual.blocks.9.mlp.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 398 |
+
"model.visual.blocks.9.mlp.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 399 |
+
"model.visual.blocks.9.mlp.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 400 |
+
"model.visual.blocks.9.mlp.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 401 |
+
"model.visual.blocks.9.norm1.bias": "model-00001-of-00004.safetensors",
|
| 402 |
+
"model.visual.blocks.9.norm1.weight": "model-00001-of-00004.safetensors",
|
| 403 |
+
"model.visual.blocks.9.norm2.bias": "model-00001-of-00004.safetensors",
|
| 404 |
+
"model.visual.blocks.9.norm2.weight": "model-00001-of-00004.safetensors",
|
| 405 |
+
"model.visual.bsq_input_proj.norm.bias": "model-00001-of-00004.safetensors",
|
| 406 |
+
"model.visual.bsq_input_proj.norm.weight": "model-00001-of-00004.safetensors",
|
| 407 |
+
"model.visual.bsq_input_proj.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 408 |
+
"model.visual.bsq_input_proj.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 409 |
+
"model.visual.bsq_input_proj.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 410 |
+
"model.visual.bsq_input_proj.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 411 |
+
"model.visual.bsq_input_proj_list_0.norm.bias": "model-00001-of-00004.safetensors",
|
| 412 |
+
"model.visual.bsq_input_proj_list_0.norm.weight": "model-00001-of-00004.safetensors",
|
| 413 |
+
"model.visual.bsq_input_proj_list_0.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 414 |
+
"model.visual.bsq_input_proj_list_0.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 415 |
+
"model.visual.bsq_input_proj_list_0.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 416 |
+
"model.visual.bsq_input_proj_list_0.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 417 |
+
"model.visual.bsq_input_proj_list_1.norm.bias": "model-00001-of-00004.safetensors",
|
| 418 |
+
"model.visual.bsq_input_proj_list_1.norm.weight": "model-00001-of-00004.safetensors",
|
| 419 |
+
"model.visual.bsq_input_proj_list_1.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 420 |
+
"model.visual.bsq_input_proj_list_1.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 421 |
+
"model.visual.bsq_input_proj_list_1.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 422 |
+
"model.visual.bsq_input_proj_list_1.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 423 |
+
"model.visual.bsq_input_proj_list_2.norm.bias": "model-00001-of-00004.safetensors",
|
| 424 |
+
"model.visual.bsq_input_proj_list_2.norm.weight": "model-00001-of-00004.safetensors",
|
| 425 |
+
"model.visual.bsq_input_proj_list_2.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 426 |
+
"model.visual.bsq_input_proj_list_2.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 427 |
+
"model.visual.bsq_input_proj_list_2.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 428 |
+
"model.visual.bsq_input_proj_list_2.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 429 |
+
"model.visual.bsq_output_proj.norm.bias": "model-00001-of-00004.safetensors",
|
| 430 |
+
"model.visual.bsq_output_proj.norm.weight": "model-00001-of-00004.safetensors",
|
| 431 |
+
"model.visual.bsq_output_proj.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 432 |
+
"model.visual.bsq_output_proj.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 433 |
+
"model.visual.bsq_output_proj.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 434 |
+
"model.visual.bsq_output_proj.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 435 |
+
"model.visual.bsq_output_proj_list_0.norm.bias": "model-00001-of-00004.safetensors",
|
| 436 |
+
"model.visual.bsq_output_proj_list_0.norm.weight": "model-00001-of-00004.safetensors",
|
| 437 |
+
"model.visual.bsq_output_proj_list_0.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 438 |
+
"model.visual.bsq_output_proj_list_0.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 439 |
+
"model.visual.bsq_output_proj_list_0.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 440 |
+
"model.visual.bsq_output_proj_list_0.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 441 |
+
"model.visual.bsq_output_proj_list_1.norm.bias": "model-00001-of-00004.safetensors",
|
| 442 |
+
"model.visual.bsq_output_proj_list_1.norm.weight": "model-00001-of-00004.safetensors",
|
| 443 |
+
"model.visual.bsq_output_proj_list_1.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 444 |
+
"model.visual.bsq_output_proj_list_1.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 445 |
+
"model.visual.bsq_output_proj_list_1.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 446 |
+
"model.visual.bsq_output_proj_list_1.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 447 |
+
"model.visual.bsq_output_proj_list_2.norm.bias": "model-00001-of-00004.safetensors",
|
| 448 |
+
"model.visual.bsq_output_proj_list_2.norm.weight": "model-00001-of-00004.safetensors",
|
| 449 |
+
"model.visual.bsq_output_proj_list_2.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 450 |
+
"model.visual.bsq_output_proj_list_2.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 451 |
+
"model.visual.bsq_output_proj_list_2.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 452 |
+
"model.visual.bsq_output_proj_list_2.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 453 |
+
"model.visual.merger.norm.bias": "model-00001-of-00004.safetensors",
|
| 454 |
+
"model.visual.merger.norm.weight": "model-00001-of-00004.safetensors",
|
| 455 |
+
"model.visual.merger.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 456 |
+
"model.visual.merger.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 457 |
+
"model.visual.merger.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 458 |
+
"model.visual.merger.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 459 |
+
"model.visual.deepstack_merger_list.0.norm.bias": "model-00001-of-00004.safetensors",
|
| 460 |
+
"model.visual.deepstack_merger_list.0.norm.weight": "model-00001-of-00004.safetensors",
|
| 461 |
+
"model.visual.deepstack_merger_list.0.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 462 |
+
"model.visual.deepstack_merger_list.0.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 463 |
+
"model.visual.deepstack_merger_list.0.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 464 |
+
"model.visual.deepstack_merger_list.0.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 465 |
+
"model.visual.deepstack_merger_list.1.norm.bias": "model-00001-of-00004.safetensors",
|
| 466 |
+
"model.visual.deepstack_merger_list.1.norm.weight": "model-00001-of-00004.safetensors",
|
| 467 |
+
"model.visual.deepstack_merger_list.1.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 468 |
+
"model.visual.deepstack_merger_list.1.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 469 |
+
"model.visual.deepstack_merger_list.1.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 470 |
+
"model.visual.deepstack_merger_list.1.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 471 |
+
"model.visual.deepstack_merger_list.2.norm.bias": "model-00001-of-00004.safetensors",
|
| 472 |
+
"model.visual.deepstack_merger_list.2.norm.weight": "model-00001-of-00004.safetensors",
|
| 473 |
+
"model.visual.deepstack_merger_list.2.linear_fc1.bias": "model-00001-of-00004.safetensors",
|
| 474 |
+
"model.visual.deepstack_merger_list.2.linear_fc1.weight": "model-00001-of-00004.safetensors",
|
| 475 |
+
"model.visual.deepstack_merger_list.2.linear_fc2.bias": "model-00001-of-00004.safetensors",
|
| 476 |
+
"model.visual.deepstack_merger_list.2.linear_fc2.weight": "model-00001-of-00004.safetensors",
|
| 477 |
+
"model.visual.patch_embed.proj.bias": "model-00001-of-00004.safetensors",
|
| 478 |
+
"model.visual.patch_embed.proj.weight": "model-00001-of-00004.safetensors",
|
| 479 |
+
"model.visual.pos_embed.weight": "model-00001-of-00004.safetensors",
|
| 480 |
+
"model.language_model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 481 |
+
"model.language_model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 482 |
+
"model.language_model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 483 |
+
"model.language_model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 484 |
+
"model.language_model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 485 |
+
"model.language_model.layers.10.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 486 |
+
"model.language_model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 487 |
+
"model.language_model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 488 |
+
"model.language_model.layers.10.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 489 |
+
"model.language_model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 490 |
+
"model.language_model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 491 |
+
"model.language_model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 492 |
+
"model.language_model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 493 |
+
"model.language_model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 494 |
+
"model.language_model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 495 |
+
"model.language_model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 496 |
+
"model.language_model.layers.11.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 497 |
+
"model.language_model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 498 |
+
"model.language_model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 499 |
+
"model.language_model.layers.11.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 500 |
+
"model.language_model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 501 |
+
"model.language_model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 502 |
+
"model.language_model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 503 |
+
"model.language_model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 504 |
+
"model.language_model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 505 |
+
"model.language_model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 506 |
+
"model.language_model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 507 |
+
"model.language_model.layers.12.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 508 |
+
"model.language_model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 509 |
+
"model.language_model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 510 |
+
"model.language_model.layers.12.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 511 |
+
"model.language_model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 512 |
+
"model.language_model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 513 |
+
"model.language_model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 514 |
+
"model.language_model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 515 |
+
"model.language_model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 516 |
+
"model.language_model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 517 |
+
"model.language_model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 518 |
+
"model.language_model.layers.13.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 519 |
+
"model.language_model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 520 |
+
"model.language_model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 521 |
+
"model.language_model.layers.13.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 522 |
+
"model.language_model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 523 |
+
"model.language_model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 524 |
+
"model.language_model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 525 |
+
"model.language_model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 526 |
+
"model.language_model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 527 |
+
"model.language_model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 528 |
+
"model.language_model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 529 |
+
"model.language_model.layers.14.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 530 |
+
"model.language_model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 531 |
+
"model.language_model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 532 |
+
"model.language_model.layers.14.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 533 |
+
"model.language_model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 534 |
+
"model.language_model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 535 |
+
"model.language_model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 536 |
+
"model.language_model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 537 |
+
"model.language_model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 538 |
+
"model.language_model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 539 |
+
"model.language_model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 540 |
+
"model.language_model.layers.15.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 541 |
+
"model.language_model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 542 |
+
"model.language_model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 543 |
+
"model.language_model.layers.15.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 544 |
+
"model.language_model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 545 |
+
"model.language_model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 546 |
+
"model.language_model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 547 |
+
"model.language_model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 548 |
+
"model.language_model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 549 |
+
"model.language_model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 550 |
+
"model.language_model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 551 |
+
"model.language_model.layers.16.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 552 |
+
"model.language_model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 553 |
+
"model.language_model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 554 |
+
"model.language_model.layers.16.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 555 |
+
"model.language_model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 556 |
+
"model.language_model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 557 |
+
"model.language_model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 558 |
+
"model.language_model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 559 |
+
"model.language_model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 560 |
+
"model.language_model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 561 |
+
"model.language_model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 562 |
+
"model.language_model.layers.17.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 563 |
+
"model.language_model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 564 |
+
"model.language_model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 565 |
+
"model.language_model.layers.17.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 566 |
+
"model.language_model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 567 |
+
"model.language_model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 568 |
+
"model.language_model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 569 |
+
"model.language_model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 570 |
+
"model.language_model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 571 |
+
"model.language_model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 572 |
+
"model.language_model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 573 |
+
"model.language_model.layers.18.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 574 |
+
"model.language_model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 575 |
+
"model.language_model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 576 |
+
"model.language_model.layers.18.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 577 |
+
"model.language_model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 578 |
+
"model.language_model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 579 |
+
"model.language_model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 580 |
+
"model.language_model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 581 |
+
"model.language_model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 582 |
+
"model.language_model.layers.6.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 583 |
+
"model.language_model.layers.6.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 584 |
+
"model.language_model.layers.6.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 585 |
+
"model.language_model.layers.6.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 586 |
+
"model.language_model.layers.6.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 587 |
+
"model.language_model.layers.7.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 588 |
+
"model.language_model.layers.7.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 589 |
+
"model.language_model.layers.7.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 590 |
+
"model.language_model.layers.7.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 591 |
+
"model.language_model.layers.7.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 592 |
+
"model.language_model.layers.7.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 593 |
+
"model.language_model.layers.7.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 594 |
+
"model.language_model.layers.7.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 595 |
+
"model.language_model.layers.7.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 596 |
+
"model.language_model.layers.7.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 597 |
+
"model.language_model.layers.7.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 598 |
+
"model.language_model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 599 |
+
"model.language_model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 600 |
+
"model.language_model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 601 |
+
"model.language_model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 602 |
+
"model.language_model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 603 |
+
"model.language_model.layers.8.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 604 |
+
"model.language_model.layers.8.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 605 |
+
"model.language_model.layers.8.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 606 |
+
"model.language_model.layers.8.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 607 |
+
"model.language_model.layers.8.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 608 |
+
"model.language_model.layers.8.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 609 |
+
"model.language_model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 610 |
+
"model.language_model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 611 |
+
"model.language_model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 612 |
+
"model.language_model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 613 |
+
"model.language_model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 614 |
+
"model.language_model.layers.9.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 615 |
+
"model.language_model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 616 |
+
"model.language_model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 617 |
+
"model.language_model.layers.9.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 618 |
+
"model.language_model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 619 |
+
"model.language_model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 620 |
+
"model.language_model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 621 |
+
"model.language_model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 622 |
+
"model.language_model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 623 |
+
"model.language_model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 624 |
+
"model.language_model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 625 |
+
"model.language_model.layers.19.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 626 |
+
"model.language_model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 627 |
+
"model.language_model.layers.19.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 628 |
+
"model.language_model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 629 |
+
"model.language_model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 630 |
+
"model.language_model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 631 |
+
"model.language_model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 632 |
+
"model.language_model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 633 |
+
"model.language_model.layers.20.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 634 |
+
"model.language_model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 635 |
+
"model.language_model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 636 |
+
"model.language_model.layers.20.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 637 |
+
"model.language_model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 638 |
+
"model.language_model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 639 |
+
"model.language_model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 640 |
+
"model.language_model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 641 |
+
"model.language_model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 642 |
+
"model.language_model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 643 |
+
"model.language_model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 644 |
+
"model.language_model.layers.21.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 645 |
+
"model.language_model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 646 |
+
"model.language_model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 647 |
+
"model.language_model.layers.21.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 648 |
+
"model.language_model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 649 |
+
"model.language_model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 650 |
+
"model.language_model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 651 |
+
"model.language_model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 652 |
+
"model.language_model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 653 |
+
"model.language_model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 654 |
+
"model.language_model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 655 |
+
"model.language_model.layers.22.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 656 |
+
"model.language_model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 657 |
+
"model.language_model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 658 |
+
"model.language_model.layers.22.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 659 |
+
"model.language_model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 660 |
+
"model.language_model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 661 |
+
"model.language_model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 662 |
+
"model.language_model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 663 |
+
"model.language_model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 664 |
+
"model.language_model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 665 |
+
"model.language_model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 666 |
+
"model.language_model.layers.23.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 667 |
+
"model.language_model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 668 |
+
"model.language_model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 669 |
+
"model.language_model.layers.23.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 670 |
+
"model.language_model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 671 |
+
"model.language_model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 672 |
+
"model.language_model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 673 |
+
"model.language_model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 674 |
+
"model.language_model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 675 |
+
"model.language_model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 676 |
+
"model.language_model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 677 |
+
"model.language_model.layers.24.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 678 |
+
"model.language_model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 679 |
+
"model.language_model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 680 |
+
"model.language_model.layers.24.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 681 |
+
"model.language_model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 682 |
+
"model.language_model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 683 |
+
"model.language_model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 684 |
+
"model.language_model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 685 |
+
"model.language_model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 686 |
+
"model.language_model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 687 |
+
"model.language_model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 688 |
+
"model.language_model.layers.25.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 689 |
+
"model.language_model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 690 |
+
"model.language_model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 691 |
+
"model.language_model.layers.25.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 692 |
+
"model.language_model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 693 |
+
"model.language_model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 694 |
+
"model.language_model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 695 |
+
"model.language_model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 696 |
+
"model.language_model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 697 |
+
"model.language_model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 698 |
+
"model.language_model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 699 |
+
"model.language_model.layers.26.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 700 |
+
"model.language_model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 701 |
+
"model.language_model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 702 |
+
"model.language_model.layers.26.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 703 |
+
"model.language_model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 704 |
+
"model.language_model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 705 |
+
"model.language_model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 706 |
+
"model.language_model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 707 |
+
"model.language_model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 708 |
+
"model.language_model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 709 |
+
"model.language_model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 710 |
+
"model.language_model.layers.27.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 711 |
+
"model.language_model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 712 |
+
"model.language_model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 713 |
+
"model.language_model.layers.27.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 714 |
+
"model.language_model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 715 |
+
"model.language_model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 716 |
+
"model.language_model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 717 |
+
"model.language_model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 718 |
+
"model.language_model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 719 |
+
"model.language_model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 720 |
+
"model.language_model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 721 |
+
"model.language_model.layers.28.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 722 |
+
"model.language_model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 723 |
+
"model.language_model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 724 |
+
"model.language_model.layers.28.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 725 |
+
"model.language_model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 726 |
+
"model.language_model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 727 |
+
"model.language_model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 728 |
+
"model.language_model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 729 |
+
"model.language_model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 730 |
+
"model.language_model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 731 |
+
"model.language_model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 732 |
+
"model.language_model.layers.29.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 733 |
+
"model.language_model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 734 |
+
"model.language_model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 735 |
+
"model.language_model.layers.29.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 736 |
+
"model.language_model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 737 |
+
"model.language_model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 738 |
+
"model.language_model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 739 |
+
"model.language_model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 740 |
+
"model.language_model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 741 |
+
"model.language_model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 742 |
+
"model.language_model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 743 |
+
"model.language_model.layers.30.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 744 |
+
"model.language_model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 745 |
+
"model.language_model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 746 |
+
"model.language_model.layers.30.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 747 |
+
"model.language_model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 748 |
+
"model.language_model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 749 |
+
"model.language_model.layers.31.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 750 |
+
"model.language_model.layers.31.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 751 |
+
"model.language_model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 752 |
+
"model.language_model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 753 |
+
"model.language_model.layers.31.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 754 |
+
"model.language_model.layers.31.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 755 |
+
"model.language_model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 756 |
+
"model.language_model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 757 |
+
"model.language_model.layers.31.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 758 |
+
"model.language_model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 759 |
+
"model.language_model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 760 |
+
"model.language_model.layers.32.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 761 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
| 762 |
+
"model.language_model.layers.32.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 763 |
+
"model.language_model.layers.32.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 764 |
+
"model.language_model.layers.32.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 765 |
+
"model.language_model.layers.32.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 766 |
+
"model.language_model.layers.32.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 767 |
+
"model.language_model.layers.32.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 768 |
+
"model.language_model.layers.32.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 769 |
+
"model.language_model.layers.32.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 770 |
+
"model.language_model.layers.32.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 771 |
+
"model.language_model.layers.32.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 772 |
+
"model.language_model.layers.33.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 773 |
+
"model.language_model.layers.33.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 774 |
+
"model.language_model.layers.33.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 775 |
+
"model.language_model.layers.33.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 776 |
+
"model.language_model.layers.33.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 777 |
+
"model.language_model.layers.33.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 778 |
+
"model.language_model.layers.33.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 779 |
+
"model.language_model.layers.33.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 780 |
+
"model.language_model.layers.33.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 781 |
+
"model.language_model.layers.33.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 782 |
+
"model.language_model.layers.33.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 783 |
+
"model.language_model.layers.34.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 784 |
+
"model.language_model.layers.34.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 785 |
+
"model.language_model.layers.34.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 786 |
+
"model.language_model.layers.34.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 787 |
+
"model.language_model.layers.34.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 788 |
+
"model.language_model.layers.34.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 789 |
+
"model.language_model.layers.34.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 790 |
+
"model.language_model.layers.34.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 791 |
+
"model.language_model.layers.34.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 792 |
+
"model.language_model.layers.34.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 793 |
+
"model.language_model.layers.34.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 794 |
+
"model.language_model.layers.35.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 795 |
+
"model.language_model.layers.35.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 796 |
+
"model.language_model.layers.35.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 797 |
+
"model.language_model.layers.35.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 798 |
+
"model.language_model.layers.35.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 799 |
+
"model.language_model.layers.35.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 800 |
+
"model.language_model.layers.35.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 801 |
+
"model.language_model.layers.35.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 802 |
+
"model.language_model.layers.35.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 803 |
+
"model.language_model.layers.35.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 804 |
+
"model.language_model.layers.35.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 805 |
+
"model.language_model.norm.weight": "model-00004-of-00004.safetensors",
|
| 806 |
+
"output_layer_vistok.0.weight": "model-00004-of-00004.safetensors",
|
| 807 |
+
"output_layer_vistok.1.weight": "model-00004-of-00004.safetensors",
|
| 808 |
+
"visual_decoder.0.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 809 |
+
"visual_decoder.0.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 810 |
+
"visual_decoder.0.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 811 |
+
"visual_decoder.0.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 812 |
+
"visual_decoder.0.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 813 |
+
"visual_decoder.0.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 814 |
+
"visual_decoder.0.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 815 |
+
"visual_decoder.0.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 816 |
+
"visual_decoder.0.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 817 |
+
"visual_decoder.0.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 818 |
+
"visual_decoder.0.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 819 |
+
"visual_decoder.1.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 820 |
+
"visual_decoder.1.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 821 |
+
"visual_decoder.1.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 822 |
+
"visual_decoder.1.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 823 |
+
"visual_decoder.1.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 824 |
+
"visual_decoder.1.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 825 |
+
"visual_decoder.1.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 826 |
+
"visual_decoder.1.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 827 |
+
"visual_decoder.1.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 828 |
+
"visual_decoder.1.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 829 |
+
"visual_decoder.1.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 830 |
+
"visual_decoder.2.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 831 |
+
"visual_decoder.2.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 832 |
+
"visual_decoder.2.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 833 |
+
"visual_decoder.2.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 834 |
+
"visual_decoder.2.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 835 |
+
"visual_decoder.2.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 836 |
+
"visual_decoder.2.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 837 |
+
"visual_decoder.2.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 838 |
+
"visual_decoder.2.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 839 |
+
"visual_decoder.2.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 840 |
+
"visual_decoder.2.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 841 |
+
"visual_decoder.3.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 842 |
+
"visual_decoder.3.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 843 |
+
"visual_decoder.3.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 844 |
+
"visual_decoder.3.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 845 |
+
"visual_decoder.3.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 846 |
+
"visual_decoder.3.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 847 |
+
"visual_decoder.3.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 848 |
+
"visual_decoder.3.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 849 |
+
"visual_decoder.3.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 850 |
+
"visual_decoder.3.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 851 |
+
"visual_decoder.3.self_attn.v_proj.weight": "model-00004-of-00004.safetensors"
|
| 852 |
+
}
|
| 853 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_convert_rgb": true,
|
| 3 |
+
"do_normalize": true,
|
| 4 |
+
"do_rescale": true,
|
| 5 |
+
"do_resize": true,
|
| 6 |
+
"image_mean": [
|
| 7 |
+
0.5,
|
| 8 |
+
0.5,
|
| 9 |
+
0.5
|
| 10 |
+
],
|
| 11 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 12 |
+
"image_std": [
|
| 13 |
+
0.5,
|
| 14 |
+
0.5,
|
| 15 |
+
0.5
|
| 16 |
+
],
|
| 17 |
+
"max_pixels": 16777216,
|
| 18 |
+
"merge_size": 2,
|
| 19 |
+
"min_pixels": 4096,
|
| 20 |
+
"patch_size": 16,
|
| 21 |
+
"processor_class": "Qwen3VLProcessor",
|
| 22 |
+
"resample": 3,
|
| 23 |
+
"rescale_factor": 0.00392156862745098,
|
| 24 |
+
"size": {
|
| 25 |
+
"longest_edge": 16777216,
|
| 26 |
+
"shortest_edge": 4096
|
| 27 |
+
},
|
| 28 |
+
"temporal_patch_size": 2
|
| 29 |
+
}
|
sd3_pipeline/.gitattributes
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
sd3_pipeline/LICENSE.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
STABILITY AI COMMUNITY LICENSE AGREEMENT
|
| 2 |
+
Last Updated: July 5, 2024
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
I. INTRODUCTION
|
| 6 |
+
|
| 7 |
+
This Agreement applies to any individual person or entity ("You", "Your" or "Licensee") that uses or distributes any portion or element of the Stability AI Materials or Derivative Works thereof for any Research & Non-Commercial or Commercial purpose. Capitalized terms not otherwise defined herein are defined in Section V below.
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
This Agreement is intended to allow research, non-commercial, and limited commercial uses of the Models free of charge. In order to ensure that certain limited commercial uses of the Models continue to be allowed, this Agreement preserves free access to the Models for people or organizations generating annual revenue of less than US $1,000,000 (or local currency equivalent).
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
By clicking "I Accept" or by using or distributing or using any portion or element of the Stability Materials or Derivative Works, You agree that You have read, understood and are bound by the terms of this Agreement. If You are acting on behalf of a company, organization or other entity, then "You" includes you and that entity, and You agree that You: (i) are an authorized representative of such entity with the authority to bind such entity to this Agreement, and (ii) You agree to the terms of this Agreement on that entity's behalf.
|
| 14 |
+
|
| 15 |
+
II. RESEARCH & NON-COMMERCIAL USE LICENSE
|
| 16 |
+
|
| 17 |
+
Subject to the terms of this Agreement, Stability AI grants You a non-exclusive, worldwide, non-transferable, non-sublicensable, revocable and royalty-free limited license under Stability AI's intellectual property or other rights owned by Stability AI embodied in the Stability AI Materials to use, reproduce, distribute, and create Derivative Works of, and make modifications to, the Stability AI Materials for any Research or Non-Commercial Purpose. "Research Purpose" means academic or scientific advancement, and in each case, is not primarily intended for commercial advantage or monetary compensation to You or others. "Non-Commercial Purpose" means any purpose other than a Research Purpose that is not primarily intended for commercial advantage or monetary compensation to You or others, such as personal use (i.e., hobbyist) or evaluation and testing.
|
| 18 |
+
|
| 19 |
+
III. COMMERCIAL USE LICENSE
|
| 20 |
+
|
| 21 |
+
Subject to the terms of this Agreement (including the remainder of this Section III), Stability AI grants You a non-exclusive, worldwide, non-transferable, non-sublicensable, revocable and royalty-free limited license under Stability AI's intellectual property or other rights owned by Stability AI embodied in the Stability AI Materials to use, reproduce, distribute, and create Derivative Works of, and make modifications to, the Stability AI Materials for any Commercial Purpose. "Commercial Purpose" means any purpose other than a Research Purpose or Non-Commercial Purpose that is primarily intended for commercial advantage or monetary compensation to You or others, including but not limited to, (i) creating, modifying, or distributing Your product or service, including via a hosted service or application programming interface, and (ii) for Your business's or organization's internal operations.
|
| 22 |
+
If You are using or distributing the Stability AI Materials for a Commercial Purpose, You must register with Stability AI at (https://stability.ai/community-license). If at any time You or Your Affiliate(s), either individually or in aggregate, generate more than USD $1,000,000 in annual revenue (or the equivalent thereof in Your local currency), regardless of whether that revenue is generated directly or indirectly from the Stability AI Materials or Derivative Works, any licenses granted to You under this Agreement shall terminate as of such date. You must request a license from Stability AI at (https://stability.ai/enterprise) , which Stability AI may grant to You in its sole discretion. If you receive Stability AI Materials, or any Derivative Works thereof, from a Licensee as part of an integrated end user product, then Section III of this Agreement will not apply to you.
|
| 23 |
+
|
| 24 |
+
IV. GENERAL TERMS
|
| 25 |
+
|
| 26 |
+
Your Research, Non-Commercial, and Commercial License(s) under this Agreement are subject to the following terms.
|
| 27 |
+
a. Distribution & Attribution. If You distribute or make available the Stability AI Materials or a Derivative Work to a third party, or a product or service that uses any portion of them, You shall: (i) provide a copy of this Agreement to that third party, (ii) retain the following attribution notice within a "Notice" text file distributed as a part of such copies: "This Stability AI Model is licensed under the Stability AI Community License, Copyright © Stability AI Ltd. All Rights Reserved", and (iii) prominently display "Powered by Stability AI" on a related website, user interface, blogpost, about page, or product documentation. If You create a Derivative Work, You may add your own attribution notice(s) to the "Notice" text file included with that Derivative Work, provided that You clearly indicate which attributions apply to the Stability AI Materials and state in the "Notice" text file that You changed the Stability AI Materials and how it was modified.
|
| 28 |
+
b. Use Restrictions. Your use of the Stability AI Materials and Derivative Works, including any output or results of the Stability AI Materials or Derivative Works, must comply with applicable laws and regulations (including Trade Control Laws and equivalent regulations) and adhere to the Documentation and Stability AI's AUP, which is hereby incorporated by reference. Furthermore, You will not use the Stability AI Materials or Derivative Works, or any output or results of the Stability AI Materials or Derivative Works, to create or improve any foundational generative AI model (excluding the Models or Derivative Works).
|
| 29 |
+
c. Intellectual Property.
|
| 30 |
+
(i) Trademark License. No trademark licenses are granted under this Agreement, and in connection with the Stability AI Materials or Derivative Works, You may not use any name or mark owned by or associated with Stability AI or any of its Affiliates, except as required under Section IV(a) herein.
|
| 31 |
+
(ii) Ownership of Derivative Works. As between You and Stability AI, You are the owner of Derivative Works You create, subject to Stability AI's ownership of the Stability AI Materials and any Derivative Works made by or for Stability AI.
|
| 32 |
+
(iii) Ownership of Outputs. As between You and Stability AI, You own any outputs generated from the Models or Derivative Works to the extent permitted by applicable law.
|
| 33 |
+
(iv) Disputes. If You or Your Affiliate(s) institute litigation or other proceedings against Stability AI (including a cross-claim or counterclaim in a lawsuit) alleging that the Stability AI Materials, Derivative Works or associated outputs or results, or any portion of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable by You, then any licenses granted to You under this Agreement shall terminate as of the date such litigation or claim is filed or instituted. You will indemnify and hold harmless Stability AI from and against any claim by any third party arising out of or related to Your use or distribution of the Stability AI Materials or Derivative Works in violation of this Agreement.
|
| 34 |
+
(v) Feedback. From time to time, You may provide Stability AI with verbal and/or written suggestions, comments or other feedback related to Stability AI's existing or prospective technology, products or services (collectively, "Feedback"). You are not obligated to provide Stability AI with Feedback, but to the extent that You do, You hereby grant Stability AI a perpetual, irrevocable, royalty-free, fully-paid, sub-licensable, transferable, non-exclusive, worldwide right and license to exploit the Feedback in any manner without restriction. Your Feedback is provided "AS IS" and You make no warranties whatsoever about any Feedback.
|
| 35 |
+
d. Disclaimer Of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE STABILITY AI MATERIALS AND ANY OUTPUT AND RESULTS THEREFROM ARE PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OR LAWFULNESS OF USING OR REDISTRIBUTING THE STABILITY AI MATERIALS, DERIVATIVE WORKS OR ANY OUTPUT OR RESULTS AND ASSUME ANY RISKS ASSOCIATED WITH YOUR USE OF THE STABILITY AI MATERIALS, DERIVATIVE WORKS AND ANY OUTPUT AND RESULTS.
|
| 36 |
+
e. Limitation Of Liability. IN NO EVENT WILL STABILITY AI OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT, FOR ANY LOST PROFITS OR ANY DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN IF STABILITY AI OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
|
| 37 |
+
f. Term And Termination. The term of this Agreement will commence upon Your acceptance of this Agreement or access to the Stability AI Materials and will continue in full force and effect until terminated in accordance with the terms and conditions herein. Stability AI may terminate this Agreement if You are in breach of any term or condition of this Agreement. Upon termination of this Agreement, You shall delete and cease use of any Stability AI Materials or Derivative Works. Section IV(d), (e), and (g) shall survive the termination of this Agreement.
|
| 38 |
+
g. Governing Law. This Agreement will be governed by and constructed in accordance with the laws of the United States and the State of California without regard to choice of law principles, and the UN Convention on Contracts for International Sale of Goods does not apply to this Agreement.
|
| 39 |
+
|
| 40 |
+
V. DEFINITIONS
|
| 41 |
+
|
| 42 |
+
"Affiliate(s)" means any entity that directly or indirectly controls, is controlled by, or is under common control with the subject entity; for purposes of this definition, "control" means direct or indirect ownership or control of more than 50% of the voting interests of the subject entity.
|
| 43 |
+
"Agreement" means this Stability AI Community License Agreement.
|
| 44 |
+
"AUP" means the Stability AI Acceptable Use Policy available at https://stability.ai/use-policy, as may be updated from time to time.
|
| 45 |
+
"Derivative Work(s)" means (a) any derivative work of the Stability AI Materials as recognized by U.S. copyright laws and (b) any modifications to a Model, and any other model created which is based on or derived from the Model or the Model's output, including"fine tune" and "low-rank adaptation" models derived from a Model or a Model's output, but do not include the output of any Model.
|
| 46 |
+
"Documentation" means any specifications, manuals, documentation, and other written information provided by Stability AI related to the Software or Models.
|
| 47 |
+
"Model(s)" means, collectively, Stability AI's proprietary models and algorithms, including machine-learning models, trained model weights and other elements of the foregoing listed on Stability's Core Models Webpage available at, https://stability.ai/core-models, as may be updated from time to time.
|
| 48 |
+
"Stability AI" or "we" means Stability AI Ltd. and its Affiliates.
|
| 49 |
+
"Software" means Stability AI's proprietary software made available under this Agreement now or in the future.
|
| 50 |
+
"Stability AI Materials" means, collectively, Stability's proprietary Models, Software and Documentation (and any portion or combination thereof) made available under this Agreement.
|
| 51 |
+
"Trade Control Laws" means any applicable U.S. and non-U.S. export control and trade sanctions laws and regulations.
|
sd3_pipeline/README.md
ADDED
|
@@ -0,0 +1,256 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: stabilityai-ai-community
|
| 4 |
+
license_link: LICENSE.md
|
| 5 |
+
tags:
|
| 6 |
+
- text-to-image
|
| 7 |
+
- stable-diffusion
|
| 8 |
+
- diffusers
|
| 9 |
+
inference: true
|
| 10 |
+
extra_gated_prompt: >-
|
| 11 |
+
By clicking "Agree", you agree to the [License
|
| 12 |
+
Agreement](https://huggingface.co/stabilityai/stable-diffusion-3.5-medium/blob/main/LICENSE.md)
|
| 13 |
+
and acknowledge Stability AI's [Privacy
|
| 14 |
+
Policy](https://stability.ai/privacy-policy).
|
| 15 |
+
extra_gated_fields:
|
| 16 |
+
Name: text
|
| 17 |
+
Email: text
|
| 18 |
+
Country: country
|
| 19 |
+
Organization or Affiliation: text
|
| 20 |
+
Receive email updates and promotions on Stability AI products, services, and research?:
|
| 21 |
+
type: select
|
| 22 |
+
options:
|
| 23 |
+
- 'Yes'
|
| 24 |
+
- 'No'
|
| 25 |
+
What do you intend to use the model for?:
|
| 26 |
+
type: select
|
| 27 |
+
options:
|
| 28 |
+
- Research
|
| 29 |
+
- Personal use
|
| 30 |
+
- Creative Professional
|
| 31 |
+
- Startup
|
| 32 |
+
- Enterprise
|
| 33 |
+
I agree to the License Agreement and acknowledge Stability AI's Privacy Policy: checkbox
|
| 34 |
+
|
| 35 |
+
language:
|
| 36 |
+
- en
|
| 37 |
+
pipeline_tag: text-to-image
|
| 38 |
+
---
|
| 39 |
+
|
| 40 |
+
# Stable Diffusion 3.5 Medium
|
| 41 |
+

|
| 42 |
+
|
| 43 |
+
## Model
|
| 44 |
+
|
| 45 |
+

|
| 46 |
+
|
| 47 |
+
[Stable Diffusion 3.5 Medium](https://stability.ai/news/introducing-stable-diffusion-3-5) is a Multimodal Diffusion Transformer with improvements (MMDiT-X) text-to-image model that features improved performance in image quality, typography, complex prompt understanding, and resource-efficiency.
|
| 48 |
+
|
| 49 |
+
Please note: This model is released under the [Stability Community License](https://stability.ai/community-license-agreement). Visit [Stability AI](https://stability.ai/license) to learn or [contact us](https://stability.ai/enterprise) for commercial licensing details.
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
### Model Description
|
| 53 |
+
|
| 54 |
+
- **Developed by:** Stability AI
|
| 55 |
+
- **Model type:** MMDiT-X text-to-image generative model
|
| 56 |
+
- **Model Description:** This model generates images based on text prompts. It is a Multimodal Diffusion Transformer
|
| 57 |
+
(https://arxiv.org/abs/2403.03206) with improvements that use three fixed, pretrained text encoders, with QK-normalization to improve training stability, and dual attention blocks in the first 12 transformer layers.
|
| 58 |
+
|
| 59 |
+
### License
|
| 60 |
+
|
| 61 |
+
- **Community License:** Free for research, non-commercial, and commercial use for organizations or individuals with less than $1M in total annual revenue. More details can be found in the [Community License Agreement](https://stability.ai/community-license-agreement). Read more at https://stability.ai/license.
|
| 62 |
+
- **For individuals and organizations with annual revenue above $1M**: please [contact us](https://stability.ai/enterprise) to get an Enterprise License.
|
| 63 |
+
|
| 64 |
+
### Model Sources
|
| 65 |
+
|
| 66 |
+
For local or self-hosted use, we recommend [ComfyUI](https://github.com/comfyanonymous/ComfyUI) for node-based UI inference, or [diffusers](https://github.com/huggingface/diffusers) or [GitHub](https://github.com/Stability-AI/sd3.5) for programmatic use.
|
| 67 |
+
|
| 68 |
+
- **ComfyUI:** [Github](https://github.com/comfyanonymous/ComfyUI), [Example Workflow](https://comfyanonymous.github.io/ComfyUI_examples/sd3/)
|
| 69 |
+
- **Huggingface Space:** [Space](https://huggingface.co/spaces/stabilityai/stable-diffusion-3.5-medium)
|
| 70 |
+
- **Diffusers**: [See below](#using-with-diffusers).
|
| 71 |
+
- **GitHub**: [GitHub](https://github.com/Stability-AI/sd3.5).
|
| 72 |
+
|
| 73 |
+
- **API Endpoints:**
|
| 74 |
+
- [Stability AI API](https://platform.stability.ai/docs/api-reference#tag/Generate/paths/~1v2beta~1stable-image~1generate~1sd3/post)
|
| 75 |
+
|
| 76 |
+
|
| 77 |
+
### Implementation Details
|
| 78 |
+
|
| 79 |
+
- **MMDiT-X:** Introduces self-attention modules in the first 13 layers of the transformer, enhancing multi-resolution generation and overall image coherence.
|
| 80 |
+
|
| 81 |
+
- **QK Normalization:** Implements the QK normalization technique to improve training Stability.
|
| 82 |
+
|
| 83 |
+
- **Mixed-Resolution Training:**
|
| 84 |
+
- Progressive training stages: 256 → 512 → 768 → 1024 → 1440 resolution
|
| 85 |
+
- The final stage included mixed-scale image training to boost multi-resolution generation performance
|
| 86 |
+
- Extended positional embedding space to 384x384 (latent) at lower resolution stages
|
| 87 |
+
- Employed random crop augmentation on positional embeddings to enhance transformer layer robustness across the entire range of mixed resolutions and aspect ratios. For example, given a 64x64 latent image, we add a randomly cropped 64x64 embedding from the 192x192 embedding space during training as the input to the x stream.
|
| 88 |
+
|
| 89 |
+
These enhancements collectively contribute to the model's improved performance in multi-resolution image generation, coherence, and adaptability across various text-to-image tasks.
|
| 90 |
+
|
| 91 |
+
- **Text Encoders:**
|
| 92 |
+
- CLIPs: [OpenCLIP-ViT/G](https://github.com/mlfoundations/open_clip), [CLIP-ViT/L](https://github.com/openai/CLIP/tree/main), context length 77 tokens
|
| 93 |
+
- T5: [T5-xxl](https://huggingface.co/google/t5-v1_1-xxl), context length 77/256 tokens at different stages of training
|
| 94 |
+
|
| 95 |
+
- **Training Data and Strategy:**
|
| 96 |
+
|
| 97 |
+
This model was trained on a wide variety of data, including synthetic data and filtered publicly available data.
|
| 98 |
+
|
| 99 |
+
For more technical details of the original MMDiT architecture, please refer to the [Research paper](https://stability.ai/news/stable-diffusion-3-research-paper).
|
| 100 |
+
|
| 101 |
+
### Usage & Limitations
|
| 102 |
+
- While this model can handle long prompts, you may observe artifacts on the edge of generations when T5 tokens go over 256. Pay attention to the token limits when using this model in your workflow, and shortern prompts if artifacts becomes too obvious.
|
| 103 |
+
- The medium model has a different training data distribution than the large model, so it may not respond to the same prompt similarly.
|
| 104 |
+
- We recommend sampling with **[Skip Layer Guidance](https://github.com/comfyanonymous/ComfyUI/pull/5404)** for better structure and anatomy coherency.
|
| 105 |
+
|
| 106 |
+
### Model Performance
|
| 107 |
+
|
| 108 |
+
See [blog](https://stability.ai/news/introducing-stable-diffusion-3-5) for our study about comparative performance in prompt adherence and aesthetic quality.
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
## File Structure
|
| 112 |
+
|
| 113 |
+
Click here to access the [Files and versions tab](https://huggingface.co/stabilityai/stable-diffusion-3.5-medium/tree/main)
|
| 114 |
+
|
| 115 |
+
```│
|
| 116 |
+
├── text_encoders/
|
| 117 |
+
│ ├── README.md
|
| 118 |
+
│ ├── clip_g.safetensors
|
| 119 |
+
│ ├── clip_l.safetensors
|
| 120 |
+
│ ├── t5xxl_fp16.safetensors
|
| 121 |
+
│ └── t5xxl_fp8_e4m3fn.safetensors
|
| 122 |
+
│
|
| 123 |
+
├── README.md
|
| 124 |
+
├── LICENSE
|
| 125 |
+
├── sd3.5_medium.safetensors
|
| 126 |
+
├── SD3.5M_example_workflow.json
|
| 127 |
+
├── SD3.5M_SLG_example_workflow.json
|
| 128 |
+
├── SD3.5L_plus_SD3.5M_upscaling_example_workflow.json
|
| 129 |
+
└── sd3_medium_demo.jpg
|
| 130 |
+
|
| 131 |
+
** File structure below is for diffusers integration**
|
| 132 |
+
├── scheduler/
|
| 133 |
+
├── text_encoder/
|
| 134 |
+
├── text_encoder_2/
|
| 135 |
+
├── text_encoder_3/
|
| 136 |
+
├── tokenizer/
|
| 137 |
+
├── tokenizer_2/
|
| 138 |
+
├── tokenizer_3/
|
| 139 |
+
├── transformer/
|
| 140 |
+
├── vae/
|
| 141 |
+
└── model_index.json
|
| 142 |
+
```
|
| 143 |
+
|
| 144 |
+
## Using with Diffusers
|
| 145 |
+
Upgrade to the latest version of the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 146 |
+
```
|
| 147 |
+
pip install -U diffusers
|
| 148 |
+
```
|
| 149 |
+
|
| 150 |
+
and then you can run
|
| 151 |
+
```py
|
| 152 |
+
import torch
|
| 153 |
+
from diffusers import StableDiffusion3Pipeline
|
| 154 |
+
|
| 155 |
+
pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-medium", torch_dtype=torch.bfloat16)
|
| 156 |
+
pipe = pipe.to("cuda")
|
| 157 |
+
|
| 158 |
+
image = pipe(
|
| 159 |
+
"A capybara holding a sign that reads Hello World",
|
| 160 |
+
num_inference_steps=40,
|
| 161 |
+
guidance_scale=4.5,
|
| 162 |
+
).images[0]
|
| 163 |
+
image.save("capybara.png")
|
| 164 |
+
```
|
| 165 |
+
|
| 166 |
+
### Quantizing the model with diffusers
|
| 167 |
+
|
| 168 |
+
Reduce your VRAM usage and have the model fit on 🤏 VRAM GPUs
|
| 169 |
+
|
| 170 |
+
```
|
| 171 |
+
pip install bitsandbytes
|
| 172 |
+
```
|
| 173 |
+
|
| 174 |
+
```py
|
| 175 |
+
from diffusers import BitsAndBytesConfig, SD3Transformer2DModel
|
| 176 |
+
from diffusers import StableDiffusion3Pipeline
|
| 177 |
+
import torch
|
| 178 |
+
|
| 179 |
+
model_id = "stabilityai/stable-diffusion-3.5-medium"
|
| 180 |
+
|
| 181 |
+
nf4_config = BitsAndBytesConfig(
|
| 182 |
+
load_in_4bit=True,
|
| 183 |
+
bnb_4bit_quant_type="nf4",
|
| 184 |
+
bnb_4bit_compute_dtype=torch.bfloat16
|
| 185 |
+
)
|
| 186 |
+
model_nf4 = SD3Transformer2DModel.from_pretrained(
|
| 187 |
+
model_id,
|
| 188 |
+
subfolder="transformer",
|
| 189 |
+
quantization_config=nf4_config,
|
| 190 |
+
torch_dtype=torch.bfloat16
|
| 191 |
+
)
|
| 192 |
+
|
| 193 |
+
pipeline = StableDiffusion3Pipeline.from_pretrained(
|
| 194 |
+
model_id,
|
| 195 |
+
transformer=model_nf4,
|
| 196 |
+
torch_dtype=torch.bfloat16
|
| 197 |
+
)
|
| 198 |
+
pipeline.enable_model_cpu_offload()
|
| 199 |
+
|
| 200 |
+
prompt = "A whimsical and creative image depicting a hybrid creature that is a mix of a waffle and a hippopotamus, basking in a river of melted butter amidst a breakfast-themed landscape. It features the distinctive, bulky body shape of a hippo. However, instead of the usual grey skin, the creature's body resembles a golden-brown, crispy waffle fresh off the griddle. The skin is textured with the familiar grid pattern of a waffle, each square filled with a glistening sheen of syrup. The environment combines the natural habitat of a hippo with elements of a breakfast table setting, a river of warm, melted butter, with oversized utensils or plates peeking out from the lush, pancake-like foliage in the background, a towering pepper mill standing in for a tree. As the sun rises in this fantastical world, it casts a warm, buttery glow over the scene. The creature, content in its butter river, lets out a yawn. Nearby, a flock of birds take flight"
|
| 201 |
+
|
| 202 |
+
image = pipeline(
|
| 203 |
+
prompt=prompt,
|
| 204 |
+
num_inference_steps=40,
|
| 205 |
+
guidance_scale=4.5,
|
| 206 |
+
max_sequence_length=512,
|
| 207 |
+
).images[0]
|
| 208 |
+
image.save("whimsical.png")
|
| 209 |
+
```
|
| 210 |
+
|
| 211 |
+
### Fine-tuning
|
| 212 |
+
|
| 213 |
+
Please see the fine-tuning guide [here](https://stabilityai.notion.site/Stable-Diffusion-3-5-Large-Fine-tuning-Tutorial-11a61cdcd1968027a15bdbd7c40be8c6).
|
| 214 |
+
|
| 215 |
+
|
| 216 |
+
## Uses
|
| 217 |
+
|
| 218 |
+
### Intended Uses
|
| 219 |
+
|
| 220 |
+
Intended uses include the following:
|
| 221 |
+
* Generation of artworks and use in design and other artistic processes.
|
| 222 |
+
* Applications in educational or creative tools.
|
| 223 |
+
* Research on generative models, including understanding the limitations of generative models.
|
| 224 |
+
|
| 225 |
+
All uses of the model must be in accordance with our [Acceptable Use Policy](https://stability.ai/use-policy).
|
| 226 |
+
|
| 227 |
+
### Out-of-Scope Uses
|
| 228 |
+
|
| 229 |
+
The model was not trained to be factual or true representations of people or events. As such, using the model to generate such content is out-of-scope of the abilities of this model.
|
| 230 |
+
|
| 231 |
+
## Safety
|
| 232 |
+
|
| 233 |
+
As part of our safety-by-design and responsible AI deployment approach, we take deliberate measures to ensure Integrity starts at the early stages of development. We implement safety measures throughout the development of our models. We have implemented safety mitigations that are intended to reduce the risk of certain harms, however we recommend that developers conduct their own testing and apply additional mitigations based on their specific use cases.
|
| 234 |
+
For more about our approach to Safety, please visit our [Safety page](https://stability.ai/safety).
|
| 235 |
+
|
| 236 |
+
### Integrity Evaluation
|
| 237 |
+
|
| 238 |
+
Our integrity evaluation methods include structured evaluations and red-teaming testing for certain harms. Testing was conducted primarily in English and may not cover all possible harms.
|
| 239 |
+
|
| 240 |
+
### Risks identified and mitigations:
|
| 241 |
+
|
| 242 |
+
* Harmful content: We have used filtered data sets when training our models and implemented safeguards that attempt to strike the right balance between usefulness and preventing harm. However, this does not guarantee that all possible harmful content has been removed. TAll developers and deployers should exercise caution and implement content safety guardrails based on their specific product policies and application use cases.
|
| 243 |
+
* Misuse: Technical limitations and developer and end-user education can help mitigate against malicious applications of models. All users are required to adhere to our [Acceptable Use Policy](https://stability.ai/use-policy), including when applying fine-tuning and prompt engineering mechanisms. Please reference the Stability AI Acceptable Use Policy for information on violative uses of our products.
|
| 244 |
+
* Privacy violations: Developers and deployers are encouraged to adhere to privacy regulations with techniques that respect data privacy.
|
| 245 |
+
|
| 246 |
+
### Contact
|
| 247 |
+
|
| 248 |
+
Please report any issues with the model or contact us:
|
| 249 |
+
|
| 250 |
+
* Safety issues: safety@stability.ai
|
| 251 |
+
* Security issues: security@stability.ai
|
| 252 |
+
* Privacy issues: privacy@stability.ai
|
| 253 |
+
* License and general: https://stability.ai/license
|
| 254 |
+
* Enterprise license: https://stability.ai/enterprise
|
| 255 |
+
|
| 256 |
+
|
sd3_pipeline/SD3.5L_plus_SD3.5M_upscaling_example_workflow.json
ADDED
|
@@ -0,0 +1,1235 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"last_node_id": 331,
|
| 3 |
+
"last_link_id": 672,
|
| 4 |
+
"nodes": [
|
| 5 |
+
{
|
| 6 |
+
"id": 68,
|
| 7 |
+
"type": "ConditioningSetTimestepRange",
|
| 8 |
+
"pos": [
|
| 9 |
+
756,
|
| 10 |
+
1008
|
| 11 |
+
],
|
| 12 |
+
"size": {
|
| 13 |
+
"0": 317.4000244140625,
|
| 14 |
+
"1": 82
|
| 15 |
+
},
|
| 16 |
+
"flags": {},
|
| 17 |
+
"order": 14,
|
| 18 |
+
"mode": 0,
|
| 19 |
+
"inputs": [
|
| 20 |
+
{
|
| 21 |
+
"name": "conditioning",
|
| 22 |
+
"type": "CONDITIONING",
|
| 23 |
+
"link": 90
|
| 24 |
+
}
|
| 25 |
+
],
|
| 26 |
+
"outputs": [
|
| 27 |
+
{
|
| 28 |
+
"name": "CONDITIONING",
|
| 29 |
+
"type": "CONDITIONING",
|
| 30 |
+
"links": [
|
| 31 |
+
91
|
| 32 |
+
],
|
| 33 |
+
"shape": 3,
|
| 34 |
+
"slot_index": 0
|
| 35 |
+
}
|
| 36 |
+
],
|
| 37 |
+
"properties": {
|
| 38 |
+
"Node name for S&R": "ConditioningSetTimestepRange"
|
| 39 |
+
},
|
| 40 |
+
"widgets_values": [
|
| 41 |
+
0.1,
|
| 42 |
+
1
|
| 43 |
+
]
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"id": 67,
|
| 47 |
+
"type": "ConditioningZeroOut",
|
| 48 |
+
"pos": [
|
| 49 |
+
504,
|
| 50 |
+
1008
|
| 51 |
+
],
|
| 52 |
+
"size": {
|
| 53 |
+
"0": 211.60000610351562,
|
| 54 |
+
"1": 26
|
| 55 |
+
},
|
| 56 |
+
"flags": {},
|
| 57 |
+
"order": 13,
|
| 58 |
+
"mode": 0,
|
| 59 |
+
"inputs": [
|
| 60 |
+
{
|
| 61 |
+
"name": "conditioning",
|
| 62 |
+
"type": "CONDITIONING",
|
| 63 |
+
"link": 597
|
| 64 |
+
}
|
| 65 |
+
],
|
| 66 |
+
"outputs": [
|
| 67 |
+
{
|
| 68 |
+
"name": "CONDITIONING",
|
| 69 |
+
"type": "CONDITIONING",
|
| 70 |
+
"links": [
|
| 71 |
+
90
|
| 72 |
+
],
|
| 73 |
+
"shape": 3,
|
| 74 |
+
"slot_index": 0
|
| 75 |
+
}
|
| 76 |
+
],
|
| 77 |
+
"properties": {
|
| 78 |
+
"Node name for S&R": "ConditioningZeroOut"
|
| 79 |
+
}
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"id": 11,
|
| 83 |
+
"type": "TripleCLIPLoader",
|
| 84 |
+
"pos": [
|
| 85 |
+
-1386,
|
| 86 |
+
756
|
| 87 |
+
],
|
| 88 |
+
"size": {
|
| 89 |
+
"0": 315,
|
| 90 |
+
"1": 106
|
| 91 |
+
},
|
| 92 |
+
"flags": {},
|
| 93 |
+
"order": 0,
|
| 94 |
+
"mode": 0,
|
| 95 |
+
"outputs": [
|
| 96 |
+
{
|
| 97 |
+
"name": "CLIP",
|
| 98 |
+
"type": "CLIP",
|
| 99 |
+
"links": [
|
| 100 |
+
5,
|
| 101 |
+
94,
|
| 102 |
+
662
|
| 103 |
+
],
|
| 104 |
+
"shape": 3,
|
| 105 |
+
"slot_index": 0
|
| 106 |
+
}
|
| 107 |
+
],
|
| 108 |
+
"properties": {
|
| 109 |
+
"Node name for S&R": "TripleCLIPLoader"
|
| 110 |
+
},
|
| 111 |
+
"widgets_values": [
|
| 112 |
+
"clip_g_sdxl_base.safetensors",
|
| 113 |
+
"clip_l_sdxl_base.safetensors",
|
| 114 |
+
"t5xxl.safetensors"
|
| 115 |
+
]
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"id": 69,
|
| 119 |
+
"type": "ConditioningCombine",
|
| 120 |
+
"pos": [
|
| 121 |
+
1134,
|
| 122 |
+
1008
|
| 123 |
+
],
|
| 124 |
+
"size": {
|
| 125 |
+
"0": 228.39999389648438,
|
| 126 |
+
"1": 46
|
| 127 |
+
},
|
| 128 |
+
"flags": {},
|
| 129 |
+
"order": 15,
|
| 130 |
+
"mode": 0,
|
| 131 |
+
"inputs": [
|
| 132 |
+
{
|
| 133 |
+
"name": "conditioning_1",
|
| 134 |
+
"type": "CONDITIONING",
|
| 135 |
+
"link": 91
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"name": "conditioning_2",
|
| 139 |
+
"type": "CONDITIONING",
|
| 140 |
+
"link": 92
|
| 141 |
+
}
|
| 142 |
+
],
|
| 143 |
+
"outputs": [
|
| 144 |
+
{
|
| 145 |
+
"name": "CONDITIONING",
|
| 146 |
+
"type": "CONDITIONING",
|
| 147 |
+
"links": [
|
| 148 |
+
604,
|
| 149 |
+
622
|
| 150 |
+
],
|
| 151 |
+
"shape": 3,
|
| 152 |
+
"slot_index": 0
|
| 153 |
+
}
|
| 154 |
+
],
|
| 155 |
+
"properties": {
|
| 156 |
+
"Node name for S&R": "ConditioningCombine"
|
| 157 |
+
}
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"id": 4,
|
| 161 |
+
"type": "CheckpointLoaderSimple",
|
| 162 |
+
"pos": [
|
| 163 |
+
-1386,
|
| 164 |
+
252
|
| 165 |
+
],
|
| 166 |
+
"size": {
|
| 167 |
+
"0": 632.6060180664062,
|
| 168 |
+
"1": 98
|
| 169 |
+
},
|
| 170 |
+
"flags": {},
|
| 171 |
+
"order": 1,
|
| 172 |
+
"mode": 0,
|
| 173 |
+
"outputs": [
|
| 174 |
+
{
|
| 175 |
+
"name": "MODEL",
|
| 176 |
+
"type": "MODEL",
|
| 177 |
+
"links": [
|
| 178 |
+
445
|
| 179 |
+
],
|
| 180 |
+
"shape": 3,
|
| 181 |
+
"slot_index": 0
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"name": "CLIP",
|
| 185 |
+
"type": "CLIP",
|
| 186 |
+
"links": null,
|
| 187 |
+
"shape": 3
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"name": "VAE",
|
| 191 |
+
"type": "VAE",
|
| 192 |
+
"links": [
|
| 193 |
+
605,
|
| 194 |
+
616,
|
| 195 |
+
617
|
| 196 |
+
],
|
| 197 |
+
"shape": 3,
|
| 198 |
+
"slot_index": 2
|
| 199 |
+
}
|
| 200 |
+
],
|
| 201 |
+
"properties": {
|
| 202 |
+
"Node name for S&R": "CheckpointLoaderSimple"
|
| 203 |
+
},
|
| 204 |
+
"widgets_values": [
|
| 205 |
+
"sd3.5_large.safetensors"
|
| 206 |
+
]
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"id": 8,
|
| 210 |
+
"type": "VAEDecode",
|
| 211 |
+
"pos": [
|
| 212 |
+
2015,
|
| 213 |
+
536
|
| 214 |
+
],
|
| 215 |
+
"size": {
|
| 216 |
+
"0": 210,
|
| 217 |
+
"1": 46
|
| 218 |
+
},
|
| 219 |
+
"flags": {},
|
| 220 |
+
"order": 17,
|
| 221 |
+
"mode": 0,
|
| 222 |
+
"inputs": [
|
| 223 |
+
{
|
| 224 |
+
"name": "samples",
|
| 225 |
+
"type": "LATENT",
|
| 226 |
+
"link": 572
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"name": "vae",
|
| 230 |
+
"type": "VAE",
|
| 231 |
+
"link": 605
|
| 232 |
+
}
|
| 233 |
+
],
|
| 234 |
+
"outputs": [
|
| 235 |
+
{
|
| 236 |
+
"name": "IMAGE",
|
| 237 |
+
"type": "IMAGE",
|
| 238 |
+
"links": [
|
| 239 |
+
274,
|
| 240 |
+
660
|
| 241 |
+
],
|
| 242 |
+
"shape": 3,
|
| 243 |
+
"slot_index": 0
|
| 244 |
+
}
|
| 245 |
+
],
|
| 246 |
+
"properties": {
|
| 247 |
+
"Node name for S&R": "VAEDecode"
|
| 248 |
+
}
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"id": 294,
|
| 252 |
+
"type": "KSampler",
|
| 253 |
+
"pos": [
|
| 254 |
+
1512,
|
| 255 |
+
378
|
| 256 |
+
],
|
| 257 |
+
"size": {
|
| 258 |
+
"0": 378,
|
| 259 |
+
"1": 504
|
| 260 |
+
},
|
| 261 |
+
"flags": {},
|
| 262 |
+
"order": 16,
|
| 263 |
+
"mode": 0,
|
| 264 |
+
"inputs": [
|
| 265 |
+
{
|
| 266 |
+
"name": "model",
|
| 267 |
+
"type": "MODEL",
|
| 268 |
+
"link": 568
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"name": "positive",
|
| 272 |
+
"type": "CONDITIONING",
|
| 273 |
+
"link": 569
|
| 274 |
+
},
|
| 275 |
+
{
|
| 276 |
+
"name": "negative",
|
| 277 |
+
"type": "CONDITIONING",
|
| 278 |
+
"link": 604
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"name": "latent_image",
|
| 282 |
+
"type": "LATENT",
|
| 283 |
+
"link": 598
|
| 284 |
+
}
|
| 285 |
+
],
|
| 286 |
+
"outputs": [
|
| 287 |
+
{
|
| 288 |
+
"name": "LATENT",
|
| 289 |
+
"type": "LATENT",
|
| 290 |
+
"links": [
|
| 291 |
+
572
|
| 292 |
+
],
|
| 293 |
+
"shape": 3,
|
| 294 |
+
"slot_index": 0
|
| 295 |
+
}
|
| 296 |
+
],
|
| 297 |
+
"properties": {
|
| 298 |
+
"Node name for S&R": "KSampler"
|
| 299 |
+
},
|
| 300 |
+
"widgets_values": [
|
| 301 |
+
339087769667945,
|
| 302 |
+
"fixed",
|
| 303 |
+
40,
|
| 304 |
+
4.5,
|
| 305 |
+
"dpmpp_2m",
|
| 306 |
+
"sgm_uniform",
|
| 307 |
+
1
|
| 308 |
+
]
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"id": 70,
|
| 312 |
+
"type": "ConditioningSetTimestepRange",
|
| 313 |
+
"pos": [
|
| 314 |
+
756,
|
| 315 |
+
1134
|
| 316 |
+
],
|
| 317 |
+
"size": {
|
| 318 |
+
"0": 317.4000244140625,
|
| 319 |
+
"1": 82
|
| 320 |
+
},
|
| 321 |
+
"flags": {},
|
| 322 |
+
"order": 12,
|
| 323 |
+
"mode": 0,
|
| 324 |
+
"inputs": [
|
| 325 |
+
{
|
| 326 |
+
"name": "conditioning",
|
| 327 |
+
"type": "CONDITIONING",
|
| 328 |
+
"link": 93,
|
| 329 |
+
"slot_index": 0
|
| 330 |
+
}
|
| 331 |
+
],
|
| 332 |
+
"outputs": [
|
| 333 |
+
{
|
| 334 |
+
"name": "CONDITIONING",
|
| 335 |
+
"type": "CONDITIONING",
|
| 336 |
+
"links": [
|
| 337 |
+
92
|
| 338 |
+
],
|
| 339 |
+
"shape": 3,
|
| 340 |
+
"slot_index": 0
|
| 341 |
+
}
|
| 342 |
+
],
|
| 343 |
+
"properties": {
|
| 344 |
+
"Node name for S&R": "ConditioningSetTimestepRange"
|
| 345 |
+
},
|
| 346 |
+
"widgets_values": [
|
| 347 |
+
0,
|
| 348 |
+
0.1
|
| 349 |
+
]
|
| 350 |
+
},
|
| 351 |
+
{
|
| 352 |
+
"id": 50,
|
| 353 |
+
"type": "PreviewImage",
|
| 354 |
+
"pos": [
|
| 355 |
+
2394,
|
| 356 |
+
378
|
| 357 |
+
],
|
| 358 |
+
"size": {
|
| 359 |
+
"0": 616.689697265625,
|
| 360 |
+
"1": 613.84130859375
|
| 361 |
+
},
|
| 362 |
+
"flags": {},
|
| 363 |
+
"order": 18,
|
| 364 |
+
"mode": 0,
|
| 365 |
+
"inputs": [
|
| 366 |
+
{
|
| 367 |
+
"name": "images",
|
| 368 |
+
"type": "IMAGE",
|
| 369 |
+
"link": 274
|
| 370 |
+
}
|
| 371 |
+
],
|
| 372 |
+
"properties": {
|
| 373 |
+
"Node name for S&R": "PreviewImage"
|
| 374 |
+
}
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": 308,
|
| 378 |
+
"type": "VAEEncode",
|
| 379 |
+
"pos": [
|
| 380 |
+
3150,
|
| 381 |
+
378
|
| 382 |
+
],
|
| 383 |
+
"size": {
|
| 384 |
+
"0": 210,
|
| 385 |
+
"1": 46
|
| 386 |
+
},
|
| 387 |
+
"flags": {},
|
| 388 |
+
"order": 21,
|
| 389 |
+
"mode": 0,
|
| 390 |
+
"inputs": [
|
| 391 |
+
{
|
| 392 |
+
"name": "pixels",
|
| 393 |
+
"type": "IMAGE",
|
| 394 |
+
"link": 671
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"name": "vae",
|
| 398 |
+
"type": "VAE",
|
| 399 |
+
"link": 616
|
| 400 |
+
}
|
| 401 |
+
],
|
| 402 |
+
"outputs": [
|
| 403 |
+
{
|
| 404 |
+
"name": "LATENT",
|
| 405 |
+
"type": "LATENT",
|
| 406 |
+
"links": [
|
| 407 |
+
623
|
| 408 |
+
],
|
| 409 |
+
"shape": 3,
|
| 410 |
+
"slot_index": 0
|
| 411 |
+
}
|
| 412 |
+
],
|
| 413 |
+
"properties": {
|
| 414 |
+
"Node name for S&R": "VAEEncode"
|
| 415 |
+
}
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"id": 310,
|
| 419 |
+
"type": "KSamplerAdvanced",
|
| 420 |
+
"pos": [
|
| 421 |
+
3402,
|
| 422 |
+
378
|
| 423 |
+
],
|
| 424 |
+
"size": {
|
| 425 |
+
"0": 378,
|
| 426 |
+
"1": 546
|
| 427 |
+
},
|
| 428 |
+
"flags": {},
|
| 429 |
+
"order": 22,
|
| 430 |
+
"mode": 0,
|
| 431 |
+
"inputs": [
|
| 432 |
+
{
|
| 433 |
+
"name": "model",
|
| 434 |
+
"type": "MODEL",
|
| 435 |
+
"link": 620
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"name": "positive",
|
| 439 |
+
"type": "CONDITIONING",
|
| 440 |
+
"link": 665
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"name": "negative",
|
| 444 |
+
"type": "CONDITIONING",
|
| 445 |
+
"link": 622
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"name": "latent_image",
|
| 449 |
+
"type": "LATENT",
|
| 450 |
+
"link": 623
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"name": "start_at_step",
|
| 454 |
+
"type": "INT",
|
| 455 |
+
"link": 672,
|
| 456 |
+
"widget": {
|
| 457 |
+
"name": "start_at_step"
|
| 458 |
+
}
|
| 459 |
+
}
|
| 460 |
+
],
|
| 461 |
+
"outputs": [
|
| 462 |
+
{
|
| 463 |
+
"name": "LATENT",
|
| 464 |
+
"type": "LATENT",
|
| 465 |
+
"links": [
|
| 466 |
+
624
|
| 467 |
+
],
|
| 468 |
+
"shape": 3,
|
| 469 |
+
"slot_index": 0
|
| 470 |
+
}
|
| 471 |
+
],
|
| 472 |
+
"properties": {
|
| 473 |
+
"Node name for S&R": "KSamplerAdvanced"
|
| 474 |
+
},
|
| 475 |
+
"widgets_values": [
|
| 476 |
+
"enable",
|
| 477 |
+
383006107596742,
|
| 478 |
+
"increment",
|
| 479 |
+
42,
|
| 480 |
+
4.5,
|
| 481 |
+
"dpmpp_2m",
|
| 482 |
+
"sgm_uniform",
|
| 483 |
+
30,
|
| 484 |
+
10000,
|
| 485 |
+
"disable"
|
| 486 |
+
]
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"id": 305,
|
| 490 |
+
"type": "VAEDecode",
|
| 491 |
+
"pos": [
|
| 492 |
+
3906,
|
| 493 |
+
378
|
| 494 |
+
],
|
| 495 |
+
"size": {
|
| 496 |
+
"0": 210,
|
| 497 |
+
"1": 46
|
| 498 |
+
},
|
| 499 |
+
"flags": {},
|
| 500 |
+
"order": 23,
|
| 501 |
+
"mode": 0,
|
| 502 |
+
"inputs": [
|
| 503 |
+
{
|
| 504 |
+
"name": "samples",
|
| 505 |
+
"type": "LATENT",
|
| 506 |
+
"link": 624
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"name": "vae",
|
| 510 |
+
"type": "VAE",
|
| 511 |
+
"link": 617
|
| 512 |
+
}
|
| 513 |
+
],
|
| 514 |
+
"outputs": [
|
| 515 |
+
{
|
| 516 |
+
"name": "IMAGE",
|
| 517 |
+
"type": "IMAGE",
|
| 518 |
+
"links": [
|
| 519 |
+
670
|
| 520 |
+
],
|
| 521 |
+
"shape": 3,
|
| 522 |
+
"slot_index": 0
|
| 523 |
+
}
|
| 524 |
+
],
|
| 525 |
+
"properties": {
|
| 526 |
+
"Node name for S&R": "VAEDecode"
|
| 527 |
+
}
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"id": 306,
|
| 531 |
+
"type": "PreviewImage",
|
| 532 |
+
"pos": [
|
| 533 |
+
4284,
|
| 534 |
+
378
|
| 535 |
+
],
|
| 536 |
+
"size": {
|
| 537 |
+
"0": 616.689697265625,
|
| 538 |
+
"1": 613.84130859375
|
| 539 |
+
},
|
| 540 |
+
"flags": {},
|
| 541 |
+
"order": 24,
|
| 542 |
+
"mode": 0,
|
| 543 |
+
"inputs": [
|
| 544 |
+
{
|
| 545 |
+
"name": "images",
|
| 546 |
+
"type": "IMAGE",
|
| 547 |
+
"link": 670
|
| 548 |
+
}
|
| 549 |
+
],
|
| 550 |
+
"properties": {
|
| 551 |
+
"Node name for S&R": "PreviewImage"
|
| 552 |
+
}
|
| 553 |
+
},
|
| 554 |
+
{
|
| 555 |
+
"id": 309,
|
| 556 |
+
"type": "PreviewImage",
|
| 557 |
+
"pos": [
|
| 558 |
+
4032,
|
| 559 |
+
630
|
| 560 |
+
],
|
| 561 |
+
"size": {
|
| 562 |
+
"0": 210,
|
| 563 |
+
"1": 246
|
| 564 |
+
},
|
| 565 |
+
"flags": {},
|
| 566 |
+
"order": 20,
|
| 567 |
+
"mode": 0,
|
| 568 |
+
"inputs": [
|
| 569 |
+
{
|
| 570 |
+
"name": "images",
|
| 571 |
+
"type": "IMAGE",
|
| 572 |
+
"link": 619
|
| 573 |
+
}
|
| 574 |
+
],
|
| 575 |
+
"properties": {
|
| 576 |
+
"Node name for S&R": "PreviewImage"
|
| 577 |
+
}
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"id": 105,
|
| 581 |
+
"type": "Note",
|
| 582 |
+
"pos": [
|
| 583 |
+
-630,
|
| 584 |
+
630
|
| 585 |
+
],
|
| 586 |
+
"size": {
|
| 587 |
+
"0": 210,
|
| 588 |
+
"1": 110.18948364257812
|
| 589 |
+
},
|
| 590 |
+
"flags": {},
|
| 591 |
+
"order": 2,
|
| 592 |
+
"mode": 0,
|
| 593 |
+
"properties": {
|
| 594 |
+
"text": ""
|
| 595 |
+
},
|
| 596 |
+
"widgets_values": [
|
| 597 |
+
"Make sure the resolution is multiple of 64 pixels and adds up to around 1 megapixel. "
|
| 598 |
+
],
|
| 599 |
+
"color": "#432",
|
| 600 |
+
"bgcolor": "#653"
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"id": 302,
|
| 604 |
+
"type": "ModelSamplingSD3",
|
| 605 |
+
"pos": [
|
| 606 |
+
756,
|
| 607 |
+
504
|
| 608 |
+
],
|
| 609 |
+
"size": {
|
| 610 |
+
"0": 315,
|
| 611 |
+
"1": 58
|
| 612 |
+
},
|
| 613 |
+
"flags": {
|
| 614 |
+
"collapsed": false
|
| 615 |
+
},
|
| 616 |
+
"order": 11,
|
| 617 |
+
"mode": 0,
|
| 618 |
+
"inputs": [
|
| 619 |
+
{
|
| 620 |
+
"name": "model",
|
| 621 |
+
"type": "MODEL",
|
| 622 |
+
"link": 606
|
| 623 |
+
}
|
| 624 |
+
],
|
| 625 |
+
"outputs": [
|
| 626 |
+
{
|
| 627 |
+
"name": "MODEL",
|
| 628 |
+
"type": "MODEL",
|
| 629 |
+
"links": [
|
| 630 |
+
620
|
| 631 |
+
],
|
| 632 |
+
"shape": 3,
|
| 633 |
+
"slot_index": 0
|
| 634 |
+
}
|
| 635 |
+
],
|
| 636 |
+
"properties": {
|
| 637 |
+
"Node name for S&R": "ModelSamplingSD3"
|
| 638 |
+
},
|
| 639 |
+
"widgets_values": [
|
| 640 |
+
3
|
| 641 |
+
]
|
| 642 |
+
},
|
| 643 |
+
{
|
| 644 |
+
"id": 13,
|
| 645 |
+
"type": "ModelSamplingSD3",
|
| 646 |
+
"pos": [
|
| 647 |
+
756,
|
| 648 |
+
252
|
| 649 |
+
],
|
| 650 |
+
"size": {
|
| 651 |
+
"0": 315,
|
| 652 |
+
"1": 58
|
| 653 |
+
},
|
| 654 |
+
"flags": {
|
| 655 |
+
"collapsed": false
|
| 656 |
+
},
|
| 657 |
+
"order": 10,
|
| 658 |
+
"mode": 0,
|
| 659 |
+
"inputs": [
|
| 660 |
+
{
|
| 661 |
+
"name": "model",
|
| 662 |
+
"type": "MODEL",
|
| 663 |
+
"link": 445
|
| 664 |
+
}
|
| 665 |
+
],
|
| 666 |
+
"outputs": [
|
| 667 |
+
{
|
| 668 |
+
"name": "MODEL",
|
| 669 |
+
"type": "MODEL",
|
| 670 |
+
"links": [
|
| 671 |
+
568
|
| 672 |
+
],
|
| 673 |
+
"shape": 3,
|
| 674 |
+
"slot_index": 0
|
| 675 |
+
}
|
| 676 |
+
],
|
| 677 |
+
"properties": {
|
| 678 |
+
"Node name for S&R": "ModelSamplingSD3"
|
| 679 |
+
},
|
| 680 |
+
"widgets_values": [
|
| 681 |
+
3
|
| 682 |
+
]
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"id": 307,
|
| 686 |
+
"type": "ImageScaleBy",
|
| 687 |
+
"pos": [
|
| 688 |
+
2394,
|
| 689 |
+
252
|
| 690 |
+
],
|
| 691 |
+
"size": {
|
| 692 |
+
"0": 315,
|
| 693 |
+
"1": 82
|
| 694 |
+
},
|
| 695 |
+
"flags": {},
|
| 696 |
+
"order": 19,
|
| 697 |
+
"mode": 0,
|
| 698 |
+
"inputs": [
|
| 699 |
+
{
|
| 700 |
+
"name": "image",
|
| 701 |
+
"type": "IMAGE",
|
| 702 |
+
"link": 660
|
| 703 |
+
}
|
| 704 |
+
],
|
| 705 |
+
"outputs": [
|
| 706 |
+
{
|
| 707 |
+
"name": "IMAGE",
|
| 708 |
+
"type": "IMAGE",
|
| 709 |
+
"links": [
|
| 710 |
+
619,
|
| 711 |
+
671
|
| 712 |
+
],
|
| 713 |
+
"shape": 3,
|
| 714 |
+
"slot_index": 0
|
| 715 |
+
}
|
| 716 |
+
],
|
| 717 |
+
"properties": {
|
| 718 |
+
"Node name for S&R": "ImageScaleBy"
|
| 719 |
+
},
|
| 720 |
+
"widgets_values": [
|
| 721 |
+
"lanczos",
|
| 722 |
+
1.4000000000000001
|
| 723 |
+
]
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"id": 330,
|
| 727 |
+
"type": "PrimitiveNode",
|
| 728 |
+
"pos": [
|
| 729 |
+
3150,
|
| 730 |
+
504
|
| 731 |
+
],
|
| 732 |
+
"size": {
|
| 733 |
+
"0": 210,
|
| 734 |
+
"1": 82
|
| 735 |
+
},
|
| 736 |
+
"flags": {},
|
| 737 |
+
"order": 3,
|
| 738 |
+
"mode": 0,
|
| 739 |
+
"outputs": [
|
| 740 |
+
{
|
| 741 |
+
"name": "INT",
|
| 742 |
+
"type": "INT",
|
| 743 |
+
"links": [
|
| 744 |
+
672
|
| 745 |
+
],
|
| 746 |
+
"slot_index": 0,
|
| 747 |
+
"widget": {
|
| 748 |
+
"name": "start_at_step"
|
| 749 |
+
}
|
| 750 |
+
}
|
| 751 |
+
],
|
| 752 |
+
"title": "Start at Step",
|
| 753 |
+
"properties": {
|
| 754 |
+
"Run widget replace on values": false
|
| 755 |
+
},
|
| 756 |
+
"widgets_values": [
|
| 757 |
+
30,
|
| 758 |
+
"fixed"
|
| 759 |
+
]
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"id": 135,
|
| 763 |
+
"type": "EmptySD3LatentImage",
|
| 764 |
+
"pos": [
|
| 765 |
+
-378,
|
| 766 |
+
630
|
| 767 |
+
],
|
| 768 |
+
"size": {
|
| 769 |
+
"0": 315,
|
| 770 |
+
"1": 106
|
| 771 |
+
},
|
| 772 |
+
"flags": {},
|
| 773 |
+
"order": 4,
|
| 774 |
+
"mode": 0,
|
| 775 |
+
"inputs": [],
|
| 776 |
+
"outputs": [
|
| 777 |
+
{
|
| 778 |
+
"name": "LATENT",
|
| 779 |
+
"type": "LATENT",
|
| 780 |
+
"links": [
|
| 781 |
+
598
|
| 782 |
+
],
|
| 783 |
+
"shape": 3,
|
| 784 |
+
"slot_index": 0
|
| 785 |
+
}
|
| 786 |
+
],
|
| 787 |
+
"properties": {
|
| 788 |
+
"Node name for S&R": "EmptySD3LatentImage"
|
| 789 |
+
},
|
| 790 |
+
"widgets_values": [
|
| 791 |
+
1152,
|
| 792 |
+
896,
|
| 793 |
+
1
|
| 794 |
+
]
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"id": 301,
|
| 798 |
+
"type": "CheckpointLoaderSimple",
|
| 799 |
+
"pos": [
|
| 800 |
+
-1386,
|
| 801 |
+
504
|
| 802 |
+
],
|
| 803 |
+
"size": {
|
| 804 |
+
"0": 632.6060180664062,
|
| 805 |
+
"1": 98
|
| 806 |
+
},
|
| 807 |
+
"flags": {},
|
| 808 |
+
"order": 5,
|
| 809 |
+
"mode": 0,
|
| 810 |
+
"outputs": [
|
| 811 |
+
{
|
| 812 |
+
"name": "MODEL",
|
| 813 |
+
"type": "MODEL",
|
| 814 |
+
"links": [
|
| 815 |
+
606
|
| 816 |
+
],
|
| 817 |
+
"shape": 3,
|
| 818 |
+
"slot_index": 0
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"name": "CLIP",
|
| 822 |
+
"type": "CLIP",
|
| 823 |
+
"links": null,
|
| 824 |
+
"shape": 3
|
| 825 |
+
},
|
| 826 |
+
{
|
| 827 |
+
"name": "VAE",
|
| 828 |
+
"type": "VAE",
|
| 829 |
+
"links": [],
|
| 830 |
+
"shape": 3,
|
| 831 |
+
"slot_index": 2
|
| 832 |
+
}
|
| 833 |
+
],
|
| 834 |
+
"properties": {
|
| 835 |
+
"Node name for S&R": "CheckpointLoaderSimple"
|
| 836 |
+
},
|
| 837 |
+
"widgets_values": [
|
| 838 |
+
"sd3.5_medium.safetensors"
|
| 839 |
+
]
|
| 840 |
+
},
|
| 841 |
+
{
|
| 842 |
+
"id": 71,
|
| 843 |
+
"type": "CLIPTextEncode",
|
| 844 |
+
"pos": [
|
| 845 |
+
-378,
|
| 846 |
+
1260
|
| 847 |
+
],
|
| 848 |
+
"size": {
|
| 849 |
+
"0": 351.8130798339844,
|
| 850 |
+
"1": 195.57545471191406
|
| 851 |
+
},
|
| 852 |
+
"flags": {},
|
| 853 |
+
"order": 8,
|
| 854 |
+
"mode": 0,
|
| 855 |
+
"inputs": [
|
| 856 |
+
{
|
| 857 |
+
"name": "clip",
|
| 858 |
+
"type": "CLIP",
|
| 859 |
+
"link": 94
|
| 860 |
+
}
|
| 861 |
+
],
|
| 862 |
+
"outputs": [
|
| 863 |
+
{
|
| 864 |
+
"name": "CONDITIONING",
|
| 865 |
+
"type": "CONDITIONING",
|
| 866 |
+
"links": [
|
| 867 |
+
93,
|
| 868 |
+
597
|
| 869 |
+
],
|
| 870 |
+
"shape": 3,
|
| 871 |
+
"slot_index": 0
|
| 872 |
+
}
|
| 873 |
+
],
|
| 874 |
+
"properties": {
|
| 875 |
+
"Node name for S&R": "CLIPTextEncode"
|
| 876 |
+
},
|
| 877 |
+
"widgets_values": [
|
| 878 |
+
""
|
| 879 |
+
],
|
| 880 |
+
"color": "#322",
|
| 881 |
+
"bgcolor": "#533"
|
| 882 |
+
},
|
| 883 |
+
{
|
| 884 |
+
"id": 6,
|
| 885 |
+
"type": "CLIPTextEncode",
|
| 886 |
+
"pos": [
|
| 887 |
+
-378,
|
| 888 |
+
882
|
| 889 |
+
],
|
| 890 |
+
"size": [
|
| 891 |
+
342.21509258248534,
|
| 892 |
+
195.87930444715585
|
| 893 |
+
],
|
| 894 |
+
"flags": {},
|
| 895 |
+
"order": 7,
|
| 896 |
+
"mode": 0,
|
| 897 |
+
"inputs": [
|
| 898 |
+
{
|
| 899 |
+
"name": "clip",
|
| 900 |
+
"type": "CLIP",
|
| 901 |
+
"link": 5
|
| 902 |
+
}
|
| 903 |
+
],
|
| 904 |
+
"outputs": [
|
| 905 |
+
{
|
| 906 |
+
"name": "CONDITIONING",
|
| 907 |
+
"type": "CONDITIONING",
|
| 908 |
+
"links": [
|
| 909 |
+
569
|
| 910 |
+
],
|
| 911 |
+
"shape": 3,
|
| 912 |
+
"slot_index": 0
|
| 913 |
+
}
|
| 914 |
+
],
|
| 915 |
+
"properties": {
|
| 916 |
+
"Node name for S&R": "CLIPTextEncode"
|
| 917 |
+
},
|
| 918 |
+
"widgets_values": [
|
| 919 |
+
"cinematic film still, epic, photo of a woman wearing sunglasses"
|
| 920 |
+
],
|
| 921 |
+
"color": "#232",
|
| 922 |
+
"bgcolor": "#353"
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"id": 324,
|
| 926 |
+
"type": "CLIPTextEncode",
|
| 927 |
+
"pos": [
|
| 928 |
+
-378,
|
| 929 |
+
1134
|
| 930 |
+
],
|
| 931 |
+
"size": [
|
| 932 |
+
346.27611650227504,
|
| 933 |
+
80.0318642466309
|
| 934 |
+
],
|
| 935 |
+
"flags": {},
|
| 936 |
+
"order": 9,
|
| 937 |
+
"mode": 0,
|
| 938 |
+
"inputs": [
|
| 939 |
+
{
|
| 940 |
+
"name": "clip",
|
| 941 |
+
"type": "CLIP",
|
| 942 |
+
"link": 662
|
| 943 |
+
}
|
| 944 |
+
],
|
| 945 |
+
"outputs": [
|
| 946 |
+
{
|
| 947 |
+
"name": "CONDITIONING",
|
| 948 |
+
"type": "CONDITIONING",
|
| 949 |
+
"links": [
|
| 950 |
+
665
|
| 951 |
+
],
|
| 952 |
+
"shape": 3,
|
| 953 |
+
"slot_index": 0
|
| 954 |
+
}
|
| 955 |
+
],
|
| 956 |
+
"properties": {
|
| 957 |
+
"Node name for S&R": "CLIPTextEncode"
|
| 958 |
+
},
|
| 959 |
+
"widgets_values": [
|
| 960 |
+
"cinematic film still, epic, photo of a woman wearing sunglasses"
|
| 961 |
+
],
|
| 962 |
+
"color": "#232",
|
| 963 |
+
"bgcolor": "#353"
|
| 964 |
+
},
|
| 965 |
+
{
|
| 966 |
+
"id": 329,
|
| 967 |
+
"type": "Note",
|
| 968 |
+
"pos": [
|
| 969 |
+
-630,
|
| 970 |
+
1134
|
| 971 |
+
],
|
| 972 |
+
"size": [
|
| 973 |
+
222.24755928435616,
|
| 974 |
+
69.25623726364165
|
| 975 |
+
],
|
| 976 |
+
"flags": {},
|
| 977 |
+
"order": 6,
|
| 978 |
+
"mode": 0,
|
| 979 |
+
"properties": {
|
| 980 |
+
"text": ""
|
| 981 |
+
},
|
| 982 |
+
"widgets_values": [
|
| 983 |
+
"Medium has a token limit on T5. Use a shorter version of the prompt limited to ~70 words or truncate"
|
| 984 |
+
],
|
| 985 |
+
"color": "#432",
|
| 986 |
+
"bgcolor": "#653"
|
| 987 |
+
}
|
| 988 |
+
],
|
| 989 |
+
"links": [
|
| 990 |
+
[
|
| 991 |
+
5,
|
| 992 |
+
11,
|
| 993 |
+
0,
|
| 994 |
+
6,
|
| 995 |
+
0,
|
| 996 |
+
"CLIP"
|
| 997 |
+
],
|
| 998 |
+
[
|
| 999 |
+
90,
|
| 1000 |
+
67,
|
| 1001 |
+
0,
|
| 1002 |
+
68,
|
| 1003 |
+
0,
|
| 1004 |
+
"CONDITIONING"
|
| 1005 |
+
],
|
| 1006 |
+
[
|
| 1007 |
+
91,
|
| 1008 |
+
68,
|
| 1009 |
+
0,
|
| 1010 |
+
69,
|
| 1011 |
+
0,
|
| 1012 |
+
"CONDITIONING"
|
| 1013 |
+
],
|
| 1014 |
+
[
|
| 1015 |
+
92,
|
| 1016 |
+
70,
|
| 1017 |
+
0,
|
| 1018 |
+
69,
|
| 1019 |
+
1,
|
| 1020 |
+
"CONDITIONING"
|
| 1021 |
+
],
|
| 1022 |
+
[
|
| 1023 |
+
93,
|
| 1024 |
+
71,
|
| 1025 |
+
0,
|
| 1026 |
+
70,
|
| 1027 |
+
0,
|
| 1028 |
+
"CONDITIONING"
|
| 1029 |
+
],
|
| 1030 |
+
[
|
| 1031 |
+
94,
|
| 1032 |
+
11,
|
| 1033 |
+
0,
|
| 1034 |
+
71,
|
| 1035 |
+
0,
|
| 1036 |
+
"CLIP"
|
| 1037 |
+
],
|
| 1038 |
+
[
|
| 1039 |
+
274,
|
| 1040 |
+
8,
|
| 1041 |
+
0,
|
| 1042 |
+
50,
|
| 1043 |
+
0,
|
| 1044 |
+
"IMAGE"
|
| 1045 |
+
],
|
| 1046 |
+
[
|
| 1047 |
+
445,
|
| 1048 |
+
4,
|
| 1049 |
+
0,
|
| 1050 |
+
13,
|
| 1051 |
+
0,
|
| 1052 |
+
"MODEL"
|
| 1053 |
+
],
|
| 1054 |
+
[
|
| 1055 |
+
568,
|
| 1056 |
+
13,
|
| 1057 |
+
0,
|
| 1058 |
+
294,
|
| 1059 |
+
0,
|
| 1060 |
+
"MODEL"
|
| 1061 |
+
],
|
| 1062 |
+
[
|
| 1063 |
+
569,
|
| 1064 |
+
6,
|
| 1065 |
+
0,
|
| 1066 |
+
294,
|
| 1067 |
+
1,
|
| 1068 |
+
"CONDITIONING"
|
| 1069 |
+
],
|
| 1070 |
+
[
|
| 1071 |
+
572,
|
| 1072 |
+
294,
|
| 1073 |
+
0,
|
| 1074 |
+
8,
|
| 1075 |
+
0,
|
| 1076 |
+
"LATENT"
|
| 1077 |
+
],
|
| 1078 |
+
[
|
| 1079 |
+
597,
|
| 1080 |
+
71,
|
| 1081 |
+
0,
|
| 1082 |
+
67,
|
| 1083 |
+
0,
|
| 1084 |
+
"CONDITIONING"
|
| 1085 |
+
],
|
| 1086 |
+
[
|
| 1087 |
+
598,
|
| 1088 |
+
135,
|
| 1089 |
+
0,
|
| 1090 |
+
294,
|
| 1091 |
+
3,
|
| 1092 |
+
"LATENT"
|
| 1093 |
+
],
|
| 1094 |
+
[
|
| 1095 |
+
604,
|
| 1096 |
+
69,
|
| 1097 |
+
0,
|
| 1098 |
+
294,
|
| 1099 |
+
2,
|
| 1100 |
+
"CONDITIONING"
|
| 1101 |
+
],
|
| 1102 |
+
[
|
| 1103 |
+
605,
|
| 1104 |
+
4,
|
| 1105 |
+
2,
|
| 1106 |
+
8,
|
| 1107 |
+
1,
|
| 1108 |
+
"VAE"
|
| 1109 |
+
],
|
| 1110 |
+
[
|
| 1111 |
+
606,
|
| 1112 |
+
301,
|
| 1113 |
+
0,
|
| 1114 |
+
302,
|
| 1115 |
+
0,
|
| 1116 |
+
"MODEL"
|
| 1117 |
+
],
|
| 1118 |
+
[
|
| 1119 |
+
616,
|
| 1120 |
+
4,
|
| 1121 |
+
2,
|
| 1122 |
+
308,
|
| 1123 |
+
1,
|
| 1124 |
+
"VAE"
|
| 1125 |
+
],
|
| 1126 |
+
[
|
| 1127 |
+
617,
|
| 1128 |
+
4,
|
| 1129 |
+
2,
|
| 1130 |
+
305,
|
| 1131 |
+
1,
|
| 1132 |
+
"VAE"
|
| 1133 |
+
],
|
| 1134 |
+
[
|
| 1135 |
+
619,
|
| 1136 |
+
307,
|
| 1137 |
+
0,
|
| 1138 |
+
309,
|
| 1139 |
+
0,
|
| 1140 |
+
"IMAGE"
|
| 1141 |
+
],
|
| 1142 |
+
[
|
| 1143 |
+
620,
|
| 1144 |
+
302,
|
| 1145 |
+
0,
|
| 1146 |
+
310,
|
| 1147 |
+
0,
|
| 1148 |
+
"MODEL"
|
| 1149 |
+
],
|
| 1150 |
+
[
|
| 1151 |
+
622,
|
| 1152 |
+
69,
|
| 1153 |
+
0,
|
| 1154 |
+
310,
|
| 1155 |
+
2,
|
| 1156 |
+
"CONDITIONING"
|
| 1157 |
+
],
|
| 1158 |
+
[
|
| 1159 |
+
623,
|
| 1160 |
+
308,
|
| 1161 |
+
0,
|
| 1162 |
+
310,
|
| 1163 |
+
3,
|
| 1164 |
+
"LATENT"
|
| 1165 |
+
],
|
| 1166 |
+
[
|
| 1167 |
+
624,
|
| 1168 |
+
310,
|
| 1169 |
+
0,
|
| 1170 |
+
305,
|
| 1171 |
+
0,
|
| 1172 |
+
"LATENT"
|
| 1173 |
+
],
|
| 1174 |
+
[
|
| 1175 |
+
660,
|
| 1176 |
+
8,
|
| 1177 |
+
0,
|
| 1178 |
+
307,
|
| 1179 |
+
0,
|
| 1180 |
+
"IMAGE"
|
| 1181 |
+
],
|
| 1182 |
+
[
|
| 1183 |
+
662,
|
| 1184 |
+
11,
|
| 1185 |
+
0,
|
| 1186 |
+
324,
|
| 1187 |
+
0,
|
| 1188 |
+
"CLIP"
|
| 1189 |
+
],
|
| 1190 |
+
[
|
| 1191 |
+
665,
|
| 1192 |
+
324,
|
| 1193 |
+
0,
|
| 1194 |
+
310,
|
| 1195 |
+
1,
|
| 1196 |
+
"CONDITIONING"
|
| 1197 |
+
],
|
| 1198 |
+
[
|
| 1199 |
+
670,
|
| 1200 |
+
305,
|
| 1201 |
+
0,
|
| 1202 |
+
306,
|
| 1203 |
+
0,
|
| 1204 |
+
"IMAGE"
|
| 1205 |
+
],
|
| 1206 |
+
[
|
| 1207 |
+
671,
|
| 1208 |
+
307,
|
| 1209 |
+
0,
|
| 1210 |
+
308,
|
| 1211 |
+
0,
|
| 1212 |
+
"IMAGE"
|
| 1213 |
+
],
|
| 1214 |
+
[
|
| 1215 |
+
672,
|
| 1216 |
+
330,
|
| 1217 |
+
0,
|
| 1218 |
+
310,
|
| 1219 |
+
4,
|
| 1220 |
+
"INT"
|
| 1221 |
+
]
|
| 1222 |
+
],
|
| 1223 |
+
"groups": [],
|
| 1224 |
+
"config": {},
|
| 1225 |
+
"extra": {
|
| 1226 |
+
"ds": {
|
| 1227 |
+
"scale": 0.3797498335833178,
|
| 1228 |
+
"offset": [
|
| 1229 |
+
2577.2791383634726,
|
| 1230 |
+
94.5657992857425
|
| 1231 |
+
]
|
| 1232 |
+
}
|
| 1233 |
+
},
|
| 1234 |
+
"version": 0.4
|
| 1235 |
+
}
|
sd3_pipeline/SD3.5M_SLG_example_workflow.json
ADDED
|
@@ -0,0 +1,1006 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"last_node_id": 305,
|
| 3 |
+
"last_link_id": 627,
|
| 4 |
+
"nodes": [
|
| 5 |
+
{
|
| 6 |
+
"id": 11,
|
| 7 |
+
"type": "TripleCLIPLoader",
|
| 8 |
+
"pos": {
|
| 9 |
+
"0": -2016,
|
| 10 |
+
"1": -252
|
| 11 |
+
},
|
| 12 |
+
"size": {
|
| 13 |
+
"0": 315,
|
| 14 |
+
"1": 106
|
| 15 |
+
},
|
| 16 |
+
"flags": {},
|
| 17 |
+
"order": 0,
|
| 18 |
+
"mode": 0,
|
| 19 |
+
"inputs": [],
|
| 20 |
+
"outputs": [
|
| 21 |
+
{
|
| 22 |
+
"name": "CLIP",
|
| 23 |
+
"type": "CLIP",
|
| 24 |
+
"links": [
|
| 25 |
+
5,
|
| 26 |
+
94
|
| 27 |
+
],
|
| 28 |
+
"slot_index": 0,
|
| 29 |
+
"shape": 3
|
| 30 |
+
}
|
| 31 |
+
],
|
| 32 |
+
"properties": {
|
| 33 |
+
"Node name for S&R": "TripleCLIPLoader"
|
| 34 |
+
},
|
| 35 |
+
"widgets_values": [
|
| 36 |
+
"sdv3/clip_g.safetensors",
|
| 37 |
+
"sdv3/clip_l.safetensors",
|
| 38 |
+
"sdv3/t5xxl_fp16.safetensors"
|
| 39 |
+
]
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"id": 303,
|
| 43 |
+
"type": "VAEDecode",
|
| 44 |
+
"pos": {
|
| 45 |
+
"0": 1381,
|
| 46 |
+
"1": 233
|
| 47 |
+
},
|
| 48 |
+
"size": {
|
| 49 |
+
"0": 210,
|
| 50 |
+
"1": 46
|
| 51 |
+
},
|
| 52 |
+
"flags": {},
|
| 53 |
+
"order": 15,
|
| 54 |
+
"mode": 0,
|
| 55 |
+
"inputs": [
|
| 56 |
+
{
|
| 57 |
+
"name": "samples",
|
| 58 |
+
"type": "LATENT",
|
| 59 |
+
"link": 612
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"name": "vae",
|
| 63 |
+
"type": "VAE",
|
| 64 |
+
"link": 614
|
| 65 |
+
}
|
| 66 |
+
],
|
| 67 |
+
"outputs": [
|
| 68 |
+
{
|
| 69 |
+
"name": "IMAGE",
|
| 70 |
+
"type": "IMAGE",
|
| 71 |
+
"links": [
|
| 72 |
+
613
|
| 73 |
+
],
|
| 74 |
+
"slot_index": 0,
|
| 75 |
+
"shape": 3
|
| 76 |
+
}
|
| 77 |
+
],
|
| 78 |
+
"properties": {
|
| 79 |
+
"Node name for S&R": "VAEDecode"
|
| 80 |
+
},
|
| 81 |
+
"widgets_values": []
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"id": 105,
|
| 85 |
+
"type": "Note",
|
| 86 |
+
"pos": {
|
| 87 |
+
"0": -1484,
|
| 88 |
+
"1": -249
|
| 89 |
+
},
|
| 90 |
+
"size": {
|
| 91 |
+
"0": 210,
|
| 92 |
+
"1": 110.18948364257812
|
| 93 |
+
},
|
| 94 |
+
"flags": {},
|
| 95 |
+
"order": 1,
|
| 96 |
+
"mode": 0,
|
| 97 |
+
"inputs": [],
|
| 98 |
+
"outputs": [],
|
| 99 |
+
"properties": {
|
| 100 |
+
"text": ""
|
| 101 |
+
},
|
| 102 |
+
"widgets_values": [
|
| 103 |
+
"Make sure the resolution is multiple of 64 pixels and adds up to around 1 megapixel. "
|
| 104 |
+
],
|
| 105 |
+
"color": "#432",
|
| 106 |
+
"bgcolor": "#653"
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"id": 304,
|
| 110 |
+
"type": "PreviewImage",
|
| 111 |
+
"pos": {
|
| 112 |
+
"0": 1758,
|
| 113 |
+
"1": 150
|
| 114 |
+
},
|
| 115 |
+
"size": {
|
| 116 |
+
"0": 616.689697265625,
|
| 117 |
+
"1": 613.84130859375
|
| 118 |
+
},
|
| 119 |
+
"flags": {},
|
| 120 |
+
"order": 17,
|
| 121 |
+
"mode": 0,
|
| 122 |
+
"inputs": [
|
| 123 |
+
{
|
| 124 |
+
"name": "images",
|
| 125 |
+
"type": "IMAGE",
|
| 126 |
+
"link": 613
|
| 127 |
+
}
|
| 128 |
+
],
|
| 129 |
+
"outputs": [],
|
| 130 |
+
"properties": {
|
| 131 |
+
"Node name for S&R": "PreviewImage"
|
| 132 |
+
},
|
| 133 |
+
"widgets_values": []
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"id": 50,
|
| 137 |
+
"type": "PreviewImage",
|
| 138 |
+
"pos": {
|
| 139 |
+
"0": 1764,
|
| 140 |
+
"1": -504
|
| 141 |
+
},
|
| 142 |
+
"size": {
|
| 143 |
+
"0": 616.689697265625,
|
| 144 |
+
"1": 613.84130859375
|
| 145 |
+
},
|
| 146 |
+
"flags": {},
|
| 147 |
+
"order": 18,
|
| 148 |
+
"mode": 0,
|
| 149 |
+
"inputs": [
|
| 150 |
+
{
|
| 151 |
+
"name": "images",
|
| 152 |
+
"type": "IMAGE",
|
| 153 |
+
"link": 274
|
| 154 |
+
}
|
| 155 |
+
],
|
| 156 |
+
"outputs": [],
|
| 157 |
+
"properties": {
|
| 158 |
+
"Node name for S&R": "PreviewImage"
|
| 159 |
+
},
|
| 160 |
+
"widgets_values": []
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"id": 67,
|
| 164 |
+
"type": "ConditioningZeroOut",
|
| 165 |
+
"pos": {
|
| 166 |
+
"0": -1103,
|
| 167 |
+
"1": 454
|
| 168 |
+
},
|
| 169 |
+
"size": {
|
| 170 |
+
"0": 211.60000610351562,
|
| 171 |
+
"1": 26
|
| 172 |
+
},
|
| 173 |
+
"flags": {},
|
| 174 |
+
"order": 8,
|
| 175 |
+
"mode": 0,
|
| 176 |
+
"inputs": [
|
| 177 |
+
{
|
| 178 |
+
"name": "conditioning",
|
| 179 |
+
"type": "CONDITIONING",
|
| 180 |
+
"link": 597
|
| 181 |
+
}
|
| 182 |
+
],
|
| 183 |
+
"outputs": [
|
| 184 |
+
{
|
| 185 |
+
"name": "CONDITIONING",
|
| 186 |
+
"type": "CONDITIONING",
|
| 187 |
+
"links": [
|
| 188 |
+
90
|
| 189 |
+
],
|
| 190 |
+
"slot_index": 0,
|
| 191 |
+
"shape": 3
|
| 192 |
+
}
|
| 193 |
+
],
|
| 194 |
+
"properties": {
|
| 195 |
+
"Node name for S&R": "ConditioningZeroOut"
|
| 196 |
+
},
|
| 197 |
+
"widgets_values": []
|
| 198 |
+
},
|
| 199 |
+
{
|
| 200 |
+
"id": 68,
|
| 201 |
+
"type": "ConditioningSetTimestepRange",
|
| 202 |
+
"pos": {
|
| 203 |
+
"0": -839,
|
| 204 |
+
"1": 442
|
| 205 |
+
},
|
| 206 |
+
"size": {
|
| 207 |
+
"0": 317.4000244140625,
|
| 208 |
+
"1": 82
|
| 209 |
+
},
|
| 210 |
+
"flags": {},
|
| 211 |
+
"order": 11,
|
| 212 |
+
"mode": 0,
|
| 213 |
+
"inputs": [
|
| 214 |
+
{
|
| 215 |
+
"name": "conditioning",
|
| 216 |
+
"type": "CONDITIONING",
|
| 217 |
+
"link": 90
|
| 218 |
+
}
|
| 219 |
+
],
|
| 220 |
+
"outputs": [
|
| 221 |
+
{
|
| 222 |
+
"name": "CONDITIONING",
|
| 223 |
+
"type": "CONDITIONING",
|
| 224 |
+
"links": [
|
| 225 |
+
91
|
| 226 |
+
],
|
| 227 |
+
"slot_index": 0,
|
| 228 |
+
"shape": 3
|
| 229 |
+
}
|
| 230 |
+
],
|
| 231 |
+
"properties": {
|
| 232 |
+
"Node name for S&R": "ConditioningSetTimestepRange"
|
| 233 |
+
},
|
| 234 |
+
"widgets_values": [
|
| 235 |
+
0.1,
|
| 236 |
+
1
|
| 237 |
+
]
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"id": 69,
|
| 241 |
+
"type": "ConditioningCombine",
|
| 242 |
+
"pos": {
|
| 243 |
+
"0": -129,
|
| 244 |
+
"1": 290
|
| 245 |
+
},
|
| 246 |
+
"size": {
|
| 247 |
+
"0": 228.39999389648438,
|
| 248 |
+
"1": 46
|
| 249 |
+
},
|
| 250 |
+
"flags": {},
|
| 251 |
+
"order": 12,
|
| 252 |
+
"mode": 0,
|
| 253 |
+
"inputs": [
|
| 254 |
+
{
|
| 255 |
+
"name": "conditioning_1",
|
| 256 |
+
"type": "CONDITIONING",
|
| 257 |
+
"link": 91
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"name": "conditioning_2",
|
| 261 |
+
"type": "CONDITIONING",
|
| 262 |
+
"link": 92
|
| 263 |
+
}
|
| 264 |
+
],
|
| 265 |
+
"outputs": [
|
| 266 |
+
{
|
| 267 |
+
"name": "CONDITIONING",
|
| 268 |
+
"type": "CONDITIONING",
|
| 269 |
+
"links": [
|
| 270 |
+
621,
|
| 271 |
+
625
|
| 272 |
+
],
|
| 273 |
+
"slot_index": 0,
|
| 274 |
+
"shape": 3
|
| 275 |
+
}
|
| 276 |
+
],
|
| 277 |
+
"properties": {
|
| 278 |
+
"Node name for S&R": "ConditioningCombine"
|
| 279 |
+
},
|
| 280 |
+
"widgets_values": []
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"id": 13,
|
| 284 |
+
"type": "ModelSamplingSD3",
|
| 285 |
+
"pos": {
|
| 286 |
+
"0": -424,
|
| 287 |
+
"1": -516
|
| 288 |
+
},
|
| 289 |
+
"size": {
|
| 290 |
+
"0": 315,
|
| 291 |
+
"1": 58
|
| 292 |
+
},
|
| 293 |
+
"flags": {
|
| 294 |
+
"collapsed": false
|
| 295 |
+
},
|
| 296 |
+
"order": 7,
|
| 297 |
+
"mode": 0,
|
| 298 |
+
"inputs": [
|
| 299 |
+
{
|
| 300 |
+
"name": "model",
|
| 301 |
+
"type": "MODEL",
|
| 302 |
+
"link": 445
|
| 303 |
+
}
|
| 304 |
+
],
|
| 305 |
+
"outputs": [
|
| 306 |
+
{
|
| 307 |
+
"name": "MODEL",
|
| 308 |
+
"type": "MODEL",
|
| 309 |
+
"links": [
|
| 310 |
+
606,
|
| 311 |
+
618
|
| 312 |
+
],
|
| 313 |
+
"slot_index": 0,
|
| 314 |
+
"shape": 3
|
| 315 |
+
}
|
| 316 |
+
],
|
| 317 |
+
"properties": {
|
| 318 |
+
"Node name for S&R": "ModelSamplingSD3"
|
| 319 |
+
},
|
| 320 |
+
"widgets_values": [
|
| 321 |
+
3
|
| 322 |
+
]
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"id": 135,
|
| 326 |
+
"type": "EmptySD3LatentImage",
|
| 327 |
+
"pos": {
|
| 328 |
+
"0": -1195,
|
| 329 |
+
"1": -251
|
| 330 |
+
},
|
| 331 |
+
"size": {
|
| 332 |
+
"0": 315,
|
| 333 |
+
"1": 106
|
| 334 |
+
},
|
| 335 |
+
"flags": {},
|
| 336 |
+
"order": 2,
|
| 337 |
+
"mode": 0,
|
| 338 |
+
"inputs": [],
|
| 339 |
+
"outputs": [
|
| 340 |
+
{
|
| 341 |
+
"name": "LATENT",
|
| 342 |
+
"type": "LATENT",
|
| 343 |
+
"links": [
|
| 344 |
+
598,
|
| 345 |
+
611
|
| 346 |
+
],
|
| 347 |
+
"slot_index": 0,
|
| 348 |
+
"shape": 3
|
| 349 |
+
}
|
| 350 |
+
],
|
| 351 |
+
"properties": {
|
| 352 |
+
"Node name for S&R": "EmptySD3LatentImage"
|
| 353 |
+
},
|
| 354 |
+
"widgets_values": [
|
| 355 |
+
1280,
|
| 356 |
+
768,
|
| 357 |
+
1
|
| 358 |
+
]
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"id": 8,
|
| 362 |
+
"type": "VAEDecode",
|
| 363 |
+
"pos": {
|
| 364 |
+
"0": 1387,
|
| 365 |
+
"1": -415
|
| 366 |
+
},
|
| 367 |
+
"size": {
|
| 368 |
+
"0": 210,
|
| 369 |
+
"1": 46
|
| 370 |
+
},
|
| 371 |
+
"flags": {},
|
| 372 |
+
"order": 16,
|
| 373 |
+
"mode": 0,
|
| 374 |
+
"inputs": [
|
| 375 |
+
{
|
| 376 |
+
"name": "samples",
|
| 377 |
+
"type": "LATENT",
|
| 378 |
+
"link": 572
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"name": "vae",
|
| 382 |
+
"type": "VAE",
|
| 383 |
+
"link": 605
|
| 384 |
+
}
|
| 385 |
+
],
|
| 386 |
+
"outputs": [
|
| 387 |
+
{
|
| 388 |
+
"name": "IMAGE",
|
| 389 |
+
"type": "IMAGE",
|
| 390 |
+
"links": [
|
| 391 |
+
274
|
| 392 |
+
],
|
| 393 |
+
"slot_index": 0,
|
| 394 |
+
"shape": 3
|
| 395 |
+
}
|
| 396 |
+
],
|
| 397 |
+
"properties": {
|
| 398 |
+
"Node name for S&R": "VAEDecode"
|
| 399 |
+
},
|
| 400 |
+
"widgets_values": []
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"id": 4,
|
| 404 |
+
"type": "CheckpointLoaderSimple",
|
| 405 |
+
"pos": {
|
| 406 |
+
"0": -2016,
|
| 407 |
+
"1": -504
|
| 408 |
+
},
|
| 409 |
+
"size": [
|
| 410 |
+
311.9781150464221,
|
| 411 |
+
99.19846549382407
|
| 412 |
+
],
|
| 413 |
+
"flags": {},
|
| 414 |
+
"order": 3,
|
| 415 |
+
"mode": 0,
|
| 416 |
+
"inputs": [],
|
| 417 |
+
"outputs": [
|
| 418 |
+
{
|
| 419 |
+
"name": "MODEL",
|
| 420 |
+
"type": "MODEL",
|
| 421 |
+
"links": [
|
| 422 |
+
445
|
| 423 |
+
],
|
| 424 |
+
"slot_index": 0,
|
| 425 |
+
"shape": 3
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"name": "CLIP",
|
| 429 |
+
"type": "CLIP",
|
| 430 |
+
"links": null,
|
| 431 |
+
"shape": 3
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"name": "VAE",
|
| 435 |
+
"type": "VAE",
|
| 436 |
+
"links": [
|
| 437 |
+
605,
|
| 438 |
+
614
|
| 439 |
+
],
|
| 440 |
+
"slot_index": 2,
|
| 441 |
+
"shape": 3
|
| 442 |
+
}
|
| 443 |
+
],
|
| 444 |
+
"properties": {
|
| 445 |
+
"Node name for S&R": "CheckpointLoaderSimple"
|
| 446 |
+
},
|
| 447 |
+
"widgets_values": [
|
| 448 |
+
"sd3.5_medium.safetensors"
|
| 449 |
+
]
|
| 450 |
+
},
|
| 451 |
+
{
|
| 452 |
+
"id": 302,
|
| 453 |
+
"type": "KSampler",
|
| 454 |
+
"pos": {
|
| 455 |
+
"0": 962,
|
| 456 |
+
"1": 236
|
| 457 |
+
},
|
| 458 |
+
"size": {
|
| 459 |
+
"0": 378,
|
| 460 |
+
"1": 504
|
| 461 |
+
},
|
| 462 |
+
"flags": {},
|
| 463 |
+
"order": 13,
|
| 464 |
+
"mode": 0,
|
| 465 |
+
"inputs": [
|
| 466 |
+
{
|
| 467 |
+
"name": "model",
|
| 468 |
+
"type": "MODEL",
|
| 469 |
+
"link": 618
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"name": "positive",
|
| 473 |
+
"type": "CONDITIONING",
|
| 474 |
+
"link": 610
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"name": "negative",
|
| 478 |
+
"type": "CONDITIONING",
|
| 479 |
+
"link": 621
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"name": "latent_image",
|
| 483 |
+
"type": "LATENT",
|
| 484 |
+
"link": 611
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"name": "seed",
|
| 488 |
+
"type": "INT",
|
| 489 |
+
"link": 617,
|
| 490 |
+
"widget": {
|
| 491 |
+
"name": "seed"
|
| 492 |
+
}
|
| 493 |
+
}
|
| 494 |
+
],
|
| 495 |
+
"outputs": [
|
| 496 |
+
{
|
| 497 |
+
"name": "LATENT",
|
| 498 |
+
"type": "LATENT",
|
| 499 |
+
"links": [
|
| 500 |
+
612
|
| 501 |
+
],
|
| 502 |
+
"slot_index": 0,
|
| 503 |
+
"shape": 3
|
| 504 |
+
}
|
| 505 |
+
],
|
| 506 |
+
"properties": {
|
| 507 |
+
"Node name for S&R": "KSampler"
|
| 508 |
+
},
|
| 509 |
+
"widgets_values": [
|
| 510 |
+
42,
|
| 511 |
+
"randomize",
|
| 512 |
+
50,
|
| 513 |
+
5,
|
| 514 |
+
"dpmpp_2m",
|
| 515 |
+
"sgm_uniform",
|
| 516 |
+
1
|
| 517 |
+
]
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"id": 301,
|
| 521 |
+
"type": "SkipLayerGuidanceSD3",
|
| 522 |
+
"pos": {
|
| 523 |
+
"0": 234,
|
| 524 |
+
"1": -513
|
| 525 |
+
},
|
| 526 |
+
"size": {
|
| 527 |
+
"0": 315,
|
| 528 |
+
"1": 130
|
| 529 |
+
},
|
| 530 |
+
"flags": {},
|
| 531 |
+
"order": 10,
|
| 532 |
+
"mode": 0,
|
| 533 |
+
"inputs": [
|
| 534 |
+
{
|
| 535 |
+
"name": "model",
|
| 536 |
+
"type": "MODEL",
|
| 537 |
+
"link": 606
|
| 538 |
+
}
|
| 539 |
+
],
|
| 540 |
+
"outputs": [
|
| 541 |
+
{
|
| 542 |
+
"name": "MODEL",
|
| 543 |
+
"type": "MODEL",
|
| 544 |
+
"links": [
|
| 545 |
+
607
|
| 546 |
+
],
|
| 547 |
+
"slot_index": 0
|
| 548 |
+
}
|
| 549 |
+
],
|
| 550 |
+
"properties": {
|
| 551 |
+
"Node name for S&R": "SkipLayerGuidanceSD3"
|
| 552 |
+
},
|
| 553 |
+
"widgets_values": [
|
| 554 |
+
"7,8,9",
|
| 555 |
+
2,
|
| 556 |
+
0.01,
|
| 557 |
+
0.15
|
| 558 |
+
]
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"id": 70,
|
| 562 |
+
"type": "ConditioningSetTimestepRange",
|
| 563 |
+
"pos": {
|
| 564 |
+
"0": -851,
|
| 565 |
+
"1": 274
|
| 566 |
+
},
|
| 567 |
+
"size": {
|
| 568 |
+
"0": 317.4000244140625,
|
| 569 |
+
"1": 82
|
| 570 |
+
},
|
| 571 |
+
"flags": {},
|
| 572 |
+
"order": 9,
|
| 573 |
+
"mode": 0,
|
| 574 |
+
"inputs": [
|
| 575 |
+
{
|
| 576 |
+
"name": "conditioning",
|
| 577 |
+
"type": "CONDITIONING",
|
| 578 |
+
"link": 627,
|
| 579 |
+
"slot_index": 0
|
| 580 |
+
}
|
| 581 |
+
],
|
| 582 |
+
"outputs": [
|
| 583 |
+
{
|
| 584 |
+
"name": "CONDITIONING",
|
| 585 |
+
"type": "CONDITIONING",
|
| 586 |
+
"links": [
|
| 587 |
+
92
|
| 588 |
+
],
|
| 589 |
+
"slot_index": 0,
|
| 590 |
+
"shape": 3
|
| 591 |
+
}
|
| 592 |
+
],
|
| 593 |
+
"properties": {
|
| 594 |
+
"Node name for S&R": "ConditioningSetTimestepRange"
|
| 595 |
+
},
|
| 596 |
+
"widgets_values": [
|
| 597 |
+
0,
|
| 598 |
+
0.1
|
| 599 |
+
]
|
| 600 |
+
},
|
| 601 |
+
{
|
| 602 |
+
"id": 71,
|
| 603 |
+
"type": "CLIPTextEncode",
|
| 604 |
+
"pos": {
|
| 605 |
+
"0": -1547,
|
| 606 |
+
"1": 348
|
| 607 |
+
},
|
| 608 |
+
"size": {
|
| 609 |
+
"0": 351.8130798339844,
|
| 610 |
+
"1": 195.57545471191406
|
| 611 |
+
},
|
| 612 |
+
"flags": {},
|
| 613 |
+
"order": 6,
|
| 614 |
+
"mode": 0,
|
| 615 |
+
"inputs": [
|
| 616 |
+
{
|
| 617 |
+
"name": "clip",
|
| 618 |
+
"type": "CLIP",
|
| 619 |
+
"link": 94
|
| 620 |
+
}
|
| 621 |
+
],
|
| 622 |
+
"outputs": [
|
| 623 |
+
{
|
| 624 |
+
"name": "CONDITIONING",
|
| 625 |
+
"type": "CONDITIONING",
|
| 626 |
+
"links": [
|
| 627 |
+
597,
|
| 628 |
+
627
|
| 629 |
+
],
|
| 630 |
+
"slot_index": 0,
|
| 631 |
+
"shape": 3
|
| 632 |
+
}
|
| 633 |
+
],
|
| 634 |
+
"properties": {
|
| 635 |
+
"Node name for S&R": "CLIPTextEncode"
|
| 636 |
+
},
|
| 637 |
+
"widgets_values": [
|
| 638 |
+
""
|
| 639 |
+
],
|
| 640 |
+
"color": "#322",
|
| 641 |
+
"bgcolor": "#533"
|
| 642 |
+
},
|
| 643 |
+
{
|
| 644 |
+
"id": 294,
|
| 645 |
+
"type": "KSampler",
|
| 646 |
+
"pos": {
|
| 647 |
+
"0": 969,
|
| 648 |
+
"1": -417
|
| 649 |
+
},
|
| 650 |
+
"size": {
|
| 651 |
+
"0": 378,
|
| 652 |
+
"1": 504
|
| 653 |
+
},
|
| 654 |
+
"flags": {},
|
| 655 |
+
"order": 14,
|
| 656 |
+
"mode": 0,
|
| 657 |
+
"inputs": [
|
| 658 |
+
{
|
| 659 |
+
"name": "model",
|
| 660 |
+
"type": "MODEL",
|
| 661 |
+
"link": 607
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"name": "positive",
|
| 665 |
+
"type": "CONDITIONING",
|
| 666 |
+
"link": 626
|
| 667 |
+
},
|
| 668 |
+
{
|
| 669 |
+
"name": "negative",
|
| 670 |
+
"type": "CONDITIONING",
|
| 671 |
+
"link": 625
|
| 672 |
+
},
|
| 673 |
+
{
|
| 674 |
+
"name": "latent_image",
|
| 675 |
+
"type": "LATENT",
|
| 676 |
+
"link": 598
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"name": "seed",
|
| 680 |
+
"type": "INT",
|
| 681 |
+
"link": 616,
|
| 682 |
+
"widget": {
|
| 683 |
+
"name": "seed"
|
| 684 |
+
}
|
| 685 |
+
}
|
| 686 |
+
],
|
| 687 |
+
"outputs": [
|
| 688 |
+
{
|
| 689 |
+
"name": "LATENT",
|
| 690 |
+
"type": "LATENT",
|
| 691 |
+
"links": [
|
| 692 |
+
572
|
| 693 |
+
],
|
| 694 |
+
"slot_index": 0,
|
| 695 |
+
"shape": 3
|
| 696 |
+
}
|
| 697 |
+
],
|
| 698 |
+
"properties": {
|
| 699 |
+
"Node name for S&R": "KSampler"
|
| 700 |
+
},
|
| 701 |
+
"widgets_values": [
|
| 702 |
+
42,
|
| 703 |
+
"randomize",
|
| 704 |
+
50,
|
| 705 |
+
4,
|
| 706 |
+
"dpmpp_2m",
|
| 707 |
+
"sgm_uniform",
|
| 708 |
+
1
|
| 709 |
+
]
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"id": 305,
|
| 713 |
+
"type": "PrimitiveNode",
|
| 714 |
+
"pos": {
|
| 715 |
+
"0": -155,
|
| 716 |
+
"1": -674
|
| 717 |
+
},
|
| 718 |
+
"size": {
|
| 719 |
+
"0": 285.3897399902344,
|
| 720 |
+
"1": 86.61906433105469
|
| 721 |
+
},
|
| 722 |
+
"flags": {},
|
| 723 |
+
"order": 4,
|
| 724 |
+
"mode": 0,
|
| 725 |
+
"inputs": [],
|
| 726 |
+
"outputs": [
|
| 727 |
+
{
|
| 728 |
+
"name": "INT",
|
| 729 |
+
"type": "INT",
|
| 730 |
+
"links": [
|
| 731 |
+
616,
|
| 732 |
+
617
|
| 733 |
+
],
|
| 734 |
+
"slot_index": 0,
|
| 735 |
+
"widget": {
|
| 736 |
+
"name": "seed"
|
| 737 |
+
}
|
| 738 |
+
}
|
| 739 |
+
],
|
| 740 |
+
"title": "seed",
|
| 741 |
+
"properties": {
|
| 742 |
+
"Run widget replace on values": false
|
| 743 |
+
},
|
| 744 |
+
"widgets_values": [
|
| 745 |
+
42,
|
| 746 |
+
"fixed"
|
| 747 |
+
]
|
| 748 |
+
},
|
| 749 |
+
{
|
| 750 |
+
"id": 6,
|
| 751 |
+
"type": "CLIPTextEncode",
|
| 752 |
+
"pos": {
|
| 753 |
+
"0": -1547,
|
| 754 |
+
"1": 123
|
| 755 |
+
},
|
| 756 |
+
"size": {
|
| 757 |
+
"0": 342.8335266113281,
|
| 758 |
+
"1": 177.20867919921875
|
| 759 |
+
},
|
| 760 |
+
"flags": {},
|
| 761 |
+
"order": 5,
|
| 762 |
+
"mode": 0,
|
| 763 |
+
"inputs": [
|
| 764 |
+
{
|
| 765 |
+
"name": "clip",
|
| 766 |
+
"type": "CLIP",
|
| 767 |
+
"link": 5
|
| 768 |
+
}
|
| 769 |
+
],
|
| 770 |
+
"outputs": [
|
| 771 |
+
{
|
| 772 |
+
"name": "CONDITIONING",
|
| 773 |
+
"type": "CONDITIONING",
|
| 774 |
+
"links": [
|
| 775 |
+
610,
|
| 776 |
+
626
|
| 777 |
+
],
|
| 778 |
+
"slot_index": 0,
|
| 779 |
+
"shape": 3
|
| 780 |
+
}
|
| 781 |
+
],
|
| 782 |
+
"properties": {
|
| 783 |
+
"Node name for S&R": "CLIPTextEncode"
|
| 784 |
+
},
|
| 785 |
+
"widgets_values": [
|
| 786 |
+
"photorealistic photography girl floating in air in white dress\n"
|
| 787 |
+
],
|
| 788 |
+
"color": "#232",
|
| 789 |
+
"bgcolor": "#353"
|
| 790 |
+
}
|
| 791 |
+
],
|
| 792 |
+
"links": [
|
| 793 |
+
[
|
| 794 |
+
5,
|
| 795 |
+
11,
|
| 796 |
+
0,
|
| 797 |
+
6,
|
| 798 |
+
0,
|
| 799 |
+
"CLIP"
|
| 800 |
+
],
|
| 801 |
+
[
|
| 802 |
+
90,
|
| 803 |
+
67,
|
| 804 |
+
0,
|
| 805 |
+
68,
|
| 806 |
+
0,
|
| 807 |
+
"CONDITIONING"
|
| 808 |
+
],
|
| 809 |
+
[
|
| 810 |
+
91,
|
| 811 |
+
68,
|
| 812 |
+
0,
|
| 813 |
+
69,
|
| 814 |
+
0,
|
| 815 |
+
"CONDITIONING"
|
| 816 |
+
],
|
| 817 |
+
[
|
| 818 |
+
92,
|
| 819 |
+
70,
|
| 820 |
+
0,
|
| 821 |
+
69,
|
| 822 |
+
1,
|
| 823 |
+
"CONDITIONING"
|
| 824 |
+
],
|
| 825 |
+
[
|
| 826 |
+
94,
|
| 827 |
+
11,
|
| 828 |
+
0,
|
| 829 |
+
71,
|
| 830 |
+
0,
|
| 831 |
+
"CLIP"
|
| 832 |
+
],
|
| 833 |
+
[
|
| 834 |
+
274,
|
| 835 |
+
8,
|
| 836 |
+
0,
|
| 837 |
+
50,
|
| 838 |
+
0,
|
| 839 |
+
"IMAGE"
|
| 840 |
+
],
|
| 841 |
+
[
|
| 842 |
+
445,
|
| 843 |
+
4,
|
| 844 |
+
0,
|
| 845 |
+
13,
|
| 846 |
+
0,
|
| 847 |
+
"MODEL"
|
| 848 |
+
],
|
| 849 |
+
[
|
| 850 |
+
572,
|
| 851 |
+
294,
|
| 852 |
+
0,
|
| 853 |
+
8,
|
| 854 |
+
0,
|
| 855 |
+
"LATENT"
|
| 856 |
+
],
|
| 857 |
+
[
|
| 858 |
+
597,
|
| 859 |
+
71,
|
| 860 |
+
0,
|
| 861 |
+
67,
|
| 862 |
+
0,
|
| 863 |
+
"CONDITIONING"
|
| 864 |
+
],
|
| 865 |
+
[
|
| 866 |
+
598,
|
| 867 |
+
135,
|
| 868 |
+
0,
|
| 869 |
+
294,
|
| 870 |
+
3,
|
| 871 |
+
"LATENT"
|
| 872 |
+
],
|
| 873 |
+
[
|
| 874 |
+
605,
|
| 875 |
+
4,
|
| 876 |
+
2,
|
| 877 |
+
8,
|
| 878 |
+
1,
|
| 879 |
+
"VAE"
|
| 880 |
+
],
|
| 881 |
+
[
|
| 882 |
+
606,
|
| 883 |
+
13,
|
| 884 |
+
0,
|
| 885 |
+
301,
|
| 886 |
+
0,
|
| 887 |
+
"MODEL"
|
| 888 |
+
],
|
| 889 |
+
[
|
| 890 |
+
607,
|
| 891 |
+
301,
|
| 892 |
+
0,
|
| 893 |
+
294,
|
| 894 |
+
0,
|
| 895 |
+
"MODEL"
|
| 896 |
+
],
|
| 897 |
+
[
|
| 898 |
+
610,
|
| 899 |
+
6,
|
| 900 |
+
0,
|
| 901 |
+
302,
|
| 902 |
+
1,
|
| 903 |
+
"CONDITIONING"
|
| 904 |
+
],
|
| 905 |
+
[
|
| 906 |
+
611,
|
| 907 |
+
135,
|
| 908 |
+
0,
|
| 909 |
+
302,
|
| 910 |
+
3,
|
| 911 |
+
"LATENT"
|
| 912 |
+
],
|
| 913 |
+
[
|
| 914 |
+
612,
|
| 915 |
+
302,
|
| 916 |
+
0,
|
| 917 |
+
303,
|
| 918 |
+
0,
|
| 919 |
+
"LATENT"
|
| 920 |
+
],
|
| 921 |
+
[
|
| 922 |
+
613,
|
| 923 |
+
303,
|
| 924 |
+
0,
|
| 925 |
+
304,
|
| 926 |
+
0,
|
| 927 |
+
"IMAGE"
|
| 928 |
+
],
|
| 929 |
+
[
|
| 930 |
+
614,
|
| 931 |
+
4,
|
| 932 |
+
2,
|
| 933 |
+
303,
|
| 934 |
+
1,
|
| 935 |
+
"VAE"
|
| 936 |
+
],
|
| 937 |
+
[
|
| 938 |
+
616,
|
| 939 |
+
305,
|
| 940 |
+
0,
|
| 941 |
+
294,
|
| 942 |
+
4,
|
| 943 |
+
"INT"
|
| 944 |
+
],
|
| 945 |
+
[
|
| 946 |
+
617,
|
| 947 |
+
305,
|
| 948 |
+
0,
|
| 949 |
+
302,
|
| 950 |
+
4,
|
| 951 |
+
"INT"
|
| 952 |
+
],
|
| 953 |
+
[
|
| 954 |
+
618,
|
| 955 |
+
13,
|
| 956 |
+
0,
|
| 957 |
+
302,
|
| 958 |
+
0,
|
| 959 |
+
"MODEL"
|
| 960 |
+
],
|
| 961 |
+
[
|
| 962 |
+
621,
|
| 963 |
+
69,
|
| 964 |
+
0,
|
| 965 |
+
302,
|
| 966 |
+
2,
|
| 967 |
+
"CONDITIONING"
|
| 968 |
+
],
|
| 969 |
+
[
|
| 970 |
+
625,
|
| 971 |
+
69,
|
| 972 |
+
0,
|
| 973 |
+
294,
|
| 974 |
+
2,
|
| 975 |
+
"CONDITIONING"
|
| 976 |
+
],
|
| 977 |
+
[
|
| 978 |
+
626,
|
| 979 |
+
6,
|
| 980 |
+
0,
|
| 981 |
+
294,
|
| 982 |
+
1,
|
| 983 |
+
"CONDITIONING"
|
| 984 |
+
],
|
| 985 |
+
[
|
| 986 |
+
627,
|
| 987 |
+
71,
|
| 988 |
+
0,
|
| 989 |
+
70,
|
| 990 |
+
0,
|
| 991 |
+
"CONDITIONING"
|
| 992 |
+
]
|
| 993 |
+
],
|
| 994 |
+
"groups": [],
|
| 995 |
+
"config": {},
|
| 996 |
+
"extra": {
|
| 997 |
+
"ds": {
|
| 998 |
+
"scale": 1.0834705943388945,
|
| 999 |
+
"offset": [
|
| 1000 |
+
2786.463291970421,
|
| 1001 |
+
276.88316957958125
|
| 1002 |
+
]
|
| 1003 |
+
}
|
| 1004 |
+
},
|
| 1005 |
+
"version": 0.4
|
| 1006 |
+
}
|
sd3_pipeline/SD3.5M_example_workflow.json
ADDED
|
@@ -0,0 +1,697 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"last_node_id": 300,
|
| 3 |
+
"last_link_id": 605,
|
| 4 |
+
"nodes": [
|
| 5 |
+
{
|
| 6 |
+
"id": 67,
|
| 7 |
+
"type": "ConditioningZeroOut",
|
| 8 |
+
"pos": {
|
| 9 |
+
"0": -126,
|
| 10 |
+
"1": 126
|
| 11 |
+
},
|
| 12 |
+
"size": {
|
| 13 |
+
"0": 211.60000610351562,
|
| 14 |
+
"1": 26
|
| 15 |
+
},
|
| 16 |
+
"flags": {},
|
| 17 |
+
"order": 8,
|
| 18 |
+
"mode": 0,
|
| 19 |
+
"inputs": [
|
| 20 |
+
{
|
| 21 |
+
"name": "conditioning",
|
| 22 |
+
"type": "CONDITIONING",
|
| 23 |
+
"link": 597
|
| 24 |
+
}
|
| 25 |
+
],
|
| 26 |
+
"outputs": [
|
| 27 |
+
{
|
| 28 |
+
"name": "CONDITIONING",
|
| 29 |
+
"type": "CONDITIONING",
|
| 30 |
+
"links": [
|
| 31 |
+
90
|
| 32 |
+
],
|
| 33 |
+
"slot_index": 0,
|
| 34 |
+
"shape": 3
|
| 35 |
+
}
|
| 36 |
+
],
|
| 37 |
+
"properties": {
|
| 38 |
+
"Node name for S&R": "ConditioningZeroOut"
|
| 39 |
+
},
|
| 40 |
+
"widgets_values": []
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"id": 71,
|
| 44 |
+
"type": "CLIPTextEncode",
|
| 45 |
+
"pos": {
|
| 46 |
+
"0": -1010,
|
| 47 |
+
"1": 252
|
| 48 |
+
},
|
| 49 |
+
"size": {
|
| 50 |
+
"0": 351.8130798339844,
|
| 51 |
+
"1": 195.57545471191406
|
| 52 |
+
},
|
| 53 |
+
"flags": {},
|
| 54 |
+
"order": 6,
|
| 55 |
+
"mode": 0,
|
| 56 |
+
"inputs": [
|
| 57 |
+
{
|
| 58 |
+
"name": "clip",
|
| 59 |
+
"type": "CLIP",
|
| 60 |
+
"link": 94
|
| 61 |
+
}
|
| 62 |
+
],
|
| 63 |
+
"outputs": [
|
| 64 |
+
{
|
| 65 |
+
"name": "CONDITIONING",
|
| 66 |
+
"type": "CONDITIONING",
|
| 67 |
+
"links": [
|
| 68 |
+
93,
|
| 69 |
+
597
|
| 70 |
+
],
|
| 71 |
+
"slot_index": 0,
|
| 72 |
+
"shape": 3
|
| 73 |
+
}
|
| 74 |
+
],
|
| 75 |
+
"properties": {
|
| 76 |
+
"Node name for S&R": "CLIPTextEncode"
|
| 77 |
+
},
|
| 78 |
+
"widgets_values": [
|
| 79 |
+
""
|
| 80 |
+
],
|
| 81 |
+
"color": "#322",
|
| 82 |
+
"bgcolor": "#533"
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"id": 6,
|
| 86 |
+
"type": "CLIPTextEncode",
|
| 87 |
+
"pos": {
|
| 88 |
+
"0": -1008,
|
| 89 |
+
"1": 2
|
| 90 |
+
},
|
| 91 |
+
"size": {
|
| 92 |
+
"0": 342.8335266113281,
|
| 93 |
+
"1": 177.20867919921875
|
| 94 |
+
},
|
| 95 |
+
"flags": {},
|
| 96 |
+
"order": 5,
|
| 97 |
+
"mode": 0,
|
| 98 |
+
"inputs": [
|
| 99 |
+
{
|
| 100 |
+
"name": "clip",
|
| 101 |
+
"type": "CLIP",
|
| 102 |
+
"link": 5
|
| 103 |
+
}
|
| 104 |
+
],
|
| 105 |
+
"outputs": [
|
| 106 |
+
{
|
| 107 |
+
"name": "CONDITIONING",
|
| 108 |
+
"type": "CONDITIONING",
|
| 109 |
+
"links": [
|
| 110 |
+
569
|
| 111 |
+
],
|
| 112 |
+
"slot_index": 0,
|
| 113 |
+
"shape": 3
|
| 114 |
+
}
|
| 115 |
+
],
|
| 116 |
+
"properties": {
|
| 117 |
+
"Node name for S&R": "CLIPTextEncode"
|
| 118 |
+
},
|
| 119 |
+
"widgets_values": [
|
| 120 |
+
"beautiful scenery nature glass bottle landscape, purple galaxy bottle,"
|
| 121 |
+
],
|
| 122 |
+
"color": "#232",
|
| 123 |
+
"bgcolor": "#353"
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"id": 69,
|
| 127 |
+
"type": "ConditioningCombine",
|
| 128 |
+
"pos": {
|
| 129 |
+
"0": 504,
|
| 130 |
+
"1": 126
|
| 131 |
+
},
|
| 132 |
+
"size": {
|
| 133 |
+
"0": 228.39999389648438,
|
| 134 |
+
"1": 46
|
| 135 |
+
},
|
| 136 |
+
"flags": {},
|
| 137 |
+
"order": 10,
|
| 138 |
+
"mode": 0,
|
| 139 |
+
"inputs": [
|
| 140 |
+
{
|
| 141 |
+
"name": "conditioning_1",
|
| 142 |
+
"type": "CONDITIONING",
|
| 143 |
+
"link": 91
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"name": "conditioning_2",
|
| 147 |
+
"type": "CONDITIONING",
|
| 148 |
+
"link": 92
|
| 149 |
+
}
|
| 150 |
+
],
|
| 151 |
+
"outputs": [
|
| 152 |
+
{
|
| 153 |
+
"name": "CONDITIONING",
|
| 154 |
+
"type": "CONDITIONING",
|
| 155 |
+
"links": [
|
| 156 |
+
604
|
| 157 |
+
],
|
| 158 |
+
"slot_index": 0,
|
| 159 |
+
"shape": 3
|
| 160 |
+
}
|
| 161 |
+
],
|
| 162 |
+
"properties": {
|
| 163 |
+
"Node name for S&R": "ConditioningCombine"
|
| 164 |
+
},
|
| 165 |
+
"widgets_values": []
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"id": 8,
|
| 169 |
+
"type": "VAEDecode",
|
| 170 |
+
"pos": {
|
| 171 |
+
"0": 1386,
|
| 172 |
+
"1": -504
|
| 173 |
+
},
|
| 174 |
+
"size": {
|
| 175 |
+
"0": 210,
|
| 176 |
+
"1": 46
|
| 177 |
+
},
|
| 178 |
+
"flags": {},
|
| 179 |
+
"order": 12,
|
| 180 |
+
"mode": 0,
|
| 181 |
+
"inputs": [
|
| 182 |
+
{
|
| 183 |
+
"name": "samples",
|
| 184 |
+
"type": "LATENT",
|
| 185 |
+
"link": 572
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"name": "vae",
|
| 189 |
+
"type": "VAE",
|
| 190 |
+
"link": 605
|
| 191 |
+
}
|
| 192 |
+
],
|
| 193 |
+
"outputs": [
|
| 194 |
+
{
|
| 195 |
+
"name": "IMAGE",
|
| 196 |
+
"type": "IMAGE",
|
| 197 |
+
"links": [
|
| 198 |
+
274
|
| 199 |
+
],
|
| 200 |
+
"slot_index": 0,
|
| 201 |
+
"shape": 3
|
| 202 |
+
}
|
| 203 |
+
],
|
| 204 |
+
"properties": {
|
| 205 |
+
"Node name for S&R": "VAEDecode"
|
| 206 |
+
},
|
| 207 |
+
"widgets_values": []
|
| 208 |
+
},
|
| 209 |
+
{
|
| 210 |
+
"id": 50,
|
| 211 |
+
"type": "PreviewImage",
|
| 212 |
+
"pos": {
|
| 213 |
+
"0": 1764,
|
| 214 |
+
"1": -504
|
| 215 |
+
},
|
| 216 |
+
"size": {
|
| 217 |
+
"0": 616.689697265625,
|
| 218 |
+
"1": 613.84130859375
|
| 219 |
+
},
|
| 220 |
+
"flags": {},
|
| 221 |
+
"order": 13,
|
| 222 |
+
"mode": 0,
|
| 223 |
+
"inputs": [
|
| 224 |
+
{
|
| 225 |
+
"name": "images",
|
| 226 |
+
"type": "IMAGE",
|
| 227 |
+
"link": 274
|
| 228 |
+
}
|
| 229 |
+
],
|
| 230 |
+
"outputs": [],
|
| 231 |
+
"properties": {
|
| 232 |
+
"Node name for S&R": "PreviewImage"
|
| 233 |
+
},
|
| 234 |
+
"widgets_values": []
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"id": 68,
|
| 238 |
+
"type": "ConditioningSetTimestepRange",
|
| 239 |
+
"pos": {
|
| 240 |
+
"0": 126,
|
| 241 |
+
"1": 126
|
| 242 |
+
},
|
| 243 |
+
"size": {
|
| 244 |
+
"0": 317.4000244140625,
|
| 245 |
+
"1": 82
|
| 246 |
+
},
|
| 247 |
+
"flags": {},
|
| 248 |
+
"order": 9,
|
| 249 |
+
"mode": 0,
|
| 250 |
+
"inputs": [
|
| 251 |
+
{
|
| 252 |
+
"name": "conditioning",
|
| 253 |
+
"type": "CONDITIONING",
|
| 254 |
+
"link": 90
|
| 255 |
+
}
|
| 256 |
+
],
|
| 257 |
+
"outputs": [
|
| 258 |
+
{
|
| 259 |
+
"name": "CONDITIONING",
|
| 260 |
+
"type": "CONDITIONING",
|
| 261 |
+
"links": [
|
| 262 |
+
91
|
| 263 |
+
],
|
| 264 |
+
"slot_index": 0,
|
| 265 |
+
"shape": 3
|
| 266 |
+
}
|
| 267 |
+
],
|
| 268 |
+
"properties": {
|
| 269 |
+
"Node name for S&R": "ConditioningSetTimestepRange"
|
| 270 |
+
},
|
| 271 |
+
"widgets_values": [
|
| 272 |
+
0.2,
|
| 273 |
+
1
|
| 274 |
+
]
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"id": 70,
|
| 278 |
+
"type": "ConditioningSetTimestepRange",
|
| 279 |
+
"pos": {
|
| 280 |
+
"0": 126,
|
| 281 |
+
"1": 252
|
| 282 |
+
},
|
| 283 |
+
"size": {
|
| 284 |
+
"0": 317.4000244140625,
|
| 285 |
+
"1": 82
|
| 286 |
+
},
|
| 287 |
+
"flags": {},
|
| 288 |
+
"order": 7,
|
| 289 |
+
"mode": 0,
|
| 290 |
+
"inputs": [
|
| 291 |
+
{
|
| 292 |
+
"name": "conditioning",
|
| 293 |
+
"type": "CONDITIONING",
|
| 294 |
+
"link": 93,
|
| 295 |
+
"slot_index": 0
|
| 296 |
+
}
|
| 297 |
+
],
|
| 298 |
+
"outputs": [
|
| 299 |
+
{
|
| 300 |
+
"name": "CONDITIONING",
|
| 301 |
+
"type": "CONDITIONING",
|
| 302 |
+
"links": [
|
| 303 |
+
92
|
| 304 |
+
],
|
| 305 |
+
"slot_index": 0,
|
| 306 |
+
"shape": 3
|
| 307 |
+
}
|
| 308 |
+
],
|
| 309 |
+
"properties": {
|
| 310 |
+
"Node name for S&R": "ConditioningSetTimestepRange"
|
| 311 |
+
},
|
| 312 |
+
"widgets_values": [
|
| 313 |
+
0,
|
| 314 |
+
0.2
|
| 315 |
+
]
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"id": 4,
|
| 319 |
+
"type": "CheckpointLoaderSimple",
|
| 320 |
+
"pos": {
|
| 321 |
+
"0": -2016,
|
| 322 |
+
"1": -504
|
| 323 |
+
},
|
| 324 |
+
"size": {
|
| 325 |
+
"0": 632.6060180664062,
|
| 326 |
+
"1": 98
|
| 327 |
+
},
|
| 328 |
+
"flags": {},
|
| 329 |
+
"order": 0,
|
| 330 |
+
"mode": 0,
|
| 331 |
+
"inputs": [],
|
| 332 |
+
"outputs": [
|
| 333 |
+
{
|
| 334 |
+
"name": "MODEL",
|
| 335 |
+
"type": "MODEL",
|
| 336 |
+
"links": [
|
| 337 |
+
445
|
| 338 |
+
],
|
| 339 |
+
"slot_index": 0,
|
| 340 |
+
"shape": 3
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"name": "CLIP",
|
| 344 |
+
"type": "CLIP",
|
| 345 |
+
"links": null,
|
| 346 |
+
"shape": 3
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"name": "VAE",
|
| 350 |
+
"type": "VAE",
|
| 351 |
+
"links": [
|
| 352 |
+
605
|
| 353 |
+
],
|
| 354 |
+
"slot_index": 2,
|
| 355 |
+
"shape": 3
|
| 356 |
+
}
|
| 357 |
+
],
|
| 358 |
+
"properties": {
|
| 359 |
+
"Node name for S&R": "CheckpointLoaderSimple"
|
| 360 |
+
},
|
| 361 |
+
"widgets_values": [
|
| 362 |
+
"sd3.5_medium.safetensors"
|
| 363 |
+
]
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"id": 11,
|
| 367 |
+
"type": "TripleCLIPLoader",
|
| 368 |
+
"pos": {
|
| 369 |
+
"0": -2016,
|
| 370 |
+
"1": -252
|
| 371 |
+
},
|
| 372 |
+
"size": {
|
| 373 |
+
"0": 315,
|
| 374 |
+
"1": 106
|
| 375 |
+
},
|
| 376 |
+
"flags": {},
|
| 377 |
+
"order": 1,
|
| 378 |
+
"mode": 0,
|
| 379 |
+
"inputs": [],
|
| 380 |
+
"outputs": [
|
| 381 |
+
{
|
| 382 |
+
"name": "CLIP",
|
| 383 |
+
"type": "CLIP",
|
| 384 |
+
"links": [
|
| 385 |
+
5,
|
| 386 |
+
94
|
| 387 |
+
],
|
| 388 |
+
"slot_index": 0,
|
| 389 |
+
"shape": 3
|
| 390 |
+
}
|
| 391 |
+
],
|
| 392 |
+
"properties": {
|
| 393 |
+
"Node name for S&R": "TripleCLIPLoader"
|
| 394 |
+
},
|
| 395 |
+
"widgets_values": [
|
| 396 |
+
"sdv3/clip_g.safetensors",
|
| 397 |
+
"sdv3/clip_l.safetensors",
|
| 398 |
+
"sdv3/t5xxl_fp16.safetensors"
|
| 399 |
+
]
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"id": 105,
|
| 403 |
+
"type": "Note",
|
| 404 |
+
"pos": {
|
| 405 |
+
"0": -1260,
|
| 406 |
+
"1": -252
|
| 407 |
+
},
|
| 408 |
+
"size": {
|
| 409 |
+
"0": 210,
|
| 410 |
+
"1": 110.18948364257812
|
| 411 |
+
},
|
| 412 |
+
"flags": {},
|
| 413 |
+
"order": 2,
|
| 414 |
+
"mode": 0,
|
| 415 |
+
"inputs": [],
|
| 416 |
+
"outputs": [],
|
| 417 |
+
"properties": {
|
| 418 |
+
"text": ""
|
| 419 |
+
},
|
| 420 |
+
"widgets_values": [
|
| 421 |
+
"Make sure the resolution is multiple of 64 pixels and adds up to around 1 megapixel. "
|
| 422 |
+
],
|
| 423 |
+
"color": "#432",
|
| 424 |
+
"bgcolor": "#653"
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"id": 135,
|
| 428 |
+
"type": "EmptySD3LatentImage",
|
| 429 |
+
"pos": {
|
| 430 |
+
"0": -1008,
|
| 431 |
+
"1": -252
|
| 432 |
+
},
|
| 433 |
+
"size": {
|
| 434 |
+
"0": 315,
|
| 435 |
+
"1": 106
|
| 436 |
+
},
|
| 437 |
+
"flags": {},
|
| 438 |
+
"order": 3,
|
| 439 |
+
"mode": 0,
|
| 440 |
+
"inputs": [],
|
| 441 |
+
"outputs": [
|
| 442 |
+
{
|
| 443 |
+
"name": "LATENT",
|
| 444 |
+
"type": "LATENT",
|
| 445 |
+
"links": [
|
| 446 |
+
598
|
| 447 |
+
],
|
| 448 |
+
"slot_index": 0,
|
| 449 |
+
"shape": 3
|
| 450 |
+
}
|
| 451 |
+
],
|
| 452 |
+
"properties": {
|
| 453 |
+
"Node name for S&R": "EmptySD3LatentImage"
|
| 454 |
+
},
|
| 455 |
+
"widgets_values": [
|
| 456 |
+
1280,
|
| 457 |
+
768,
|
| 458 |
+
1
|
| 459 |
+
]
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"id": 294,
|
| 463 |
+
"type": "KSampler",
|
| 464 |
+
"pos": {
|
| 465 |
+
"0": 882,
|
| 466 |
+
"1": -504
|
| 467 |
+
},
|
| 468 |
+
"size": {
|
| 469 |
+
"0": 378,
|
| 470 |
+
"1": 504
|
| 471 |
+
},
|
| 472 |
+
"flags": {},
|
| 473 |
+
"order": 11,
|
| 474 |
+
"mode": 0,
|
| 475 |
+
"inputs": [
|
| 476 |
+
{
|
| 477 |
+
"name": "model",
|
| 478 |
+
"type": "MODEL",
|
| 479 |
+
"link": 568
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"name": "positive",
|
| 483 |
+
"type": "CONDITIONING",
|
| 484 |
+
"link": 569
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"name": "negative",
|
| 488 |
+
"type": "CONDITIONING",
|
| 489 |
+
"link": 604
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"name": "latent_image",
|
| 493 |
+
"type": "LATENT",
|
| 494 |
+
"link": 598
|
| 495 |
+
}
|
| 496 |
+
],
|
| 497 |
+
"outputs": [
|
| 498 |
+
{
|
| 499 |
+
"name": "LATENT",
|
| 500 |
+
"type": "LATENT",
|
| 501 |
+
"links": [
|
| 502 |
+
572
|
| 503 |
+
],
|
| 504 |
+
"slot_index": 0,
|
| 505 |
+
"shape": 3
|
| 506 |
+
}
|
| 507 |
+
],
|
| 508 |
+
"properties": {
|
| 509 |
+
"Node name for S&R": "KSampler"
|
| 510 |
+
},
|
| 511 |
+
"widgets_values": [
|
| 512 |
+
193277626003815,
|
| 513 |
+
"randomize",
|
| 514 |
+
40,
|
| 515 |
+
5.5,
|
| 516 |
+
"dpmpp_2m",
|
| 517 |
+
"sgm_uniform",
|
| 518 |
+
1
|
| 519 |
+
]
|
| 520 |
+
},
|
| 521 |
+
{
|
| 522 |
+
"id": 13,
|
| 523 |
+
"type": "ModelSamplingSD3",
|
| 524 |
+
"pos": {
|
| 525 |
+
"0": -192,
|
| 526 |
+
"1": -507
|
| 527 |
+
},
|
| 528 |
+
"size": {
|
| 529 |
+
"0": 315,
|
| 530 |
+
"1": 58
|
| 531 |
+
},
|
| 532 |
+
"flags": {
|
| 533 |
+
"collapsed": false
|
| 534 |
+
},
|
| 535 |
+
"order": 4,
|
| 536 |
+
"mode": 0,
|
| 537 |
+
"inputs": [
|
| 538 |
+
{
|
| 539 |
+
"name": "model",
|
| 540 |
+
"type": "MODEL",
|
| 541 |
+
"link": 445
|
| 542 |
+
}
|
| 543 |
+
],
|
| 544 |
+
"outputs": [
|
| 545 |
+
{
|
| 546 |
+
"name": "MODEL",
|
| 547 |
+
"type": "MODEL",
|
| 548 |
+
"links": [
|
| 549 |
+
568
|
| 550 |
+
],
|
| 551 |
+
"slot_index": 0,
|
| 552 |
+
"shape": 3
|
| 553 |
+
}
|
| 554 |
+
],
|
| 555 |
+
"properties": {
|
| 556 |
+
"Node name for S&R": "ModelSamplingSD3"
|
| 557 |
+
},
|
| 558 |
+
"widgets_values": [
|
| 559 |
+
3
|
| 560 |
+
]
|
| 561 |
+
}
|
| 562 |
+
],
|
| 563 |
+
"links": [
|
| 564 |
+
[
|
| 565 |
+
5,
|
| 566 |
+
11,
|
| 567 |
+
0,
|
| 568 |
+
6,
|
| 569 |
+
0,
|
| 570 |
+
"CLIP"
|
| 571 |
+
],
|
| 572 |
+
[
|
| 573 |
+
90,
|
| 574 |
+
67,
|
| 575 |
+
0,
|
| 576 |
+
68,
|
| 577 |
+
0,
|
| 578 |
+
"CONDITIONING"
|
| 579 |
+
],
|
| 580 |
+
[
|
| 581 |
+
91,
|
| 582 |
+
68,
|
| 583 |
+
0,
|
| 584 |
+
69,
|
| 585 |
+
0,
|
| 586 |
+
"CONDITIONING"
|
| 587 |
+
],
|
| 588 |
+
[
|
| 589 |
+
92,
|
| 590 |
+
70,
|
| 591 |
+
0,
|
| 592 |
+
69,
|
| 593 |
+
1,
|
| 594 |
+
"CONDITIONING"
|
| 595 |
+
],
|
| 596 |
+
[
|
| 597 |
+
93,
|
| 598 |
+
71,
|
| 599 |
+
0,
|
| 600 |
+
70,
|
| 601 |
+
0,
|
| 602 |
+
"CONDITIONING"
|
| 603 |
+
],
|
| 604 |
+
[
|
| 605 |
+
94,
|
| 606 |
+
11,
|
| 607 |
+
0,
|
| 608 |
+
71,
|
| 609 |
+
0,
|
| 610 |
+
"CLIP"
|
| 611 |
+
],
|
| 612 |
+
[
|
| 613 |
+
274,
|
| 614 |
+
8,
|
| 615 |
+
0,
|
| 616 |
+
50,
|
| 617 |
+
0,
|
| 618 |
+
"IMAGE"
|
| 619 |
+
],
|
| 620 |
+
[
|
| 621 |
+
445,
|
| 622 |
+
4,
|
| 623 |
+
0,
|
| 624 |
+
13,
|
| 625 |
+
0,
|
| 626 |
+
"MODEL"
|
| 627 |
+
],
|
| 628 |
+
[
|
| 629 |
+
568,
|
| 630 |
+
13,
|
| 631 |
+
0,
|
| 632 |
+
294,
|
| 633 |
+
0,
|
| 634 |
+
"MODEL"
|
| 635 |
+
],
|
| 636 |
+
[
|
| 637 |
+
569,
|
| 638 |
+
6,
|
| 639 |
+
0,
|
| 640 |
+
294,
|
| 641 |
+
1,
|
| 642 |
+
"CONDITIONING"
|
| 643 |
+
],
|
| 644 |
+
[
|
| 645 |
+
572,
|
| 646 |
+
294,
|
| 647 |
+
0,
|
| 648 |
+
8,
|
| 649 |
+
0,
|
| 650 |
+
"LATENT"
|
| 651 |
+
],
|
| 652 |
+
[
|
| 653 |
+
597,
|
| 654 |
+
71,
|
| 655 |
+
0,
|
| 656 |
+
67,
|
| 657 |
+
0,
|
| 658 |
+
"CONDITIONING"
|
| 659 |
+
],
|
| 660 |
+
[
|
| 661 |
+
598,
|
| 662 |
+
135,
|
| 663 |
+
0,
|
| 664 |
+
294,
|
| 665 |
+
3,
|
| 666 |
+
"LATENT"
|
| 667 |
+
],
|
| 668 |
+
[
|
| 669 |
+
604,
|
| 670 |
+
69,
|
| 671 |
+
0,
|
| 672 |
+
294,
|
| 673 |
+
2,
|
| 674 |
+
"CONDITIONING"
|
| 675 |
+
],
|
| 676 |
+
[
|
| 677 |
+
605,
|
| 678 |
+
4,
|
| 679 |
+
2,
|
| 680 |
+
8,
|
| 681 |
+
1,
|
| 682 |
+
"VAE"
|
| 683 |
+
]
|
| 684 |
+
],
|
| 685 |
+
"groups": [],
|
| 686 |
+
"config": {},
|
| 687 |
+
"extra": {
|
| 688 |
+
"ds": {
|
| 689 |
+
"scale": 0.6727499949325626,
|
| 690 |
+
"offset": [
|
| 691 |
+
2163.0604070128397,
|
| 692 |
+
1105.036283731024
|
| 693 |
+
]
|
| 694 |
+
}
|
| 695 |
+
},
|
| 696 |
+
"version": 0.4
|
| 697 |
+
}
|
sd3_pipeline/mmdit-x.png
ADDED
|
Git LFS Details
|
sd3_pipeline/model_index.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "StableDiffusion3Pipeline",
|
| 3 |
+
"_diffusers_version": "0.30.3.dev0",
|
| 4 |
+
"scheduler": [
|
| 5 |
+
"diffusers",
|
| 6 |
+
"FlowMatchEulerDiscreteScheduler"
|
| 7 |
+
],
|
| 8 |
+
"text_encoder": [
|
| 9 |
+
"transformers",
|
| 10 |
+
"CLIPTextModelWithProjection"
|
| 11 |
+
],
|
| 12 |
+
"text_encoder_2": [
|
| 13 |
+
"transformers",
|
| 14 |
+
"CLIPTextModelWithProjection"
|
| 15 |
+
],
|
| 16 |
+
"text_encoder_3": [
|
| 17 |
+
"transformers",
|
| 18 |
+
"T5EncoderModel"
|
| 19 |
+
],
|
| 20 |
+
"tokenizer": [
|
| 21 |
+
"transformers",
|
| 22 |
+
"CLIPTokenizer"
|
| 23 |
+
],
|
| 24 |
+
"tokenizer_2": [
|
| 25 |
+
"transformers",
|
| 26 |
+
"CLIPTokenizer"
|
| 27 |
+
],
|
| 28 |
+
"tokenizer_3": [
|
| 29 |
+
"transformers",
|
| 30 |
+
"T5TokenizerFast"
|
| 31 |
+
],
|
| 32 |
+
"transformer": [
|
| 33 |
+
"diffusers",
|
| 34 |
+
"SD3Transformer2DModel"
|
| 35 |
+
],
|
| 36 |
+
"vae": [
|
| 37 |
+
"diffusers",
|
| 38 |
+
"AutoencoderKL"
|
| 39 |
+
]
|
| 40 |
+
}
|
sd3_pipeline/scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "FlowMatchEulerDiscreteScheduler",
|
| 3 |
+
"_diffusers_version": "0.29.0.dev0",
|
| 4 |
+
"num_train_timesteps": 1000,
|
| 5 |
+
"shift": 3.0
|
| 6 |
+
}
|
sd3_pipeline/sd3.5_medium.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11fe06e22364b823dfeedc275912336b932b32a293a0b2f35ffac071990cc4de
|
| 3 |
+
size 5107104286
|
sd3_pipeline/sd3.5_medium_demo.jpg
ADDED
|
Git LFS Details
|
sd3_pipeline/text_encoder/config.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"CLIPTextModelWithProjection"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 0,
|
| 7 |
+
"dropout": 0.0,
|
| 8 |
+
"eos_token_id": 2,
|
| 9 |
+
"hidden_act": "quick_gelu",
|
| 10 |
+
"hidden_size": 768,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 3072,
|
| 14 |
+
"layer_norm_eps": 1e-05,
|
| 15 |
+
"max_position_embeddings": 77,
|
| 16 |
+
"model_type": "clip_text_model",
|
| 17 |
+
"num_attention_heads": 12,
|
| 18 |
+
"num_hidden_layers": 12,
|
| 19 |
+
"pad_token_id": 1,
|
| 20 |
+
"projection_dim": 768,
|
| 21 |
+
"torch_dtype": "float16",
|
| 22 |
+
"transformers_version": "4.41.2",
|
| 23 |
+
"vocab_size": 49408
|
| 24 |
+
}
|
sd3_pipeline/text_encoder/model.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71e183d11db0c6b6282a4d9e0abb74125edc8692393e89ed8ee5571005f35cb1
|
| 3 |
+
size 247323896
|
sd3_pipeline/text_encoder/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71e183d11db0c6b6282a4d9e0abb74125edc8692393e89ed8ee5571005f35cb1
|
| 3 |
+
size 247323896
|
sd3_pipeline/text_encoder_2/config.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"CLIPTextModelWithProjection"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 0,
|
| 7 |
+
"dropout": 0.0,
|
| 8 |
+
"eos_token_id": 2,
|
| 9 |
+
"hidden_act": "gelu",
|
| 10 |
+
"hidden_size": 1280,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 5120,
|
| 14 |
+
"layer_norm_eps": 1e-05,
|
| 15 |
+
"max_position_embeddings": 77,
|
| 16 |
+
"model_type": "clip_text_model",
|
| 17 |
+
"num_attention_heads": 20,
|
| 18 |
+
"num_hidden_layers": 32,
|
| 19 |
+
"pad_token_id": 1,
|
| 20 |
+
"projection_dim": 1280,
|
| 21 |
+
"torch_dtype": "float16",
|
| 22 |
+
"transformers_version": "4.41.2",
|
| 23 |
+
"vocab_size": 49408
|
| 24 |
+
}
|
sd3_pipeline/text_encoder_2/model.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec310df2af79c318e24d20511b601a591ca8cd4f1fce1d8dff822a356bcdb1f4
|
| 3 |
+
size 1389382176
|
sd3_pipeline/text_encoder_2/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec310df2af79c318e24d20511b601a591ca8cd4f1fce1d8dff822a356bcdb1f4
|
| 3 |
+
size 1389382176
|
sd3_pipeline/text_encoder_3/config.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"T5EncoderModel"
|
| 4 |
+
],
|
| 5 |
+
"classifier_dropout": 0.0,
|
| 6 |
+
"d_ff": 10240,
|
| 7 |
+
"d_kv": 64,
|
| 8 |
+
"d_model": 4096,
|
| 9 |
+
"decoder_start_token_id": 0,
|
| 10 |
+
"dense_act_fn": "gelu_new",
|
| 11 |
+
"dropout_rate": 0.1,
|
| 12 |
+
"eos_token_id": 1,
|
| 13 |
+
"feed_forward_proj": "gated-gelu",
|
| 14 |
+
"initializer_factor": 1.0,
|
| 15 |
+
"is_encoder_decoder": true,
|
| 16 |
+
"is_gated_act": true,
|
| 17 |
+
"layer_norm_epsilon": 1e-06,
|
| 18 |
+
"model_type": "t5",
|
| 19 |
+
"num_decoder_layers": 24,
|
| 20 |
+
"num_heads": 64,
|
| 21 |
+
"num_layers": 24,
|
| 22 |
+
"output_past": true,
|
| 23 |
+
"pad_token_id": 0,
|
| 24 |
+
"relative_attention_max_distance": 128,
|
| 25 |
+
"relative_attention_num_buckets": 32,
|
| 26 |
+
"tie_word_embeddings": false,
|
| 27 |
+
"torch_dtype": "float16",
|
| 28 |
+
"transformers_version": "4.41.2",
|
| 29 |
+
"use_cache": true,
|
| 30 |
+
"vocab_size": 32128
|
| 31 |
+
}
|
sd3_pipeline/text_encoder_3/model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f2751ceeb2a96edd693e539dc5d6bba0b8d3814f49a9b3798403a0cec4b2e3d
|
| 3 |
+
size 4994582104
|
sd3_pipeline/text_encoder_3/model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f63154532130422309532ff56f11945fbea8266c958e3133e8e5aef85c6293c7
|
| 3 |
+
size 4530066248
|
sd3_pipeline/text_encoder_3/model.fp16-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f2751ceeb2a96edd693e539dc5d6bba0b8d3814f49a9b3798403a0cec4b2e3d
|
| 3 |
+
size 4994582104
|
sd3_pipeline/text_encoder_3/model.fp16-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f63154532130422309532ff56f11945fbea8266c958e3133e8e5aef85c6293c7
|
| 3 |
+
size 4530066248
|
sd3_pipeline/text_encoder_3/model.safetensors.index.fp16.json
ADDED
|
@@ -0,0 +1,226 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 9524621312
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"encoder.block.0.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 7 |
+
"encoder.block.0.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 8 |
+
"encoder.block.0.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 9 |
+
"encoder.block.0.layer.0.SelfAttention.relative_attention_bias.weight": "model.fp16-00001-of-00002.safetensors",
|
| 10 |
+
"encoder.block.0.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 11 |
+
"encoder.block.0.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 12 |
+
"encoder.block.0.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 13 |
+
"encoder.block.0.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 14 |
+
"encoder.block.0.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 15 |
+
"encoder.block.0.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 16 |
+
"encoder.block.1.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 17 |
+
"encoder.block.1.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 18 |
+
"encoder.block.1.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 19 |
+
"encoder.block.1.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 20 |
+
"encoder.block.1.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 21 |
+
"encoder.block.1.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 22 |
+
"encoder.block.1.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 23 |
+
"encoder.block.1.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 24 |
+
"encoder.block.1.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 25 |
+
"encoder.block.10.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 26 |
+
"encoder.block.10.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 27 |
+
"encoder.block.10.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 28 |
+
"encoder.block.10.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 29 |
+
"encoder.block.10.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 30 |
+
"encoder.block.10.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 31 |
+
"encoder.block.10.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 32 |
+
"encoder.block.10.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 33 |
+
"encoder.block.10.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 34 |
+
"encoder.block.11.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 35 |
+
"encoder.block.11.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 36 |
+
"encoder.block.11.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 37 |
+
"encoder.block.11.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 38 |
+
"encoder.block.11.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 39 |
+
"encoder.block.11.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 40 |
+
"encoder.block.11.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 41 |
+
"encoder.block.11.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 42 |
+
"encoder.block.11.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 43 |
+
"encoder.block.12.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 44 |
+
"encoder.block.12.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 45 |
+
"encoder.block.12.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 46 |
+
"encoder.block.12.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 47 |
+
"encoder.block.12.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 48 |
+
"encoder.block.12.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 49 |
+
"encoder.block.12.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 50 |
+
"encoder.block.12.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 51 |
+
"encoder.block.12.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 52 |
+
"encoder.block.13.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 53 |
+
"encoder.block.13.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 54 |
+
"encoder.block.13.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 55 |
+
"encoder.block.13.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 56 |
+
"encoder.block.13.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 57 |
+
"encoder.block.13.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 58 |
+
"encoder.block.13.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 59 |
+
"encoder.block.13.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 60 |
+
"encoder.block.13.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 61 |
+
"encoder.block.14.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 62 |
+
"encoder.block.14.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 63 |
+
"encoder.block.14.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 64 |
+
"encoder.block.14.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 65 |
+
"encoder.block.14.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 66 |
+
"encoder.block.14.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 67 |
+
"encoder.block.14.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 68 |
+
"encoder.block.14.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 69 |
+
"encoder.block.14.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 70 |
+
"encoder.block.15.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 71 |
+
"encoder.block.15.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 72 |
+
"encoder.block.15.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 73 |
+
"encoder.block.15.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 74 |
+
"encoder.block.15.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 75 |
+
"encoder.block.15.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 76 |
+
"encoder.block.15.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 77 |
+
"encoder.block.15.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 78 |
+
"encoder.block.15.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 79 |
+
"encoder.block.16.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 80 |
+
"encoder.block.16.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 81 |
+
"encoder.block.16.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 82 |
+
"encoder.block.16.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 83 |
+
"encoder.block.16.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 84 |
+
"encoder.block.16.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 85 |
+
"encoder.block.16.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 86 |
+
"encoder.block.16.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 87 |
+
"encoder.block.16.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 88 |
+
"encoder.block.17.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 89 |
+
"encoder.block.17.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 90 |
+
"encoder.block.17.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 91 |
+
"encoder.block.17.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 92 |
+
"encoder.block.17.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 93 |
+
"encoder.block.17.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 94 |
+
"encoder.block.17.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 95 |
+
"encoder.block.17.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 96 |
+
"encoder.block.17.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 97 |
+
"encoder.block.18.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 98 |
+
"encoder.block.18.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 99 |
+
"encoder.block.18.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 100 |
+
"encoder.block.18.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 101 |
+
"encoder.block.18.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 102 |
+
"encoder.block.18.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 103 |
+
"encoder.block.18.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 104 |
+
"encoder.block.18.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 105 |
+
"encoder.block.18.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 106 |
+
"encoder.block.19.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 107 |
+
"encoder.block.19.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 108 |
+
"encoder.block.19.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 109 |
+
"encoder.block.19.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 110 |
+
"encoder.block.19.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 111 |
+
"encoder.block.19.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 112 |
+
"encoder.block.19.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 113 |
+
"encoder.block.19.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 114 |
+
"encoder.block.19.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 115 |
+
"encoder.block.2.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 116 |
+
"encoder.block.2.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 117 |
+
"encoder.block.2.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 118 |
+
"encoder.block.2.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 119 |
+
"encoder.block.2.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 120 |
+
"encoder.block.2.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 121 |
+
"encoder.block.2.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 122 |
+
"encoder.block.2.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 123 |
+
"encoder.block.2.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 124 |
+
"encoder.block.20.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 125 |
+
"encoder.block.20.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 126 |
+
"encoder.block.20.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 127 |
+
"encoder.block.20.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 128 |
+
"encoder.block.20.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 129 |
+
"encoder.block.20.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 130 |
+
"encoder.block.20.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 131 |
+
"encoder.block.20.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 132 |
+
"encoder.block.20.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 133 |
+
"encoder.block.21.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 134 |
+
"encoder.block.21.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 135 |
+
"encoder.block.21.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 136 |
+
"encoder.block.21.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 137 |
+
"encoder.block.21.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 138 |
+
"encoder.block.21.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 139 |
+
"encoder.block.21.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 140 |
+
"encoder.block.21.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 141 |
+
"encoder.block.21.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 142 |
+
"encoder.block.22.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 143 |
+
"encoder.block.22.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 144 |
+
"encoder.block.22.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 145 |
+
"encoder.block.22.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 146 |
+
"encoder.block.22.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 147 |
+
"encoder.block.22.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 148 |
+
"encoder.block.22.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 149 |
+
"encoder.block.22.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 150 |
+
"encoder.block.22.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 151 |
+
"encoder.block.23.layer.0.SelfAttention.k.weight": "model.fp16-00002-of-00002.safetensors",
|
| 152 |
+
"encoder.block.23.layer.0.SelfAttention.o.weight": "model.fp16-00002-of-00002.safetensors",
|
| 153 |
+
"encoder.block.23.layer.0.SelfAttention.q.weight": "model.fp16-00002-of-00002.safetensors",
|
| 154 |
+
"encoder.block.23.layer.0.SelfAttention.v.weight": "model.fp16-00002-of-00002.safetensors",
|
| 155 |
+
"encoder.block.23.layer.0.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 156 |
+
"encoder.block.23.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00002-of-00002.safetensors",
|
| 157 |
+
"encoder.block.23.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00002-of-00002.safetensors",
|
| 158 |
+
"encoder.block.23.layer.1.DenseReluDense.wo.weight": "model.fp16-00002-of-00002.safetensors",
|
| 159 |
+
"encoder.block.23.layer.1.layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 160 |
+
"encoder.block.3.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 161 |
+
"encoder.block.3.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 162 |
+
"encoder.block.3.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 163 |
+
"encoder.block.3.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 164 |
+
"encoder.block.3.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 165 |
+
"encoder.block.3.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 166 |
+
"encoder.block.3.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 167 |
+
"encoder.block.3.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 168 |
+
"encoder.block.3.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 169 |
+
"encoder.block.4.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 170 |
+
"encoder.block.4.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 171 |
+
"encoder.block.4.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 172 |
+
"encoder.block.4.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 173 |
+
"encoder.block.4.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 174 |
+
"encoder.block.4.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 175 |
+
"encoder.block.4.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 176 |
+
"encoder.block.4.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 177 |
+
"encoder.block.4.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 178 |
+
"encoder.block.5.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 179 |
+
"encoder.block.5.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 180 |
+
"encoder.block.5.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 181 |
+
"encoder.block.5.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 182 |
+
"encoder.block.5.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 183 |
+
"encoder.block.5.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 184 |
+
"encoder.block.5.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 185 |
+
"encoder.block.5.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 186 |
+
"encoder.block.5.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 187 |
+
"encoder.block.6.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 188 |
+
"encoder.block.6.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 189 |
+
"encoder.block.6.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 190 |
+
"encoder.block.6.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 191 |
+
"encoder.block.6.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 192 |
+
"encoder.block.6.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 193 |
+
"encoder.block.6.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 194 |
+
"encoder.block.6.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 195 |
+
"encoder.block.6.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 196 |
+
"encoder.block.7.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 197 |
+
"encoder.block.7.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 198 |
+
"encoder.block.7.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 199 |
+
"encoder.block.7.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 200 |
+
"encoder.block.7.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 201 |
+
"encoder.block.7.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 202 |
+
"encoder.block.7.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 203 |
+
"encoder.block.7.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 204 |
+
"encoder.block.7.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 205 |
+
"encoder.block.8.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 206 |
+
"encoder.block.8.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 207 |
+
"encoder.block.8.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 208 |
+
"encoder.block.8.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 209 |
+
"encoder.block.8.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 210 |
+
"encoder.block.8.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 211 |
+
"encoder.block.8.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 212 |
+
"encoder.block.8.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 213 |
+
"encoder.block.8.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 214 |
+
"encoder.block.9.layer.0.SelfAttention.k.weight": "model.fp16-00001-of-00002.safetensors",
|
| 215 |
+
"encoder.block.9.layer.0.SelfAttention.o.weight": "model.fp16-00001-of-00002.safetensors",
|
| 216 |
+
"encoder.block.9.layer.0.SelfAttention.q.weight": "model.fp16-00001-of-00002.safetensors",
|
| 217 |
+
"encoder.block.9.layer.0.SelfAttention.v.weight": "model.fp16-00001-of-00002.safetensors",
|
| 218 |
+
"encoder.block.9.layer.0.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 219 |
+
"encoder.block.9.layer.1.DenseReluDense.wi_0.weight": "model.fp16-00001-of-00002.safetensors",
|
| 220 |
+
"encoder.block.9.layer.1.DenseReluDense.wi_1.weight": "model.fp16-00001-of-00002.safetensors",
|
| 221 |
+
"encoder.block.9.layer.1.DenseReluDense.wo.weight": "model.fp16-00001-of-00002.safetensors",
|
| 222 |
+
"encoder.block.9.layer.1.layer_norm.weight": "model.fp16-00001-of-00002.safetensors",
|
| 223 |
+
"encoder.final_layer_norm.weight": "model.fp16-00002-of-00002.safetensors",
|
| 224 |
+
"shared.weight": "model.fp16-00001-of-00002.safetensors"
|
| 225 |
+
}
|
| 226 |
+
}
|
sd3_pipeline/text_encoder_3/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,226 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 9524621312
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"encoder.block.0.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 7 |
+
"encoder.block.0.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"encoder.block.0.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"encoder.block.0.layer.0.SelfAttention.relative_attention_bias.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"encoder.block.0.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"encoder.block.0.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"encoder.block.0.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"encoder.block.0.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"encoder.block.0.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"encoder.block.0.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"encoder.block.1.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"encoder.block.1.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"encoder.block.1.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"encoder.block.1.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"encoder.block.1.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"encoder.block.1.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"encoder.block.1.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"encoder.block.1.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"encoder.block.1.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"encoder.block.10.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"encoder.block.10.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"encoder.block.10.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"encoder.block.10.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"encoder.block.10.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"encoder.block.10.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"encoder.block.10.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"encoder.block.10.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"encoder.block.10.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"encoder.block.11.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"encoder.block.11.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"encoder.block.11.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"encoder.block.11.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"encoder.block.11.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"encoder.block.11.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"encoder.block.11.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"encoder.block.11.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"encoder.block.11.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"encoder.block.12.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"encoder.block.12.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 45 |
+
"encoder.block.12.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"encoder.block.12.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"encoder.block.12.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 48 |
+
"encoder.block.12.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 49 |
+
"encoder.block.12.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 50 |
+
"encoder.block.12.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 51 |
+
"encoder.block.12.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 52 |
+
"encoder.block.13.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 53 |
+
"encoder.block.13.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 54 |
+
"encoder.block.13.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 55 |
+
"encoder.block.13.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 56 |
+
"encoder.block.13.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 57 |
+
"encoder.block.13.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 58 |
+
"encoder.block.13.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 59 |
+
"encoder.block.13.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 60 |
+
"encoder.block.13.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 61 |
+
"encoder.block.14.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 62 |
+
"encoder.block.14.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 63 |
+
"encoder.block.14.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 64 |
+
"encoder.block.14.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 65 |
+
"encoder.block.14.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 66 |
+
"encoder.block.14.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 67 |
+
"encoder.block.14.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 68 |
+
"encoder.block.14.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 69 |
+
"encoder.block.14.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 70 |
+
"encoder.block.15.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 71 |
+
"encoder.block.15.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 72 |
+
"encoder.block.15.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 73 |
+
"encoder.block.15.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 74 |
+
"encoder.block.15.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 75 |
+
"encoder.block.15.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 76 |
+
"encoder.block.15.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 77 |
+
"encoder.block.15.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 78 |
+
"encoder.block.15.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 79 |
+
"encoder.block.16.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 80 |
+
"encoder.block.16.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 81 |
+
"encoder.block.16.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 82 |
+
"encoder.block.16.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 83 |
+
"encoder.block.16.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 84 |
+
"encoder.block.16.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 85 |
+
"encoder.block.16.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 86 |
+
"encoder.block.16.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 87 |
+
"encoder.block.16.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 88 |
+
"encoder.block.17.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 89 |
+
"encoder.block.17.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 90 |
+
"encoder.block.17.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 91 |
+
"encoder.block.17.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 92 |
+
"encoder.block.17.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 93 |
+
"encoder.block.17.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 94 |
+
"encoder.block.17.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 95 |
+
"encoder.block.17.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 96 |
+
"encoder.block.17.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 97 |
+
"encoder.block.18.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 98 |
+
"encoder.block.18.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 99 |
+
"encoder.block.18.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 100 |
+
"encoder.block.18.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 101 |
+
"encoder.block.18.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 102 |
+
"encoder.block.18.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 103 |
+
"encoder.block.18.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 104 |
+
"encoder.block.18.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 105 |
+
"encoder.block.18.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 106 |
+
"encoder.block.19.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 107 |
+
"encoder.block.19.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 108 |
+
"encoder.block.19.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 109 |
+
"encoder.block.19.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 110 |
+
"encoder.block.19.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 111 |
+
"encoder.block.19.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 112 |
+
"encoder.block.19.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 113 |
+
"encoder.block.19.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 114 |
+
"encoder.block.19.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 115 |
+
"encoder.block.2.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"encoder.block.2.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"encoder.block.2.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"encoder.block.2.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"encoder.block.2.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 120 |
+
"encoder.block.2.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 121 |
+
"encoder.block.2.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 122 |
+
"encoder.block.2.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 123 |
+
"encoder.block.2.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 124 |
+
"encoder.block.20.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 125 |
+
"encoder.block.20.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 126 |
+
"encoder.block.20.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 127 |
+
"encoder.block.20.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 128 |
+
"encoder.block.20.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 129 |
+
"encoder.block.20.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 130 |
+
"encoder.block.20.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 131 |
+
"encoder.block.20.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 132 |
+
"encoder.block.20.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 133 |
+
"encoder.block.21.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 134 |
+
"encoder.block.21.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 135 |
+
"encoder.block.21.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 136 |
+
"encoder.block.21.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 137 |
+
"encoder.block.21.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 138 |
+
"encoder.block.21.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 139 |
+
"encoder.block.21.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 140 |
+
"encoder.block.21.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 141 |
+
"encoder.block.21.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 142 |
+
"encoder.block.22.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 143 |
+
"encoder.block.22.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 144 |
+
"encoder.block.22.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 145 |
+
"encoder.block.22.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 146 |
+
"encoder.block.22.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 147 |
+
"encoder.block.22.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 148 |
+
"encoder.block.22.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 149 |
+
"encoder.block.22.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 150 |
+
"encoder.block.22.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 151 |
+
"encoder.block.23.layer.0.SelfAttention.k.weight": "model-00002-of-00002.safetensors",
|
| 152 |
+
"encoder.block.23.layer.0.SelfAttention.o.weight": "model-00002-of-00002.safetensors",
|
| 153 |
+
"encoder.block.23.layer.0.SelfAttention.q.weight": "model-00002-of-00002.safetensors",
|
| 154 |
+
"encoder.block.23.layer.0.SelfAttention.v.weight": "model-00002-of-00002.safetensors",
|
| 155 |
+
"encoder.block.23.layer.0.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 156 |
+
"encoder.block.23.layer.1.DenseReluDense.wi_0.weight": "model-00002-of-00002.safetensors",
|
| 157 |
+
"encoder.block.23.layer.1.DenseReluDense.wi_1.weight": "model-00002-of-00002.safetensors",
|
| 158 |
+
"encoder.block.23.layer.1.DenseReluDense.wo.weight": "model-00002-of-00002.safetensors",
|
| 159 |
+
"encoder.block.23.layer.1.layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 160 |
+
"encoder.block.3.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 161 |
+
"encoder.block.3.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 162 |
+
"encoder.block.3.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 163 |
+
"encoder.block.3.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 164 |
+
"encoder.block.3.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 165 |
+
"encoder.block.3.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 166 |
+
"encoder.block.3.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 167 |
+
"encoder.block.3.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 168 |
+
"encoder.block.3.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 169 |
+
"encoder.block.4.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 170 |
+
"encoder.block.4.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 171 |
+
"encoder.block.4.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 172 |
+
"encoder.block.4.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 173 |
+
"encoder.block.4.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 174 |
+
"encoder.block.4.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 175 |
+
"encoder.block.4.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 176 |
+
"encoder.block.4.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 177 |
+
"encoder.block.4.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 178 |
+
"encoder.block.5.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 179 |
+
"encoder.block.5.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 180 |
+
"encoder.block.5.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 181 |
+
"encoder.block.5.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 182 |
+
"encoder.block.5.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 183 |
+
"encoder.block.5.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 184 |
+
"encoder.block.5.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 185 |
+
"encoder.block.5.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 186 |
+
"encoder.block.5.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 187 |
+
"encoder.block.6.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 188 |
+
"encoder.block.6.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 189 |
+
"encoder.block.6.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 190 |
+
"encoder.block.6.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 191 |
+
"encoder.block.6.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 192 |
+
"encoder.block.6.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 193 |
+
"encoder.block.6.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 194 |
+
"encoder.block.6.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 195 |
+
"encoder.block.6.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 196 |
+
"encoder.block.7.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 197 |
+
"encoder.block.7.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 198 |
+
"encoder.block.7.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 199 |
+
"encoder.block.7.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 200 |
+
"encoder.block.7.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 201 |
+
"encoder.block.7.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 202 |
+
"encoder.block.7.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 203 |
+
"encoder.block.7.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 204 |
+
"encoder.block.7.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 205 |
+
"encoder.block.8.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 206 |
+
"encoder.block.8.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 207 |
+
"encoder.block.8.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 208 |
+
"encoder.block.8.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 209 |
+
"encoder.block.8.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 210 |
+
"encoder.block.8.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 211 |
+
"encoder.block.8.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 212 |
+
"encoder.block.8.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 213 |
+
"encoder.block.8.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 214 |
+
"encoder.block.9.layer.0.SelfAttention.k.weight": "model-00001-of-00002.safetensors",
|
| 215 |
+
"encoder.block.9.layer.0.SelfAttention.o.weight": "model-00001-of-00002.safetensors",
|
| 216 |
+
"encoder.block.9.layer.0.SelfAttention.q.weight": "model-00001-of-00002.safetensors",
|
| 217 |
+
"encoder.block.9.layer.0.SelfAttention.v.weight": "model-00001-of-00002.safetensors",
|
| 218 |
+
"encoder.block.9.layer.0.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 219 |
+
"encoder.block.9.layer.1.DenseReluDense.wi_0.weight": "model-00001-of-00002.safetensors",
|
| 220 |
+
"encoder.block.9.layer.1.DenseReluDense.wi_1.weight": "model-00001-of-00002.safetensors",
|
| 221 |
+
"encoder.block.9.layer.1.DenseReluDense.wo.weight": "model-00001-of-00002.safetensors",
|
| 222 |
+
"encoder.block.9.layer.1.layer_norm.weight": "model-00001-of-00002.safetensors",
|
| 223 |
+
"encoder.final_layer_norm.weight": "model-00002-of-00002.safetensors",
|
| 224 |
+
"shared.weight": "model-00001-of-00002.safetensors"
|
| 225 |
+
}
|
| 226 |
+
}
|
sd3_pipeline/text_encoders/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
CLIP-ViT/L:
|
| 2 |
+
* [https://huggingface.co/openai/clip-vit-large-patch14](https://huggingface.co/openai/clip-vit-large-patch14/blob/main/README.md)
|
| 3 |
+
* [MIT License](https://github.com/openai/CLIP/blob/main/LICENSE)
|
| 4 |
+
|
| 5 |
+
OpenCLIP-ViT/G:
|
| 6 |
+
* [https://huggingface.co/laion/CLIP-ViT-bigG-14-laion2B-39B-b160k](https://huggingface.co/laion/CLIP-ViT-bigG-14-laion2B-39B-b160k/blob/main/README.md)
|
| 7 |
+
* [MIT License](https://choosealicense.com/licenses/mit)
|
| 8 |
+
|
| 9 |
+
T5 Version 1.1:
|
| 10 |
+
* [https://huggingface.co/google/t5-v1_1-xxl](https://huggingface.co/google/t5-v1_1-xxl/blob/main/README.md)
|
| 11 |
+
* [Apache License 2.0](https://choosealicense.com/licenses/apache-2.0)
|
sd3_pipeline/text_encoders/clip_g.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec310df2af79c318e24d20511b601a591ca8cd4f1fce1d8dff822a356bcdb1f4
|
| 3 |
+
size 1389382176
|
sd3_pipeline/text_encoders/clip_l.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:660c6f5b1abae9dc498ac2d21e1347d2abdb0cf6c0c0c8576cd796491d9a6cdd
|
| 3 |
+
size 246144152
|
sd3_pipeline/text_encoders/t5xxl_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e480b09fae049a72d2a8c5fbccb8d3e92febeb233bbe9dfe7256958a9167635
|
| 3 |
+
size 9787841024
|
sd3_pipeline/text_encoders/t5xxl_fp8_e4m3fn.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d330da4816157540d6bb7838bf63a0f02f573fc48ca4d8de34bb0cbfd514f09
|
| 3 |
+
size 4893934904
|
sd3_pipeline/tokenizer/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
sd3_pipeline/tokenizer/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|startoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|endoftext|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<|endoftext|>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
sd3_pipeline/tokenizer/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"49406": {
|
| 5 |
+
"content": "<|startoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"49407": {
|
| 13 |
+
"content": "<|endoftext|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
}
|
| 20 |
+
},
|
| 21 |
+
"bos_token": "<|startoftext|>",
|
| 22 |
+
"clean_up_tokenization_spaces": true,
|
| 23 |
+
"do_lower_case": true,
|
| 24 |
+
"eos_token": "<|endoftext|>",
|
| 25 |
+
"errors": "replace",
|
| 26 |
+
"model_max_length": 77,
|
| 27 |
+
"pad_token": "<|endoftext|>",
|
| 28 |
+
"tokenizer_class": "CLIPTokenizer",
|
| 29 |
+
"unk_token": "<|endoftext|>"
|
| 30 |
+
}
|
sd3_pipeline/tokenizer/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
sd3_pipeline/tokenizer_2/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
sd3_pipeline/tokenizer_2/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|startoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "!",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<|endoftext|>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
sd3_pipeline/tokenizer_2/tokenizer_config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"0": {
|
| 5 |
+
"content": "!",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"49406": {
|
| 13 |
+
"content": "<|startoftext|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": true,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"49407": {
|
| 21 |
+
"content": "<|endoftext|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"bos_token": "<|startoftext|>",
|
| 30 |
+
"clean_up_tokenization_spaces": true,
|
| 31 |
+
"do_lower_case": true,
|
| 32 |
+
"eos_token": "<|endoftext|>",
|
| 33 |
+
"errors": "replace",
|
| 34 |
+
"model_max_length": 77,
|
| 35 |
+
"pad_token": "!",
|
| 36 |
+
"tokenizer_class": "CLIPTokenizer",
|
| 37 |
+
"unk_token": "<|endoftext|>"
|
| 38 |
+
}
|