Text-to-Image
Diffusers
Safetensors
English
Krea2Pipeline
krea2
sdnq
uint4
4-bit precision
quantized
8-bit precision
Instructions to use WaveCut/Krea-2-Raw-SDNQ-uint4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use WaveCut/Krea-2-Raw-SDNQ-uint4 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("WaveCut/Krea-2-Raw-SDNQ-uint4", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Add files using upload-large-folder tool
Browse files- .gitattributes +4 -0
- LICENSE.pdf +3 -0
- README.md +131 -0
- SHA256SUMS +31 -0
- assets/original_vs_sdnq_raw.png +3 -0
- assets/original_vs_sdnq_raw.webp +3 -0
- benchmark/original.metrics.csv +11 -0
- benchmark/original.metrics.jsonl +10 -0
- benchmark/original.summary.json +23 -0
- benchmark/sdnq.metrics.csv +11 -0
- benchmark/sdnq.metrics.jsonl +10 -0
- benchmark/sdnq.summary.json +23 -0
- benchmark/smoke-findings.json +10 -0
- benchmark/summary.json +72 -0
- lab_metadata.json +24 -0
- model_index.json +41 -0
- prompts.json +52 -0
- quantization_manifest.json +53 -0
- scheduler/scheduler_config.json +18 -0
- text_encoder/config.json +66 -0
- text_encoder/model-00001-of-00002.safetensors +3 -0
- text_encoder/model-00002-of-00002.safetensors +3 -0
- text_encoder/model.safetensors.index.json +721 -0
- tokenizer/chat_template.jinja +120 -0
- tokenizer/tokenizer.json +3 -0
- tokenizer/tokenizer_config.json +30 -0
- transformer/config.json +89 -0
- transformer/diffusion_pytorch_model-00001-of-00002.safetensors +3 -0
- transformer/diffusion_pytorch_model-00002-of-00002.safetensors +3 -0
- transformer/diffusion_pytorch_model.safetensors.index.json +953 -0
- transformer/quantization_config.json +63 -0
- vae/config.json +58 -0
- vae/diffusion_pytorch_model.safetensors +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,7 @@ 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 |
+
LICENSE.pdf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
assets/original_vs_sdnq_raw.webp filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
assets/original_vs_sdnq_raw.png filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
tokenizer/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
LICENSE.pdf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b82a2805162bde714a4eb27b9063c4fc3345d08a30be055134a6160e5430ba74
|
| 3 |
+
size 137711
|
README.md
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: other
|
| 5 |
+
base_model:
|
| 6 |
+
- krea/Krea-2-Raw
|
| 7 |
+
base_model_relation: quantized
|
| 8 |
+
library_name: diffusers
|
| 9 |
+
pipeline_tag: text-to-image
|
| 10 |
+
tags:
|
| 11 |
+
- diffusers
|
| 12 |
+
- safetensors
|
| 13 |
+
- text-to-image
|
| 14 |
+
- krea2
|
| 15 |
+
- sdnq
|
| 16 |
+
- uint4
|
| 17 |
+
- 4-bit
|
| 18 |
+
- quantized
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# Krea 2 Raw SDNQ UINT4
|
| 22 |
+
|
| 23 |
+
SDNQ UINT4 quantization of [krea/Krea-2-Raw](https://huggingface.co/krea/Krea-2-Raw) for Diffusers `Krea2Pipeline`.
|
| 24 |
+
|
| 25 |
+

|
| 26 |
+
|
| 27 |
+
## What Is Quantized
|
| 28 |
+
|
| 29 |
+
Selected recipe: `uint4-static-transformer-only`.
|
| 30 |
+
|
| 31 |
+
Quantized components: `transformer`.
|
| 32 |
+
Tokenizer, scheduler, and non-selected pipeline components are copied from the original Diffusers pipeline.
|
| 33 |
+
|
| 34 |
+
The initial smoke sweep also tried SDNQ packing for the text encoder, but standard Diffusers/Transformers loading rejected the packed `Qwen3VLModel` text-encoder weights. This release therefore keeps the text encoder loadable in bf16 and quantizes the Krea transformer only.
|
| 35 |
+
|
| 36 |
+
## Benchmark Setup
|
| 37 |
+
|
| 38 |
+
- Pipeline: `Krea2Pipeline`
|
| 39 |
+
- Resolution: 1024x1024
|
| 40 |
+
- Steps: 52
|
| 41 |
+
- Guidance scale: 3.5
|
| 42 |
+
- Seed base: 61000
|
| 43 |
+
- Distilled mode: `false`
|
| 44 |
+
- Torch dtype: bfloat16
|
| 45 |
+
- Attention backend: diffusers native attention
|
| 46 |
+
- Prompt set: 10 prompts covering simple scenes, public-domain style stress tests, tricky composition, long Latin text, long Cyrillic text, and mixed Latin/Cyrillic diagrams
|
| 47 |
+
- Hardware: NVIDIA RTX PRO 6000 Blackwell Server Edition on a disposable RunPod pod with local container disk
|
| 48 |
+
|
| 49 |
+
## Benchmark Summary
|
| 50 |
+
|
| 51 |
+
| Model | Load | First gen | Hot mean | Hot max | Load GPU peak | Gen GPU peak | Torch peak |
|
| 52 |
+
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 53 |
+
| original | 8.442 s | 163.733 s | 163.403 s | 163.422 s | 33487 MB | 44154 MB | 42717.1767578125 MB |
|
| 54 |
+
| uint4-static-transformer-only | 5.954 s | 160.935 s | 157.422 s | 157.457 s | 16041 MB | 26788 MB | 25272.396484375 MB |
|
| 55 |
+
|
| 56 |
+
Storage size of this release directory: 15.38 GB. Quantized local checkpoint size before packaging: 15.36 GB.
|
| 57 |
+
|
| 58 |
+
Raw per-prompt metrics are available in `benchmark/*.csv` and `benchmark/*.jsonl`. The combined benchmark summary is in `benchmark/summary.json`.
|
| 59 |
+
|
| 60 |
+
## Usage
|
| 61 |
+
|
| 62 |
+
```bash
|
| 63 |
+
pip install -U git+https://github.com/huggingface/diffusers.git transformers accelerate safetensors huggingface_hub sdnq
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
```python
|
| 67 |
+
import torch
|
| 68 |
+
from diffusers import Krea2Pipeline
|
| 69 |
+
from sdnq.loader import apply_sdnq_options_to_model
|
| 70 |
+
|
| 71 |
+
repo_id = "WaveCut/Krea-2-Raw-SDNQ-uint4"
|
| 72 |
+
device = "cuda"
|
| 73 |
+
|
| 74 |
+
pipe = Krea2Pipeline.from_pretrained(
|
| 75 |
+
repo_id,
|
| 76 |
+
torch_dtype=torch.bfloat16,
|
| 77 |
+
is_distilled=False,
|
| 78 |
+
)
|
| 79 |
+
|
| 80 |
+
for name in ['transformer']:
|
| 81 |
+
module = getattr(pipe, name, None)
|
| 82 |
+
if module is not None:
|
| 83 |
+
setattr(
|
| 84 |
+
pipe,
|
| 85 |
+
name,
|
| 86 |
+
apply_sdnq_options_to_model(module, dtype=torch.bfloat16, use_quantized_matmul=True),
|
| 87 |
+
)
|
| 88 |
+
|
| 89 |
+
pipe.to(device)
|
| 90 |
+
image = pipe(
|
| 91 |
+
prompt="A clean technical poster with readable labels",
|
| 92 |
+
height=1024,
|
| 93 |
+
width=1024,
|
| 94 |
+
num_inference_steps=52,
|
| 95 |
+
guidance_scale=3.5,
|
| 96 |
+
generator=torch.Generator(device=device).manual_seed(0),
|
| 97 |
+
).images[0]
|
| 98 |
+
image.save("krea2-sdnq.png")
|
| 99 |
+
```
|
| 100 |
+
|
| 101 |
+
## Quantization Recipe
|
| 102 |
+
|
| 103 |
+
```json
|
| 104 |
+
{
|
| 105 |
+
"dynamic_loss_threshold": null,
|
| 106 |
+
"modules": [
|
| 107 |
+
"transformer"
|
| 108 |
+
],
|
| 109 |
+
"name": "uint4-static-transformer-only",
|
| 110 |
+
"quant_conv": false,
|
| 111 |
+
"quant_embedding": false,
|
| 112 |
+
"svd_rank": 32,
|
| 113 |
+
"svd_steps": 32,
|
| 114 |
+
"use_dynamic_quantization": false,
|
| 115 |
+
"use_svd": false,
|
| 116 |
+
"weights_dtype": "uint4"
|
| 117 |
+
}
|
| 118 |
+
```
|
| 119 |
+
|
| 120 |
+
The checkpoint was produced by loading the original Diffusers pipeline, applying `sdnq_post_load_quant` only to the listed pipeline components, and saving with `save_sdnq_model(..., is_pipeline=True)`.
|
| 121 |
+
|
| 122 |
+
## Limitations
|
| 123 |
+
|
| 124 |
+
- This is a quantized derivative and inherits the base model behavior, limits, and license terms.
|
| 125 |
+
- The comparison set is a deployment smoke benchmark, not a preference study or FID evaluation.
|
| 126 |
+
- Long text, small labels, and mixed Cyrillic/Latin diagrams should be inspected manually before production use.
|
| 127 |
+
- Benchmark numbers depend on GPU, driver, PyTorch, Diffusers, SDNQ, and CUDA versions.
|
| 128 |
+
|
| 129 |
+
## License
|
| 130 |
+
|
| 131 |
+
This repository contains a quantized derivative of `krea/Krea-2-Raw`. Upstream license material copied during packaging: `LICENSE.pdf`. Review the upstream Krea model card and license before use or redistribution.
|
SHA256SUMS
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
b82a2805162bde714a4eb27b9063c4fc3345d08a30be055134a6160e5430ba74 ./LICENSE.pdf
|
| 2 |
+
0178eaa11baa5d91161e40f13603a3c0ba9df2613f7b684dde20bfcb2aefbe74 ./README.md
|
| 3 |
+
be73136a292eff03ef4a27c210f0ed341e315590ed446dea03b7b4eda99e1625 ./assets/original_vs_sdnq_raw.png
|
| 4 |
+
aee71f25554db6ca841e9b28315825e4ab6132e5d362e5eeffb2ecb6ca93ac1e ./assets/original_vs_sdnq_raw.webp
|
| 5 |
+
9fbd4b8a99038a57f4d54e6acd7aa860a424379a21924265840bf5bf0b94b89c ./benchmark/original.metrics.csv
|
| 6 |
+
2247bc0e3476aff3bc1dd2bd68b990b2636e68e8d0301d89c96e299cb343d862 ./benchmark/original.metrics.jsonl
|
| 7 |
+
89e18cdefeab940a5ba599cff2ffebbb0f52fb0cc0104c6cb8a057714b170931 ./benchmark/original.summary.json
|
| 8 |
+
ca5adf39e2489e702d78d61afef26abdd6e65b46388b8b073943ac70bbe54529 ./benchmark/sdnq.metrics.csv
|
| 9 |
+
2b9784cd0a2b0b24a335666907e4a8509ba0e7b48017764f9eb6ab5f5947312c ./benchmark/sdnq.metrics.jsonl
|
| 10 |
+
215fdd9d8e1166ec67974db6b251c2a33905e94429d8a7f262b0ba82e136b9dd ./benchmark/sdnq.summary.json
|
| 11 |
+
b1950c795aed1b0c291c33cf4ae7e26b3715f2385eff3892ae70f155e65287f6 ./benchmark/smoke-findings.json
|
| 12 |
+
b2790ffc9ca7ea4e8be1ef82dd0f2a08a85f3690973454c3cfa82fe14d68026e ./benchmark/summary.json
|
| 13 |
+
62d09b5fa58b8ab24b2e2de61addd600e1d7587917252db941764bcbca7c74af ./lab_metadata.json
|
| 14 |
+
117296a06fb0c7c098d392ca565235858bf183127d761f9695fa62e3c3ee51ae ./model_index.json
|
| 15 |
+
76735b67f56fc928079ece3ce8110565f57730a29f312a29e78ea94acddeabd8 ./prompts.json
|
| 16 |
+
0491846910022781e48b5a259cf85658971f569e8fdae30da07c471c7c069667 ./quantization_manifest.json
|
| 17 |
+
4d8ea4471195528cdb84fcb8d37cd54ff442b9c02ff74f7d16d0a7a2f14b9467 ./scheduler/scheduler_config.json
|
| 18 |
+
8693a6d146a30c54a9dfd3d021f3959ee4cc0d6f8a75132359fe9978e3a96a9f ./text_encoder/config.json
|
| 19 |
+
fec40067096de026596f71f00f947b30d2730f8416da03059c44a28b85741122 ./text_encoder/model-00001-of-00002.safetensors
|
| 20 |
+
ffbd61087fb0e41b40f37e7f0b2a36c93112974303499c14c15c5d97a93db991 ./text_encoder/model-00002-of-00002.safetensors
|
| 21 |
+
2f0f23cffcf20a028786a9f3bff82a842d9c2bd9730e1c6b97d9efae0d6676bd ./text_encoder/model.safetensors.index.json
|
| 22 |
+
3636d0f0bd6bef02654cdffdc447b79cb2cef8ab02cc75267345946291a489e4 ./tokenizer/chat_template.jinja
|
| 23 |
+
be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506 ./tokenizer/tokenizer.json
|
| 24 |
+
928c3c44a7d2168cede835051a5f630c22b9ef4c6f6bd672d2ba8677af2343b3 ./tokenizer/tokenizer_config.json
|
| 25 |
+
01533b81685176e5fc13310253e51e747b5d67a764c7033d04f3106672ca974f ./transformer/config.json
|
| 26 |
+
163e344e665310e99bf45c2b6e748bae8216b097d626c8758188444246e63e9b ./transformer/diffusion_pytorch_model-00001-of-00002.safetensors
|
| 27 |
+
f17c8666a76d2df210ef177339a20cd1bb160dd217857697dbf8c0e0478ead3d ./transformer/diffusion_pytorch_model-00002-of-00002.safetensors
|
| 28 |
+
c5c59eabfd579a2d0caf5edc082c8ab6921dd850034782d79c3f195864e6266f ./transformer/diffusion_pytorch_model.safetensors.index.json
|
| 29 |
+
b308808ad5e35d4a508a0149ca9ec21fd659c21f18638fcb53133b847a196033 ./transformer/quantization_config.json
|
| 30 |
+
7efff1aa57a40fd86335d15330f81baf7ee4a0735fb1da9accc0435214c2777d ./vae/config.json
|
| 31 |
+
0c8bc8b758c649abef9ea407b95408389a3b2f610d0d10fcb054fe171d0a8344 ./vae/diffusion_pytorch_model.safetensors
|
assets/original_vs_sdnq_raw.png
ADDED
|
Git LFS Details
|
assets/original_vs_sdnq_raw.webp
ADDED
|
Git LFS Details
|
benchmark/original.metrics.csv
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
category,elapsed_seconds,first_generation_seconds,gen_peak_nvidia_smi_mb,gen_torch_allocated_mb,gen_torch_peak_allocated_mb,gen_torch_peak_reserved_mb,gen_torch_reserved_mb,guidance,height,hot_max_seconds,hot_mean_seconds,image_path,is_distilled,label,load_peak_nvidia_smi_mb,load_seconds,load_torch_allocated_mb,load_torch_peak_allocated_mb,load_torch_peak_reserved_mb,load_torch_reserved_mb,maxrss_mb,model,model_key,prompt,prompt_id,prompt_idx,quantized,run_idx,seed,steps,width
|
| 2 |
+
product detail,163.73263843916357,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.73263843916357,163.73263843916357,results/benchmark/raw/original/images/p00-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A precise studio product photograph of a translucent graphite espresso machine on a brushed steel counter, tiny engraved labels, clean reflections, realistic materials, sharp edges",studio-product,0,False,0,61000,52,1024
|
| 3 |
+
portrait,163.3958865404129,163.73263843916357,44154,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.3958865404129,163.3958865404129,results/benchmark/raw/original/images/p01-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A natural-light portrait of a sleep-deprived spacecraft mechanic in a cramped orbital workshop, believable skin, oil stains, soft window light, shallow depth of field",human-portrait,1,False,0,61001,52,1024
|
| 4 |
+
public-domain artist style,163.39290373586118,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.3958865404129,163.39439513813704,results/benchmark/raw/original/images/p02-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A public-domain Alphonse Mucha inspired Art Nouveau theater poster for a fictional moon observatory, ornate floral border, elegant flat colors, decorative halo, readable title MOON GARDEN",mucha-poster,2,False,0,61002,52,1024
|
| 5 |
+
public-domain artist style,163.39093228057027,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.3958865404129,163.39324085228145,results/benchmark/raw/original/images/p03-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A public-domain Hokusai inspired woodblock print of a compact electric ferry crossing a stormy canal, bold wave shapes, limited ink colors, paper grain, tiny passengers visible",hokusai-wave,3,False,0,61003,52,1024
|
| 6 |
+
popular image style,163.40533112362027,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.40533112362027,163.39626342011616,results/benchmark/raw/original/images/p04-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A Bauhaus risograph exhibition poster, strict red blue yellow geometry, off-register ink, grainy paper, bold sans-serif headline SYSTEM FORM, small schedule text and ticket numbers",bauhaus-risograph,4,False,0,61004,52,1024
|
| 7 |
+
technical diagram,163.3889823332429,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.40533112362027,163.3948072027415,results/benchmark/raw/original/images/p05-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A clean technical cutaway diagram of a compact hydrogen ferry drivetrain, readable labels, arrows, exploded components, white background, exact industrial illustration",technical-cutaway,5,False,0,61005,52,1024
|
| 8 |
+
long Latin text,163.41213518567383,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.41213518567383,163.3976951998969,results/benchmark/raw/original/images/p06-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A large chalkboard in a design studio with one continuous readable paragraph written in careful white chalk: The prototype must remain quiet under load, preserve every user setting, recover from failed uploads, and report exact timing numbers before anyone calls the experiment finished.",long-latin-text,6,False,0,61006,52,1024
|
| 9 |
+
long Cyrillic text,163.4224559403956,163.73263843916357,44154,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.4224559403956,163.40123244853956,results/benchmark/raw/original/images/p07-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"Большая школьная доска в светлой аудитории, на ней аккуратно мелом написан длинный русский текст: Квантованная модель должна сохранять композицию, не лома��ь мелкие подписи, честно показывать скорость и память, а все артефакты нужно проверить перед публикацией.",long-cyrillic-text,7,False,0,61007,52,1024
|
| 10 |
+
mixed Latin Cyrillic diagram,163.4060163088143,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.4224559403956,163.4018304310739,results/benchmark/raw/original/images/p08-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A bilingual technical wall chart mixing English and Russian labels: INPUT LATENTS, scheduler, трансформер, text encoder, VAE decoder, output image; neat arrows, small legends, clean grid, readable typography",mixed-diagram,8,False,0,61008,52,1024
|
| 11 |
+
scene composition,163.41161981225014,163.73263843916357,43595,33167.74169921875,42717.1767578125,42926.0,42926.0,3.5,1024,163.4224559403956,163.40291814009348,results/benchmark/raw/original/images/p09-r00.png,False,original,33487,8.442133091390133,33159.61572265625,33159.61572265625,33178.0,33178.0,11368.7109375,krea/Krea-2-Raw,raw,"A rainy evening street in Warsaw seen through a tram window, neon signs reflected in wet asphalt, cyclists, kiosks, apartment balconies, cinematic realism without oversaturation",wide-city-scene,9,False,0,61009,52,1024
|
benchmark/original.metrics.jsonl
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"category": "product detail", "elapsed_seconds": 163.73263843916357, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.73263843916357, "hot_mean_seconds": 163.73263843916357, "image_path": "results/benchmark/raw/original/images/p00-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A precise studio product photograph of a translucent graphite espresso machine on a brushed steel counter, tiny engraved labels, clean reflections, realistic materials, sharp edges", "prompt_id": "studio-product", "prompt_idx": 0, "quantized": false, "run_idx": 0, "seed": 61000, "steps": 52, "width": 1024}
|
| 2 |
+
{"category": "portrait", "elapsed_seconds": 163.3958865404129, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 44154, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.3958865404129, "hot_mean_seconds": 163.3958865404129, "image_path": "results/benchmark/raw/original/images/p01-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A natural-light portrait of a sleep-deprived spacecraft mechanic in a cramped orbital workshop, believable skin, oil stains, soft window light, shallow depth of field", "prompt_id": "human-portrait", "prompt_idx": 1, "quantized": false, "run_idx": 0, "seed": 61001, "steps": 52, "width": 1024}
|
| 3 |
+
{"category": "public-domain artist style", "elapsed_seconds": 163.39290373586118, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.3958865404129, "hot_mean_seconds": 163.39439513813704, "image_path": "results/benchmark/raw/original/images/p02-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A public-domain Alphonse Mucha inspired Art Nouveau theater poster for a fictional moon observatory, ornate floral border, elegant flat colors, decorative halo, readable title MOON GARDEN", "prompt_id": "mucha-poster", "prompt_idx": 2, "quantized": false, "run_idx": 0, "seed": 61002, "steps": 52, "width": 1024}
|
| 4 |
+
{"category": "public-domain artist style", "elapsed_seconds": 163.39093228057027, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.3958865404129, "hot_mean_seconds": 163.39324085228145, "image_path": "results/benchmark/raw/original/images/p03-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A public-domain Hokusai inspired woodblock print of a compact electric ferry crossing a stormy canal, bold wave shapes, limited ink colors, paper grain, tiny passengers visible", "prompt_id": "hokusai-wave", "prompt_idx": 3, "quantized": false, "run_idx": 0, "seed": 61003, "steps": 52, "width": 1024}
|
| 5 |
+
{"category": "popular image style", "elapsed_seconds": 163.40533112362027, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.40533112362027, "hot_mean_seconds": 163.39626342011616, "image_path": "results/benchmark/raw/original/images/p04-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A Bauhaus risograph exhibition poster, strict red blue yellow geometry, off-register ink, grainy paper, bold sans-serif headline SYSTEM FORM, small schedule text and ticket numbers", "prompt_id": "bauhaus-risograph", "prompt_idx": 4, "quantized": false, "run_idx": 0, "seed": 61004, "steps": 52, "width": 1024}
|
| 6 |
+
{"category": "technical diagram", "elapsed_seconds": 163.3889823332429, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.40533112362027, "hot_mean_seconds": 163.3948072027415, "image_path": "results/benchmark/raw/original/images/p05-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A clean technical cutaway diagram of a compact hydrogen ferry drivetrain, readable labels, arrows, exploded components, white background, exact industrial illustration", "prompt_id": "technical-cutaway", "prompt_idx": 5, "quantized": false, "run_idx": 0, "seed": 61005, "steps": 52, "width": 1024}
|
| 7 |
+
{"category": "long Latin text", "elapsed_seconds": 163.41213518567383, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.41213518567383, "hot_mean_seconds": 163.3976951998969, "image_path": "results/benchmark/raw/original/images/p06-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A large chalkboard in a design studio with one continuous readable paragraph written in careful white chalk: The prototype must remain quiet under load, preserve every user setting, recover from failed uploads, and report exact timing numbers before anyone calls the experiment finished.", "prompt_id": "long-latin-text", "prompt_idx": 6, "quantized": false, "run_idx": 0, "seed": 61006, "steps": 52, "width": 1024}
|
| 8 |
+
{"category": "long Cyrillic text", "elapsed_seconds": 163.4224559403956, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 44154, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.4224559403956, "hot_mean_seconds": 163.40123244853956, "image_path": "results/benchmark/raw/original/images/p07-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "Большая школьная доска в светлой аудитории, на ней аккуратно мелом написан длинный русский текст: Квантованная модель должна сохранять композицию, не ломать мелкие подписи, честно показывать скорость и память, а все артефакты нужно проверить перед публикацией.", "prompt_id": "long-cyrillic-text", "prompt_idx": 7, "quantized": false, "run_idx": 0, "seed": 61007, "steps": 52, "width": 1024}
|
| 9 |
+
{"category": "mixed Latin Cyrillic diagram", "elapsed_seconds": 163.4060163088143, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.4224559403956, "hot_mean_seconds": 163.4018304310739, "image_path": "results/benchmark/raw/original/images/p08-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A bilingual technical wall chart mixing English and Russian labels: INPUT LATENTS, scheduler, трансформер, text encoder, VAE decoder, output image; neat arrows, small legends, clean grid, readable typography", "prompt_id": "mixed-diagram", "prompt_idx": 8, "quantized": false, "run_idx": 0, "seed": 61008, "steps": 52, "width": 1024}
|
| 10 |
+
{"category": "scene composition", "elapsed_seconds": 163.41161981225014, "first_generation_seconds": 163.73263843916357, "gen_peak_nvidia_smi_mb": 43595, "gen_torch_allocated_mb": 33167.74169921875, "gen_torch_peak_allocated_mb": 42717.1767578125, "gen_torch_peak_reserved_mb": 42926.0, "gen_torch_reserved_mb": 42926.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 163.4224559403956, "hot_mean_seconds": 163.40291814009348, "image_path": "results/benchmark/raw/original/images/p09-r00.png", "is_distilled": false, "label": "original", "load_peak_nvidia_smi_mb": 33487, "load_seconds": 8.442133091390133, "load_torch_allocated_mb": 33159.61572265625, "load_torch_peak_allocated_mb": 33159.61572265625, "load_torch_peak_reserved_mb": 33178.0, "load_torch_reserved_mb": 33178.0, "maxrss_mb": 11368.7109375, "model": "krea/Krea-2-Raw", "model_key": "raw", "prompt": "A rainy evening street in Warsaw seen through a tram window, neon signs reflected in wet asphalt, cyclists, kiosks, apartment balconies, cinematic realism without oversaturation", "prompt_id": "wide-city-scene", "prompt_idx": 9, "quantized": false, "run_idx": 0, "seed": 61009, "steps": 52, "width": 1024}
|
benchmark/original.summary.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"first_generation_seconds": 163.73263843916357,
|
| 3 |
+
"gen_peak_nvidia_smi_mb": 44154,
|
| 4 |
+
"gen_torch_peak_allocated_mb": 42717.1767578125,
|
| 5 |
+
"gen_torch_peak_reserved_mb": 42926.0,
|
| 6 |
+
"hot_max_seconds": 163.4224559403956,
|
| 7 |
+
"hot_mean_seconds": 163.40291814009348,
|
| 8 |
+
"label": "original",
|
| 9 |
+
"maxrss_mb": 11368.7109375,
|
| 10 |
+
"model": "krea/Krea-2-Raw",
|
| 11 |
+
"model_key": "raw",
|
| 12 |
+
"prompt_count": 10,
|
| 13 |
+
"runs": 10,
|
| 14 |
+
"settings": {
|
| 15 |
+
"dtype": "bfloat16",
|
| 16 |
+
"guidance": 3.5,
|
| 17 |
+
"height": 1024,
|
| 18 |
+
"is_distilled": false,
|
| 19 |
+
"seed_base": 61000,
|
| 20 |
+
"steps": 52,
|
| 21 |
+
"width": 1024
|
| 22 |
+
}
|
| 23 |
+
}
|
benchmark/sdnq.metrics.csv
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
category,elapsed_seconds,first_generation_seconds,gen_peak_nvidia_smi_mb,gen_torch_allocated_mb,gen_torch_peak_allocated_mb,gen_torch_peak_reserved_mb,gen_torch_reserved_mb,guidance,height,hot_max_seconds,hot_mean_seconds,image_path,is_distilled,label,load_peak_nvidia_smi_mb,load_seconds,load_torch_allocated_mb,load_torch_peak_allocated_mb,load_torch_peak_reserved_mb,load_torch_reserved_mb,maxrss_mb,model,model_key,prompt,prompt_id,prompt_idx,quantized,run_idx,seed,steps,width
|
| 2 |
+
product detail,160.9345742147416,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,160.9345742147416,160.9345742147416,results/benchmark/raw/uint4-static-transformer-only/images/p00-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A precise studio product photograph of a translucent graphite espresso machine on a brushed steel counter, tiny engraved labels, clean reflections, realistic materials, sharp edges",studio-product,0,True,0,61000,52,1024
|
| 3 |
+
portrait,157.4271422624588,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.4271422624588,157.4271422624588,results/benchmark/raw/uint4-static-transformer-only/images/p01-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A natural-light portrait of a sleep-deprived spacecraft mechanic in a cramped orbital workshop, believable skin, oil stains, soft window light, shallow depth of field",human-portrait,1,True,0,61001,52,1024
|
| 4 |
+
public-domain artist style,157.42446030303836,160.9345742147416,26788,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.4271422624588,157.42580128274858,results/benchmark/raw/uint4-static-transformer-only/images/p02-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A public-domain Alphonse Mucha inspired Art Nouveau theater poster for a fictional moon observatory, ornate floral border, elegant flat colors, decorative halo, readable title MOON GARDEN",mucha-poster,2,True,0,61002,52,1024
|
| 5 |
+
public-domain artist style,157.45691105537117,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.45691105537117,157.43617120695612,results/benchmark/raw/uint4-static-transformer-only/images/p03-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A public-domain Hokusai inspired woodblock print of a compact electric ferry crossing a stormy canal, bold wave shapes, limited ink colors, paper grain, tiny passengers visible",hokusai-wave,3,True,0,61003,52,1024
|
| 6 |
+
popular image style,157.41188778728247,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.45691105537117,157.4301003520377,results/benchmark/raw/uint4-static-transformer-only/images/p04-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A Bauhaus risograph exhibition poster, strict red blue yellow geometry, off-register ink, grainy paper, bold sans-serif headline SYSTEM FORM, small schedule text and ticket numbers",bauhaus-risograph,4,True,0,61004,52,1024
|
| 7 |
+
technical diagram,157.43043367564678,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.45691105537117,157.43016701675953,results/benchmark/raw/uint4-static-transformer-only/images/p05-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A clean technical cutaway diagram of a compact hydrogen ferry drivetrain, readable labels, arrows, exploded components, white background, exact industrial illustration",technical-cutaway,5,True,0,61005,52,1024
|
| 8 |
+
long Latin text,157.40169668756425,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.45691105537117,157.42542196189365,results/benchmark/raw/uint4-static-transformer-only/images/p06-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A large chalkboard in a design studio with one continuous readable paragraph written in careful white chalk: The prototype must remain quiet under load, preserve every user setting, recover from failed uploads, and report exact timing numbers before anyone calls the experiment finished.",long-latin-text,6,True,0,61006,52,1024
|
| 9 |
+
long Cyrillic text,157.41716648079455,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.45691105537117,157.4242426074509,results/benchmark/raw/uint4-static-transformer-only/images/p07-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"Большая школьная доска в светлой аудитории, на ней аккуратно мелом написан длинный русский текст: Квантованная модель должна сохранять композицию, не ломать мелкие подписи, честно показывать скорость и память, а все артефакты нужно проверить перед публикацией.",long-cyrillic-text,7,True,0,61007,52,1024
|
| 10 |
+
mixed Latin Cyrillic diagram,157.40546470880508,160.9345742147416,26788,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.45691105537117,157.42189537012018,results/benchmark/raw/uint4-static-transformer-only/images/p08-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A bilingual technical wall chart mixing English and Russian labels: INPUT LATENTS, scheduler, трансформер, text encoder, VAE decoder, output image; neat arrows, small legends, clean grid, readable typography",mixed-diagram,8,True,0,61008,52,1024
|
| 11 |
+
scene composition,157.42380393855274,160.9345742147416,26229,15722.96142578125,25272.396484375,25558.0,25558.0,3.5,1024,157.45691105537117,157.42210743327936,results/benchmark/raw/uint4-static-transformer-only/images/p09-r00.png,False,uint4-static-transformer-only,16041,5.954131867736578,15714.83544921875,15714.83544921875,15730.0,15730.0,6671.43359375,checkpoints/raw/uint4-static-transformer-only,raw,"A rainy evening street in Warsaw seen through a tram window, neon signs reflected in wet asphalt, cyclists, kiosks, apartment balconies, cinematic realism without oversaturation",wide-city-scene,9,True,0,61009,52,1024
|
benchmark/sdnq.metrics.jsonl
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"category": "product detail", "elapsed_seconds": 160.9345742147416, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 160.9345742147416, "hot_mean_seconds": 160.9345742147416, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p00-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A precise studio product photograph of a translucent graphite espresso machine on a brushed steel counter, tiny engraved labels, clean reflections, realistic materials, sharp edges", "prompt_id": "studio-product", "prompt_idx": 0, "quantized": true, "run_idx": 0, "seed": 61000, "steps": 52, "width": 1024}
|
| 2 |
+
{"category": "portrait", "elapsed_seconds": 157.4271422624588, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.4271422624588, "hot_mean_seconds": 157.4271422624588, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p01-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A natural-light portrait of a sleep-deprived spacecraft mechanic in a cramped orbital workshop, believable skin, oil stains, soft window light, shallow depth of field", "prompt_id": "human-portrait", "prompt_idx": 1, "quantized": true, "run_idx": 0, "seed": 61001, "steps": 52, "width": 1024}
|
| 3 |
+
{"category": "public-domain artist style", "elapsed_seconds": 157.42446030303836, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26788, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.4271422624588, "hot_mean_seconds": 157.42580128274858, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p02-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A public-domain Alphonse Mucha inspired Art Nouveau theater poster for a fictional moon observatory, ornate floral border, elegant flat colors, decorative halo, readable title MOON GARDEN", "prompt_id": "mucha-poster", "prompt_idx": 2, "quantized": true, "run_idx": 0, "seed": 61002, "steps": 52, "width": 1024}
|
| 4 |
+
{"category": "public-domain artist style", "elapsed_seconds": 157.45691105537117, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.45691105537117, "hot_mean_seconds": 157.43617120695612, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p03-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A public-domain Hokusai inspired woodblock print of a compact electric ferry crossing a stormy canal, bold wave shapes, limited ink colors, paper grain, tiny passengers visible", "prompt_id": "hokusai-wave", "prompt_idx": 3, "quantized": true, "run_idx": 0, "seed": 61003, "steps": 52, "width": 1024}
|
| 5 |
+
{"category": "popular image style", "elapsed_seconds": 157.41188778728247, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.45691105537117, "hot_mean_seconds": 157.4301003520377, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p04-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A Bauhaus risograph exhibition poster, strict red blue yellow geometry, off-register ink, grainy paper, bold sans-serif headline SYSTEM FORM, small schedule text and ticket numbers", "prompt_id": "bauhaus-risograph", "prompt_idx": 4, "quantized": true, "run_idx": 0, "seed": 61004, "steps": 52, "width": 1024}
|
| 6 |
+
{"category": "technical diagram", "elapsed_seconds": 157.43043367564678, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.45691105537117, "hot_mean_seconds": 157.43016701675953, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p05-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A clean technical cutaway diagram of a compact hydrogen ferry drivetrain, readable labels, arrows, exploded components, white background, exact industrial illustration", "prompt_id": "technical-cutaway", "prompt_idx": 5, "quantized": true, "run_idx": 0, "seed": 61005, "steps": 52, "width": 1024}
|
| 7 |
+
{"category": "long Latin text", "elapsed_seconds": 157.40169668756425, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.45691105537117, "hot_mean_seconds": 157.42542196189365, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p06-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A large chalkboard in a design studio with one continuous readable paragraph written in careful white chalk: The prototype must remain quiet under load, preserve every user setting, recover from failed uploads, and report exact timing numbers before anyone calls the experiment finished.", "prompt_id": "long-latin-text", "prompt_idx": 6, "quantized": true, "run_idx": 0, "seed": 61006, "steps": 52, "width": 1024}
|
| 8 |
+
{"category": "long Cyrillic text", "elapsed_seconds": 157.41716648079455, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.45691105537117, "hot_mean_seconds": 157.4242426074509, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p07-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "Большая школьная доска в светлой аудитории, на ней аккуратно мелом написан длинный русский текст: Квантованная модель должна сохранять композицию, не ломать мелкие подписи, честно показывать скорость и память, а все артефакты нужно проверить перед публикацией.", "prompt_id": "long-cyrillic-text", "prompt_idx": 7, "quantized": true, "run_idx": 0, "seed": 61007, "steps": 52, "width": 1024}
|
| 9 |
+
{"category": "mixed Latin Cyrillic diagram", "elapsed_seconds": 157.40546470880508, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26788, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.45691105537117, "hot_mean_seconds": 157.42189537012018, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p08-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A bilingual technical wall chart mixing English and Russian labels: INPUT LATENTS, scheduler, трансформер, text encoder, VAE decoder, output image; neat arrows, small legends, clean grid, readable typography", "prompt_id": "mixed-diagram", "prompt_idx": 8, "quantized": true, "run_idx": 0, "seed": 61008, "steps": 52, "width": 1024}
|
| 10 |
+
{"category": "scene composition", "elapsed_seconds": 157.42380393855274, "first_generation_seconds": 160.9345742147416, "gen_peak_nvidia_smi_mb": 26229, "gen_torch_allocated_mb": 15722.96142578125, "gen_torch_peak_allocated_mb": 25272.396484375, "gen_torch_peak_reserved_mb": 25558.0, "gen_torch_reserved_mb": 25558.0, "guidance": 3.5, "height": 1024, "hot_max_seconds": 157.45691105537117, "hot_mean_seconds": 157.42210743327936, "image_path": "results/benchmark/raw/uint4-static-transformer-only/images/p09-r00.png", "is_distilled": false, "label": "uint4-static-transformer-only", "load_peak_nvidia_smi_mb": 16041, "load_seconds": 5.954131867736578, "load_torch_allocated_mb": 15714.83544921875, "load_torch_peak_allocated_mb": 15714.83544921875, "load_torch_peak_reserved_mb": 15730.0, "load_torch_reserved_mb": 15730.0, "maxrss_mb": 6671.43359375, "model": "checkpoints/raw/uint4-static-transformer-only", "model_key": "raw", "prompt": "A rainy evening street in Warsaw seen through a tram window, neon signs reflected in wet asphalt, cyclists, kiosks, apartment balconies, cinematic realism without oversaturation", "prompt_id": "wide-city-scene", "prompt_idx": 9, "quantized": true, "run_idx": 0, "seed": 61009, "steps": 52, "width": 1024}
|
benchmark/sdnq.summary.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"first_generation_seconds": 160.9345742147416,
|
| 3 |
+
"gen_peak_nvidia_smi_mb": 26788,
|
| 4 |
+
"gen_torch_peak_allocated_mb": 25272.396484375,
|
| 5 |
+
"gen_torch_peak_reserved_mb": 25558.0,
|
| 6 |
+
"hot_max_seconds": 157.45691105537117,
|
| 7 |
+
"hot_mean_seconds": 157.42210743327936,
|
| 8 |
+
"label": "uint4-static-transformer-only",
|
| 9 |
+
"maxrss_mb": 6671.43359375,
|
| 10 |
+
"model": "checkpoints/raw/uint4-static-transformer-only",
|
| 11 |
+
"model_key": "raw",
|
| 12 |
+
"prompt_count": 10,
|
| 13 |
+
"runs": 10,
|
| 14 |
+
"settings": {
|
| 15 |
+
"dtype": "bfloat16",
|
| 16 |
+
"guidance": 3.5,
|
| 17 |
+
"height": 1024,
|
| 18 |
+
"is_distilled": false,
|
| 19 |
+
"seed_base": 61000,
|
| 20 |
+
"steps": 52,
|
| 21 |
+
"width": 1024
|
| 22 |
+
}
|
| 23 |
+
}
|
benchmark/smoke-findings.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_key": "raw",
|
| 3 |
+
"candidates": [
|
| 4 |
+
{"variant": "uint4-static-transformer-text", "status": "invalid", "reason": "Krea2Pipeline standard load delegates text_encoder to Transformers Qwen3VLModel; SDNQ-packed text_encoder weights produce mismatched shapes and fail load."},
|
| 5 |
+
{"variant": "uint4-static-transformer-only", "status": "ok", "reason": "Quantized checkpoint loads through Krea2Pipeline after importing sdnq.SDNQConfig and generates a smoke image."},
|
| 6 |
+
{"variant": "uint4-dynamic-th0p01-svd-r32-transformer-text", "status": "invalid", "reason": "Contains SDNQ-packed text_encoder, same loader incompatibility as uint4-static-transformer-text."},
|
| 7 |
+
{"variant": "uint4-static-transformer-text-vae", "status": "invalid", "reason": "Contains SDNQ-packed text_encoder, same loader incompatibility as uint4-static-transformer-text."}
|
| 8 |
+
],
|
| 9 |
+
"selected": "uint4-static-transformer-only"
|
| 10 |
+
}
|
benchmark/summary.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model": "krea/Krea-2-Raw",
|
| 3 |
+
"model_key": "raw",
|
| 4 |
+
"official_inference_settings": {
|
| 5 |
+
"attention_backend": "diffusers native attention",
|
| 6 |
+
"dtype": "bfloat16",
|
| 7 |
+
"guidance": 3.5,
|
| 8 |
+
"height": 1024,
|
| 9 |
+
"is_distilled": false,
|
| 10 |
+
"seed_base": 61000,
|
| 11 |
+
"steps": 52,
|
| 12 |
+
"width": 1024
|
| 13 |
+
},
|
| 14 |
+
"original": {
|
| 15 |
+
"first_generation_seconds": 163.73263843916357,
|
| 16 |
+
"gen_peak_nvidia_smi_mb": 44154,
|
| 17 |
+
"gen_torch_peak_allocated_mb": 42717.1767578125,
|
| 18 |
+
"gen_torch_peak_reserved_mb": 42926.0,
|
| 19 |
+
"hot_max_seconds": 163.4224559403956,
|
| 20 |
+
"hot_mean_seconds": 163.40291814009348,
|
| 21 |
+
"label": "original",
|
| 22 |
+
"load_peak_nvidia_smi_mb": 33487,
|
| 23 |
+
"load_seconds": 8.442133091390133,
|
| 24 |
+
"load_torch_peak_allocated_mb": 33159.61572265625,
|
| 25 |
+
"load_torch_peak_reserved_mb": 33178.0,
|
| 26 |
+
"maxrss_mb": 11368.7109375,
|
| 27 |
+
"model": "krea/Krea-2-Raw",
|
| 28 |
+
"model_key": "raw",
|
| 29 |
+
"prompt_count": 10,
|
| 30 |
+
"runs": 10,
|
| 31 |
+
"settings": {
|
| 32 |
+
"dtype": "bfloat16",
|
| 33 |
+
"guidance": 3.5,
|
| 34 |
+
"height": 1024,
|
| 35 |
+
"is_distilled": false,
|
| 36 |
+
"seed_base": 61000,
|
| 37 |
+
"steps": 52,
|
| 38 |
+
"width": 1024
|
| 39 |
+
}
|
| 40 |
+
},
|
| 41 |
+
"sdnq": {
|
| 42 |
+
"first_generation_seconds": 160.9345742147416,
|
| 43 |
+
"gen_peak_nvidia_smi_mb": 26788,
|
| 44 |
+
"gen_torch_peak_allocated_mb": 25272.396484375,
|
| 45 |
+
"gen_torch_peak_reserved_mb": 25558.0,
|
| 46 |
+
"hot_max_seconds": 157.45691105537117,
|
| 47 |
+
"hot_mean_seconds": 157.42210743327936,
|
| 48 |
+
"label": "uint4-static-transformer-only",
|
| 49 |
+
"load_peak_nvidia_smi_mb": 16041,
|
| 50 |
+
"load_seconds": 5.954131867736578,
|
| 51 |
+
"load_torch_peak_allocated_mb": 15714.83544921875,
|
| 52 |
+
"load_torch_peak_reserved_mb": 15730.0,
|
| 53 |
+
"local_model_size_bytes": 16489951772,
|
| 54 |
+
"local_model_size_gb": 15.357464339584112,
|
| 55 |
+
"maxrss_mb": 6671.43359375,
|
| 56 |
+
"model": "checkpoints/raw/uint4-static-transformer-only",
|
| 57 |
+
"model_key": "raw",
|
| 58 |
+
"prompt_count": 10,
|
| 59 |
+
"runs": 10,
|
| 60 |
+
"settings": {
|
| 61 |
+
"dtype": "bfloat16",
|
| 62 |
+
"guidance": 3.5,
|
| 63 |
+
"height": 1024,
|
| 64 |
+
"is_distilled": false,
|
| 65 |
+
"seed_base": 61000,
|
| 66 |
+
"steps": 52,
|
| 67 |
+
"width": 1024
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
"target_repo": "WaveCut/Krea-2-Raw-SDNQ-uint4",
|
| 71 |
+
"variant": "uint4-static-transformer-only"
|
| 72 |
+
}
|
lab_metadata.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"finished_at": "2026-06-24T10:37:12Z",
|
| 3 |
+
"maxrss_mb": 45018.34375,
|
| 4 |
+
"model_key": "raw",
|
| 5 |
+
"quantize_peak_nvidia_smi_mb": 3089,
|
| 6 |
+
"quantize_seconds": 8.158692993223667,
|
| 7 |
+
"source_model": "krea/Krea-2-Raw",
|
| 8 |
+
"started_at": "2026-06-24T10:37:04Z",
|
| 9 |
+
"target_repo": "WaveCut/Krea-2-Raw-SDNQ-uint4",
|
| 10 |
+
"variant": {
|
| 11 |
+
"dynamic_loss_threshold": null,
|
| 12 |
+
"modules": [
|
| 13 |
+
"transformer"
|
| 14 |
+
],
|
| 15 |
+
"name": "uint4-static-transformer-only",
|
| 16 |
+
"quant_conv": false,
|
| 17 |
+
"quant_embedding": false,
|
| 18 |
+
"svd_rank": 32,
|
| 19 |
+
"svd_steps": 32,
|
| 20 |
+
"use_dynamic_quantization": false,
|
| 21 |
+
"use_svd": false,
|
| 22 |
+
"weights_dtype": "uint4"
|
| 23 |
+
}
|
| 24 |
+
}
|
model_index.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "Krea2Pipeline",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"_name_or_path": "krea/Krea-2-Raw",
|
| 5 |
+
"is_distilled": false,
|
| 6 |
+
"patch_size": 2,
|
| 7 |
+
"scheduler": [
|
| 8 |
+
"diffusers",
|
| 9 |
+
"FlowMatchEulerDiscreteScheduler"
|
| 10 |
+
],
|
| 11 |
+
"text_encoder": [
|
| 12 |
+
"transformers",
|
| 13 |
+
"Qwen3VLModel"
|
| 14 |
+
],
|
| 15 |
+
"text_encoder_select_layers": [
|
| 16 |
+
2,
|
| 17 |
+
5,
|
| 18 |
+
8,
|
| 19 |
+
11,
|
| 20 |
+
14,
|
| 21 |
+
17,
|
| 22 |
+
20,
|
| 23 |
+
23,
|
| 24 |
+
26,
|
| 25 |
+
29,
|
| 26 |
+
32,
|
| 27 |
+
35
|
| 28 |
+
],
|
| 29 |
+
"tokenizer": [
|
| 30 |
+
"transformers",
|
| 31 |
+
"Qwen2Tokenizer"
|
| 32 |
+
],
|
| 33 |
+
"transformer": [
|
| 34 |
+
"diffusers",
|
| 35 |
+
"Krea2Transformer2DModel"
|
| 36 |
+
],
|
| 37 |
+
"vae": [
|
| 38 |
+
"diffusers",
|
| 39 |
+
"AutoencoderKLQwenImage"
|
| 40 |
+
]
|
| 41 |
+
}
|
prompts.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"category": "product detail",
|
| 4 |
+
"id": "studio-product",
|
| 5 |
+
"prompt": "A precise studio product photograph of a translucent graphite espresso machine on a brushed steel counter, tiny engraved labels, clean reflections, realistic materials, sharp edges"
|
| 6 |
+
},
|
| 7 |
+
{
|
| 8 |
+
"category": "portrait",
|
| 9 |
+
"id": "human-portrait",
|
| 10 |
+
"prompt": "A natural-light portrait of a sleep-deprived spacecraft mechanic in a cramped orbital workshop, believable skin, oil stains, soft window light, shallow depth of field"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"category": "public-domain artist style",
|
| 14 |
+
"id": "mucha-poster",
|
| 15 |
+
"prompt": "A public-domain Alphonse Mucha inspired Art Nouveau theater poster for a fictional moon observatory, ornate floral border, elegant flat colors, decorative halo, readable title MOON GARDEN"
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"category": "public-domain artist style",
|
| 19 |
+
"id": "hokusai-wave",
|
| 20 |
+
"prompt": "A public-domain Hokusai inspired woodblock print of a compact electric ferry crossing a stormy canal, bold wave shapes, limited ink colors, paper grain, tiny passengers visible"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"category": "popular image style",
|
| 24 |
+
"id": "bauhaus-risograph",
|
| 25 |
+
"prompt": "A Bauhaus risograph exhibition poster, strict red blue yellow geometry, off-register ink, grainy paper, bold sans-serif headline SYSTEM FORM, small schedule text and ticket numbers"
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"category": "technical diagram",
|
| 29 |
+
"id": "technical-cutaway",
|
| 30 |
+
"prompt": "A clean technical cutaway diagram of a compact hydrogen ferry drivetrain, readable labels, arrows, exploded components, white background, exact industrial illustration"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"category": "long Latin text",
|
| 34 |
+
"id": "long-latin-text",
|
| 35 |
+
"prompt": "A large chalkboard in a design studio with one continuous readable paragraph written in careful white chalk: The prototype must remain quiet under load, preserve every user setting, recover from failed uploads, and report exact timing numbers before anyone calls the experiment finished."
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"category": "long Cyrillic text",
|
| 39 |
+
"id": "long-cyrillic-text",
|
| 40 |
+
"prompt": "Большая школьная доска в светлой аудитории, на ней аккуратно мелом написан длинный русский текст: Квантованная модель должна сохранять композицию, не ломать мелкие подписи, честно показывать скорость и память, а все артефакты нужно проверить перед публикацией."
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"category": "mixed Latin Cyrillic diagram",
|
| 44 |
+
"id": "mixed-diagram",
|
| 45 |
+
"prompt": "A bilingual technical wall chart mixing English and Russian labels: INPUT LATENTS, scheduler, трансформер, text encoder, VAE decoder, output image; neat arrows, small legends, clean grid, readable typography"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"category": "scene composition",
|
| 49 |
+
"id": "wide-city-scene",
|
| 50 |
+
"prompt": "A rainy evening street in Warsaw seen through a tram window, neon signs reflected in wet asphalt, cyclists, kiosks, apartment balconies, cinematic realism without oversaturation"
|
| 51 |
+
}
|
| 52 |
+
]
|
quantization_manifest.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"attention_backend": "diffusers native attention",
|
| 3 |
+
"base_model": "krea/Krea-2-Raw",
|
| 4 |
+
"base_model_relation": "quantized",
|
| 5 |
+
"benchmark_summary_path": "benchmark/summary.json",
|
| 6 |
+
"comparison_grid": "assets/original_vs_sdnq_raw.webp",
|
| 7 |
+
"model_key": "raw",
|
| 8 |
+
"official_inference_settings": {
|
| 9 |
+
"attention_backend": "diffusers native attention",
|
| 10 |
+
"dtype": "bfloat16",
|
| 11 |
+
"guidance": 3.5,
|
| 12 |
+
"height": 1024,
|
| 13 |
+
"is_distilled": false,
|
| 14 |
+
"seed_base": 61000,
|
| 15 |
+
"steps": 52,
|
| 16 |
+
"width": 1024
|
| 17 |
+
},
|
| 18 |
+
"packaged_at": "2026-06-24T12:21:22Z",
|
| 19 |
+
"prompt_count": 10,
|
| 20 |
+
"quantized_checkpoint_size_bytes": 16489951772,
|
| 21 |
+
"quantized_checkpoint_size_gb": 15.357464339584112,
|
| 22 |
+
"quantized_components": [
|
| 23 |
+
"transformer"
|
| 24 |
+
],
|
| 25 |
+
"quantizer": "SDNQ",
|
| 26 |
+
"release_size_bytes": 16515862739,
|
| 27 |
+
"release_size_gb": 15.381595808081329,
|
| 28 |
+
"target_repo": "WaveCut/Krea-2-Raw-SDNQ-uint4",
|
| 29 |
+
"unquantized_pipeline_components": [
|
| 30 |
+
"scheduler",
|
| 31 |
+
"tokenizer",
|
| 32 |
+
"text_encoder",
|
| 33 |
+
"vae"
|
| 34 |
+
],
|
| 35 |
+
"upstream_license_files": [
|
| 36 |
+
"LICENSE.pdf"
|
| 37 |
+
],
|
| 38 |
+
"variant": {
|
| 39 |
+
"dynamic_loss_threshold": null,
|
| 40 |
+
"modules": [
|
| 41 |
+
"transformer"
|
| 42 |
+
],
|
| 43 |
+
"name": "uint4-static-transformer-only",
|
| 44 |
+
"quant_conv": false,
|
| 45 |
+
"quant_embedding": false,
|
| 46 |
+
"svd_rank": 32,
|
| 47 |
+
"svd_steps": 32,
|
| 48 |
+
"use_dynamic_quantization": false,
|
| 49 |
+
"use_svd": false,
|
| 50 |
+
"weights_dtype": "uint4"
|
| 51 |
+
},
|
| 52 |
+
"weights_dtype": "uint4"
|
| 53 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "FlowMatchEulerDiscreteScheduler",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"base_image_seq_len": 256,
|
| 5 |
+
"base_shift": 0.5,
|
| 6 |
+
"invert_sigmas": false,
|
| 7 |
+
"max_image_seq_len": 6400,
|
| 8 |
+
"max_shift": 1.15,
|
| 9 |
+
"num_train_timesteps": 1000,
|
| 10 |
+
"shift": 1.0,
|
| 11 |
+
"shift_terminal": null,
|
| 12 |
+
"stochastic_sampling": false,
|
| 13 |
+
"time_shift_type": "exponential",
|
| 14 |
+
"use_beta_sigmas": false,
|
| 15 |
+
"use_dynamic_shifting": true,
|
| 16 |
+
"use_exponential_sigmas": false,
|
| 17 |
+
"use_karras_sigmas": false
|
| 18 |
+
}
|
text_encoder/config.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3VLModel"
|
| 4 |
+
],
|
| 5 |
+
"dtype": "bfloat16",
|
| 6 |
+
"image_token_id": 151655,
|
| 7 |
+
"model_type": "qwen3_vl",
|
| 8 |
+
"text_config": {
|
| 9 |
+
"attention_bias": false,
|
| 10 |
+
"attention_dropout": 0.0,
|
| 11 |
+
"bos_token_id": 151643,
|
| 12 |
+
"dtype": "bfloat16",
|
| 13 |
+
"eos_token_id": 151645,
|
| 14 |
+
"head_dim": 128,
|
| 15 |
+
"hidden_act": "silu",
|
| 16 |
+
"hidden_size": 2560,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 9728,
|
| 19 |
+
"max_position_embeddings": 262144,
|
| 20 |
+
"model_type": "qwen3_vl_text",
|
| 21 |
+
"num_attention_heads": 32,
|
| 22 |
+
"num_hidden_layers": 36,
|
| 23 |
+
"num_key_value_heads": 8,
|
| 24 |
+
"pad_token_id": null,
|
| 25 |
+
"rms_norm_eps": 1e-06,
|
| 26 |
+
"rope_parameters": {
|
| 27 |
+
"mrope_interleaved": true,
|
| 28 |
+
"mrope_section": [
|
| 29 |
+
24,
|
| 30 |
+
20,
|
| 31 |
+
20
|
| 32 |
+
],
|
| 33 |
+
"rope_theta": 5000000,
|
| 34 |
+
"rope_type": "default"
|
| 35 |
+
},
|
| 36 |
+
"tie_word_embeddings": true,
|
| 37 |
+
"use_cache": true,
|
| 38 |
+
"vocab_size": 151936
|
| 39 |
+
},
|
| 40 |
+
"tie_word_embeddings": true,
|
| 41 |
+
"transformers_version": "5.13.0.dev0",
|
| 42 |
+
"video_token_id": 151656,
|
| 43 |
+
"vision_config": {
|
| 44 |
+
"deepstack_visual_indexes": [
|
| 45 |
+
5,
|
| 46 |
+
11,
|
| 47 |
+
17
|
| 48 |
+
],
|
| 49 |
+
"depth": 24,
|
| 50 |
+
"dtype": "bfloat16",
|
| 51 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 52 |
+
"hidden_size": 1024,
|
| 53 |
+
"in_channels": 3,
|
| 54 |
+
"initializer_range": 0.02,
|
| 55 |
+
"intermediate_size": 4096,
|
| 56 |
+
"model_type": "qwen3_vl_vision",
|
| 57 |
+
"num_heads": 16,
|
| 58 |
+
"num_position_embeddings": 2304,
|
| 59 |
+
"out_hidden_size": 2560,
|
| 60 |
+
"patch_size": 16,
|
| 61 |
+
"spatial_merge_size": 2,
|
| 62 |
+
"temporal_patch_size": 2
|
| 63 |
+
},
|
| 64 |
+
"vision_end_token_id": 151653,
|
| 65 |
+
"vision_start_token_id": 151652
|
| 66 |
+
}
|
text_encoder/model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fec40067096de026596f71f00f947b30d2730f8416da03059c44a28b85741122
|
| 3 |
+
size 4990820744
|
text_encoder/model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ffbd61087fb0e41b40f37e7f0b2a36c93112974303499c14c15c5d97a93db991
|
| 3 |
+
size 3884894312
|
text_encoder/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,721 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 4437815808,
|
| 4 |
+
"total_size": 8875631616
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"language_model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"language_model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"language_model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"language_model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"language_model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"language_model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"language_model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"language_model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"language_model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"language_model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"language_model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"language_model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"language_model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"language_model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"language_model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"language_model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"language_model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"language_model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"language_model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"language_model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"language_model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"language_model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"language_model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"language_model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"language_model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"language_model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"language_model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"language_model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"language_model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"language_model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"language_model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"language_model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"language_model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"language_model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"language_model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"language_model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"language_model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"language_model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"language_model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"language_model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"language_model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"language_model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 49 |
+
"language_model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"language_model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"language_model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 52 |
+
"language_model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"language_model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 54 |
+
"language_model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"language_model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"language_model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"language_model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"language_model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"language_model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"language_model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 61 |
+
"language_model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"language_model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"language_model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 64 |
+
"language_model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"language_model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 66 |
+
"language_model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"language_model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"language_model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"language_model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"language_model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"language_model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 72 |
+
"language_model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 73 |
+
"language_model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"language_model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 75 |
+
"language_model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 76 |
+
"language_model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"language_model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 78 |
+
"language_model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"language_model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"language_model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 81 |
+
"language_model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
+
"language_model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 83 |
+
"language_model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 84 |
+
"language_model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 85 |
+
"language_model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 86 |
+
"language_model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 87 |
+
"language_model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 88 |
+
"language_model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
+
"language_model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 90 |
+
"language_model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 91 |
+
"language_model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 92 |
+
"language_model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
+
"language_model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 94 |
+
"language_model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 95 |
+
"language_model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 96 |
+
"language_model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 97 |
+
"language_model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 98 |
+
"language_model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"language_model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 100 |
+
"language_model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"language_model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 102 |
+
"language_model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"language_model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"language_model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"language_model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"language_model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"language_model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"language_model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 109 |
+
"language_model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"language_model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"language_model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 112 |
+
"language_model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 113 |
+
"language_model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 114 |
+
"language_model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"language_model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"language_model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"language_model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"language_model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"language_model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 120 |
+
"language_model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 121 |
+
"language_model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 122 |
+
"language_model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 123 |
+
"language_model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 124 |
+
"language_model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 125 |
+
"language_model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 126 |
+
"language_model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 127 |
+
"language_model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 128 |
+
"language_model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 129 |
+
"language_model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 130 |
+
"language_model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 131 |
+
"language_model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 132 |
+
"language_model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 133 |
+
"language_model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 134 |
+
"language_model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 135 |
+
"language_model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 136 |
+
"language_model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 137 |
+
"language_model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 138 |
+
"language_model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 139 |
+
"language_model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 140 |
+
"language_model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 141 |
+
"language_model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 142 |
+
"language_model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 143 |
+
"language_model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 144 |
+
"language_model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 145 |
+
"language_model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 146 |
+
"language_model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 147 |
+
"language_model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 148 |
+
"language_model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 149 |
+
"language_model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 150 |
+
"language_model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
+
"language_model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 152 |
+
"language_model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 153 |
+
"language_model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 154 |
+
"language_model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 155 |
+
"language_model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 156 |
+
"language_model.layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 157 |
+
"language_model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 158 |
+
"language_model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 159 |
+
"language_model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 160 |
+
"language_model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 161 |
+
"language_model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 162 |
+
"language_model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 163 |
+
"language_model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 164 |
+
"language_model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 165 |
+
"language_model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 166 |
+
"language_model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 167 |
+
"language_model.layers.21.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 168 |
+
"language_model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 169 |
+
"language_model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 170 |
+
"language_model.layers.21.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 171 |
+
"language_model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 172 |
+
"language_model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 173 |
+
"language_model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 174 |
+
"language_model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 175 |
+
"language_model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 176 |
+
"language_model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 177 |
+
"language_model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 178 |
+
"language_model.layers.22.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 179 |
+
"language_model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 180 |
+
"language_model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 181 |
+
"language_model.layers.22.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 182 |
+
"language_model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 183 |
+
"language_model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 184 |
+
"language_model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 185 |
+
"language_model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 186 |
+
"language_model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 187 |
+
"language_model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 188 |
+
"language_model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 189 |
+
"language_model.layers.23.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 190 |
+
"language_model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 191 |
+
"language_model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 192 |
+
"language_model.layers.23.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 193 |
+
"language_model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 194 |
+
"language_model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 195 |
+
"language_model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 196 |
+
"language_model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 197 |
+
"language_model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 198 |
+
"language_model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 199 |
+
"language_model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 200 |
+
"language_model.layers.24.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 201 |
+
"language_model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 202 |
+
"language_model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 203 |
+
"language_model.layers.24.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 204 |
+
"language_model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 205 |
+
"language_model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 206 |
+
"language_model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 207 |
+
"language_model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 208 |
+
"language_model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 209 |
+
"language_model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 210 |
+
"language_model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 211 |
+
"language_model.layers.25.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 212 |
+
"language_model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 213 |
+
"language_model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 214 |
+
"language_model.layers.25.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 215 |
+
"language_model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 216 |
+
"language_model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 217 |
+
"language_model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 218 |
+
"language_model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 219 |
+
"language_model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 220 |
+
"language_model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 221 |
+
"language_model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 222 |
+
"language_model.layers.26.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 223 |
+
"language_model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 224 |
+
"language_model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 225 |
+
"language_model.layers.26.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 226 |
+
"language_model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 227 |
+
"language_model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 228 |
+
"language_model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 229 |
+
"language_model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 230 |
+
"language_model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 231 |
+
"language_model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 232 |
+
"language_model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 233 |
+
"language_model.layers.27.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 234 |
+
"language_model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 235 |
+
"language_model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 236 |
+
"language_model.layers.27.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 237 |
+
"language_model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 238 |
+
"language_model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 239 |
+
"language_model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 240 |
+
"language_model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 241 |
+
"language_model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 242 |
+
"language_model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 243 |
+
"language_model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 244 |
+
"language_model.layers.28.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 245 |
+
"language_model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 246 |
+
"language_model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 247 |
+
"language_model.layers.28.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 248 |
+
"language_model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 249 |
+
"language_model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 250 |
+
"language_model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 251 |
+
"language_model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 252 |
+
"language_model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 253 |
+
"language_model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 254 |
+
"language_model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 255 |
+
"language_model.layers.29.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 256 |
+
"language_model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 257 |
+
"language_model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 258 |
+
"language_model.layers.29.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 259 |
+
"language_model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 260 |
+
"language_model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 261 |
+
"language_model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 262 |
+
"language_model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 263 |
+
"language_model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 264 |
+
"language_model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 265 |
+
"language_model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"language_model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"language_model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 268 |
+
"language_model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"language_model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 270 |
+
"language_model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"language_model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 272 |
+
"language_model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 273 |
+
"language_model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 274 |
+
"language_model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 275 |
+
"language_model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 276 |
+
"language_model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 277 |
+
"language_model.layers.30.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 278 |
+
"language_model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 279 |
+
"language_model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 280 |
+
"language_model.layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 281 |
+
"language_model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 282 |
+
"language_model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 283 |
+
"language_model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 284 |
+
"language_model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 285 |
+
"language_model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 286 |
+
"language_model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 287 |
+
"language_model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 288 |
+
"language_model.layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 289 |
+
"language_model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 290 |
+
"language_model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 291 |
+
"language_model.layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 292 |
+
"language_model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 293 |
+
"language_model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 294 |
+
"language_model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 295 |
+
"language_model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 296 |
+
"language_model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 297 |
+
"language_model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 298 |
+
"language_model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 299 |
+
"language_model.layers.32.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 300 |
+
"language_model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 301 |
+
"language_model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 302 |
+
"language_model.layers.32.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 303 |
+
"language_model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 304 |
+
"language_model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 305 |
+
"language_model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 306 |
+
"language_model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 307 |
+
"language_model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 308 |
+
"language_model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 309 |
+
"language_model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 310 |
+
"language_model.layers.33.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 311 |
+
"language_model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 312 |
+
"language_model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 313 |
+
"language_model.layers.33.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 314 |
+
"language_model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 315 |
+
"language_model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 316 |
+
"language_model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 317 |
+
"language_model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 318 |
+
"language_model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 319 |
+
"language_model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 320 |
+
"language_model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 321 |
+
"language_model.layers.34.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 322 |
+
"language_model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 323 |
+
"language_model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 324 |
+
"language_model.layers.34.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 325 |
+
"language_model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 326 |
+
"language_model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 327 |
+
"language_model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 328 |
+
"language_model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 329 |
+
"language_model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 330 |
+
"language_model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 331 |
+
"language_model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 332 |
+
"language_model.layers.35.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 333 |
+
"language_model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 334 |
+
"language_model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 335 |
+
"language_model.layers.35.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 336 |
+
"language_model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 337 |
+
"language_model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 338 |
+
"language_model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 339 |
+
"language_model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 340 |
+
"language_model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 341 |
+
"language_model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 342 |
+
"language_model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 343 |
+
"language_model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 344 |
+
"language_model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 345 |
+
"language_model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 346 |
+
"language_model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 347 |
+
"language_model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 348 |
+
"language_model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 349 |
+
"language_model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 350 |
+
"language_model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 351 |
+
"language_model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 352 |
+
"language_model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 353 |
+
"language_model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 354 |
+
"language_model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 355 |
+
"language_model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 356 |
+
"language_model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 357 |
+
"language_model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 358 |
+
"language_model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 359 |
+
"language_model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 360 |
+
"language_model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 361 |
+
"language_model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 362 |
+
"language_model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 363 |
+
"language_model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 364 |
+
"language_model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 365 |
+
"language_model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 366 |
+
"language_model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 367 |
+
"language_model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 368 |
+
"language_model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 369 |
+
"language_model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 370 |
+
"language_model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 371 |
+
"language_model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 372 |
+
"language_model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 373 |
+
"language_model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 374 |
+
"language_model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 375 |
+
"language_model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 376 |
+
"language_model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 377 |
+
"language_model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 378 |
+
"language_model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 379 |
+
"language_model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 380 |
+
"language_model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 381 |
+
"language_model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 382 |
+
"language_model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 383 |
+
"language_model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 384 |
+
"language_model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 385 |
+
"language_model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 386 |
+
"language_model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 387 |
+
"language_model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 388 |
+
"language_model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 389 |
+
"language_model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 390 |
+
"language_model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 391 |
+
"language_model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 392 |
+
"language_model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 393 |
+
"language_model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 394 |
+
"language_model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 395 |
+
"language_model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 396 |
+
"language_model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 397 |
+
"language_model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 398 |
+
"language_model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 399 |
+
"language_model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 400 |
+
"language_model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 401 |
+
"language_model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 402 |
+
"language_model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 403 |
+
"language_model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 404 |
+
"language_model.norm.weight": "model-00002-of-00002.safetensors",
|
| 405 |
+
"visual.blocks.0.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 406 |
+
"visual.blocks.0.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 407 |
+
"visual.blocks.0.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 408 |
+
"visual.blocks.0.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 409 |
+
"visual.blocks.0.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 410 |
+
"visual.blocks.0.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 411 |
+
"visual.blocks.0.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 412 |
+
"visual.blocks.0.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 413 |
+
"visual.blocks.0.norm1.bias": "model-00002-of-00002.safetensors",
|
| 414 |
+
"visual.blocks.0.norm1.weight": "model-00002-of-00002.safetensors",
|
| 415 |
+
"visual.blocks.0.norm2.bias": "model-00002-of-00002.safetensors",
|
| 416 |
+
"visual.blocks.0.norm2.weight": "model-00002-of-00002.safetensors",
|
| 417 |
+
"visual.blocks.1.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 418 |
+
"visual.blocks.1.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 419 |
+
"visual.blocks.1.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 420 |
+
"visual.blocks.1.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 421 |
+
"visual.blocks.1.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 422 |
+
"visual.blocks.1.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 423 |
+
"visual.blocks.1.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 424 |
+
"visual.blocks.1.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 425 |
+
"visual.blocks.1.norm1.bias": "model-00002-of-00002.safetensors",
|
| 426 |
+
"visual.blocks.1.norm1.weight": "model-00002-of-00002.safetensors",
|
| 427 |
+
"visual.blocks.1.norm2.bias": "model-00002-of-00002.safetensors",
|
| 428 |
+
"visual.blocks.1.norm2.weight": "model-00002-of-00002.safetensors",
|
| 429 |
+
"visual.blocks.10.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 430 |
+
"visual.blocks.10.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 431 |
+
"visual.blocks.10.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 432 |
+
"visual.blocks.10.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 433 |
+
"visual.blocks.10.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 434 |
+
"visual.blocks.10.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 435 |
+
"visual.blocks.10.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 436 |
+
"visual.blocks.10.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 437 |
+
"visual.blocks.10.norm1.bias": "model-00002-of-00002.safetensors",
|
| 438 |
+
"visual.blocks.10.norm1.weight": "model-00002-of-00002.safetensors",
|
| 439 |
+
"visual.blocks.10.norm2.bias": "model-00002-of-00002.safetensors",
|
| 440 |
+
"visual.blocks.10.norm2.weight": "model-00002-of-00002.safetensors",
|
| 441 |
+
"visual.blocks.11.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 442 |
+
"visual.blocks.11.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 443 |
+
"visual.blocks.11.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 444 |
+
"visual.blocks.11.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 445 |
+
"visual.blocks.11.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 446 |
+
"visual.blocks.11.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 447 |
+
"visual.blocks.11.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 448 |
+
"visual.blocks.11.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 449 |
+
"visual.blocks.11.norm1.bias": "model-00002-of-00002.safetensors",
|
| 450 |
+
"visual.blocks.11.norm1.weight": "model-00002-of-00002.safetensors",
|
| 451 |
+
"visual.blocks.11.norm2.bias": "model-00002-of-00002.safetensors",
|
| 452 |
+
"visual.blocks.11.norm2.weight": "model-00002-of-00002.safetensors",
|
| 453 |
+
"visual.blocks.12.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 454 |
+
"visual.blocks.12.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 455 |
+
"visual.blocks.12.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 456 |
+
"visual.blocks.12.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 457 |
+
"visual.blocks.12.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 458 |
+
"visual.blocks.12.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 459 |
+
"visual.blocks.12.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 460 |
+
"visual.blocks.12.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 461 |
+
"visual.blocks.12.norm1.bias": "model-00002-of-00002.safetensors",
|
| 462 |
+
"visual.blocks.12.norm1.weight": "model-00002-of-00002.safetensors",
|
| 463 |
+
"visual.blocks.12.norm2.bias": "model-00002-of-00002.safetensors",
|
| 464 |
+
"visual.blocks.12.norm2.weight": "model-00002-of-00002.safetensors",
|
| 465 |
+
"visual.blocks.13.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 466 |
+
"visual.blocks.13.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 467 |
+
"visual.blocks.13.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 468 |
+
"visual.blocks.13.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 469 |
+
"visual.blocks.13.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 470 |
+
"visual.blocks.13.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 471 |
+
"visual.blocks.13.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 472 |
+
"visual.blocks.13.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 473 |
+
"visual.blocks.13.norm1.bias": "model-00002-of-00002.safetensors",
|
| 474 |
+
"visual.blocks.13.norm1.weight": "model-00002-of-00002.safetensors",
|
| 475 |
+
"visual.blocks.13.norm2.bias": "model-00002-of-00002.safetensors",
|
| 476 |
+
"visual.blocks.13.norm2.weight": "model-00002-of-00002.safetensors",
|
| 477 |
+
"visual.blocks.14.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 478 |
+
"visual.blocks.14.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 479 |
+
"visual.blocks.14.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 480 |
+
"visual.blocks.14.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 481 |
+
"visual.blocks.14.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 482 |
+
"visual.blocks.14.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 483 |
+
"visual.blocks.14.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 484 |
+
"visual.blocks.14.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 485 |
+
"visual.blocks.14.norm1.bias": "model-00002-of-00002.safetensors",
|
| 486 |
+
"visual.blocks.14.norm1.weight": "model-00002-of-00002.safetensors",
|
| 487 |
+
"visual.blocks.14.norm2.bias": "model-00002-of-00002.safetensors",
|
| 488 |
+
"visual.blocks.14.norm2.weight": "model-00002-of-00002.safetensors",
|
| 489 |
+
"visual.blocks.15.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 490 |
+
"visual.blocks.15.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 491 |
+
"visual.blocks.15.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 492 |
+
"visual.blocks.15.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 493 |
+
"visual.blocks.15.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 494 |
+
"visual.blocks.15.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 495 |
+
"visual.blocks.15.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 496 |
+
"visual.blocks.15.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 497 |
+
"visual.blocks.15.norm1.bias": "model-00002-of-00002.safetensors",
|
| 498 |
+
"visual.blocks.15.norm1.weight": "model-00002-of-00002.safetensors",
|
| 499 |
+
"visual.blocks.15.norm2.bias": "model-00002-of-00002.safetensors",
|
| 500 |
+
"visual.blocks.15.norm2.weight": "model-00002-of-00002.safetensors",
|
| 501 |
+
"visual.blocks.16.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 502 |
+
"visual.blocks.16.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 503 |
+
"visual.blocks.16.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 504 |
+
"visual.blocks.16.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 505 |
+
"visual.blocks.16.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 506 |
+
"visual.blocks.16.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 507 |
+
"visual.blocks.16.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 508 |
+
"visual.blocks.16.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 509 |
+
"visual.blocks.16.norm1.bias": "model-00002-of-00002.safetensors",
|
| 510 |
+
"visual.blocks.16.norm1.weight": "model-00002-of-00002.safetensors",
|
| 511 |
+
"visual.blocks.16.norm2.bias": "model-00002-of-00002.safetensors",
|
| 512 |
+
"visual.blocks.16.norm2.weight": "model-00002-of-00002.safetensors",
|
| 513 |
+
"visual.blocks.17.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 514 |
+
"visual.blocks.17.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 515 |
+
"visual.blocks.17.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 516 |
+
"visual.blocks.17.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 517 |
+
"visual.blocks.17.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 518 |
+
"visual.blocks.17.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 519 |
+
"visual.blocks.17.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 520 |
+
"visual.blocks.17.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 521 |
+
"visual.blocks.17.norm1.bias": "model-00002-of-00002.safetensors",
|
| 522 |
+
"visual.blocks.17.norm1.weight": "model-00002-of-00002.safetensors",
|
| 523 |
+
"visual.blocks.17.norm2.bias": "model-00002-of-00002.safetensors",
|
| 524 |
+
"visual.blocks.17.norm2.weight": "model-00002-of-00002.safetensors",
|
| 525 |
+
"visual.blocks.18.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 526 |
+
"visual.blocks.18.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 527 |
+
"visual.blocks.18.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 528 |
+
"visual.blocks.18.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 529 |
+
"visual.blocks.18.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 530 |
+
"visual.blocks.18.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 531 |
+
"visual.blocks.18.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 532 |
+
"visual.blocks.18.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 533 |
+
"visual.blocks.18.norm1.bias": "model-00002-of-00002.safetensors",
|
| 534 |
+
"visual.blocks.18.norm1.weight": "model-00002-of-00002.safetensors",
|
| 535 |
+
"visual.blocks.18.norm2.bias": "model-00002-of-00002.safetensors",
|
| 536 |
+
"visual.blocks.18.norm2.weight": "model-00002-of-00002.safetensors",
|
| 537 |
+
"visual.blocks.19.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 538 |
+
"visual.blocks.19.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 539 |
+
"visual.blocks.19.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 540 |
+
"visual.blocks.19.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 541 |
+
"visual.blocks.19.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 542 |
+
"visual.blocks.19.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 543 |
+
"visual.blocks.19.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 544 |
+
"visual.blocks.19.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 545 |
+
"visual.blocks.19.norm1.bias": "model-00002-of-00002.safetensors",
|
| 546 |
+
"visual.blocks.19.norm1.weight": "model-00002-of-00002.safetensors",
|
| 547 |
+
"visual.blocks.19.norm2.bias": "model-00002-of-00002.safetensors",
|
| 548 |
+
"visual.blocks.19.norm2.weight": "model-00002-of-00002.safetensors",
|
| 549 |
+
"visual.blocks.2.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 550 |
+
"visual.blocks.2.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 551 |
+
"visual.blocks.2.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 552 |
+
"visual.blocks.2.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 553 |
+
"visual.blocks.2.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 554 |
+
"visual.blocks.2.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 555 |
+
"visual.blocks.2.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 556 |
+
"visual.blocks.2.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 557 |
+
"visual.blocks.2.norm1.bias": "model-00002-of-00002.safetensors",
|
| 558 |
+
"visual.blocks.2.norm1.weight": "model-00002-of-00002.safetensors",
|
| 559 |
+
"visual.blocks.2.norm2.bias": "model-00002-of-00002.safetensors",
|
| 560 |
+
"visual.blocks.2.norm2.weight": "model-00002-of-00002.safetensors",
|
| 561 |
+
"visual.blocks.20.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 562 |
+
"visual.blocks.20.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 563 |
+
"visual.blocks.20.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 564 |
+
"visual.blocks.20.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 565 |
+
"visual.blocks.20.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 566 |
+
"visual.blocks.20.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 567 |
+
"visual.blocks.20.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 568 |
+
"visual.blocks.20.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 569 |
+
"visual.blocks.20.norm1.bias": "model-00002-of-00002.safetensors",
|
| 570 |
+
"visual.blocks.20.norm1.weight": "model-00002-of-00002.safetensors",
|
| 571 |
+
"visual.blocks.20.norm2.bias": "model-00002-of-00002.safetensors",
|
| 572 |
+
"visual.blocks.20.norm2.weight": "model-00002-of-00002.safetensors",
|
| 573 |
+
"visual.blocks.21.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 574 |
+
"visual.blocks.21.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 575 |
+
"visual.blocks.21.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 576 |
+
"visual.blocks.21.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 577 |
+
"visual.blocks.21.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 578 |
+
"visual.blocks.21.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 579 |
+
"visual.blocks.21.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 580 |
+
"visual.blocks.21.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 581 |
+
"visual.blocks.21.norm1.bias": "model-00002-of-00002.safetensors",
|
| 582 |
+
"visual.blocks.21.norm1.weight": "model-00002-of-00002.safetensors",
|
| 583 |
+
"visual.blocks.21.norm2.bias": "model-00002-of-00002.safetensors",
|
| 584 |
+
"visual.blocks.21.norm2.weight": "model-00002-of-00002.safetensors",
|
| 585 |
+
"visual.blocks.22.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 586 |
+
"visual.blocks.22.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 587 |
+
"visual.blocks.22.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 588 |
+
"visual.blocks.22.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 589 |
+
"visual.blocks.22.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 590 |
+
"visual.blocks.22.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 591 |
+
"visual.blocks.22.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 592 |
+
"visual.blocks.22.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 593 |
+
"visual.blocks.22.norm1.bias": "model-00002-of-00002.safetensors",
|
| 594 |
+
"visual.blocks.22.norm1.weight": "model-00002-of-00002.safetensors",
|
| 595 |
+
"visual.blocks.22.norm2.bias": "model-00002-of-00002.safetensors",
|
| 596 |
+
"visual.blocks.22.norm2.weight": "model-00002-of-00002.safetensors",
|
| 597 |
+
"visual.blocks.23.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 598 |
+
"visual.blocks.23.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 599 |
+
"visual.blocks.23.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 600 |
+
"visual.blocks.23.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 601 |
+
"visual.blocks.23.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 602 |
+
"visual.blocks.23.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 603 |
+
"visual.blocks.23.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 604 |
+
"visual.blocks.23.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 605 |
+
"visual.blocks.23.norm1.bias": "model-00002-of-00002.safetensors",
|
| 606 |
+
"visual.blocks.23.norm1.weight": "model-00002-of-00002.safetensors",
|
| 607 |
+
"visual.blocks.23.norm2.bias": "model-00002-of-00002.safetensors",
|
| 608 |
+
"visual.blocks.23.norm2.weight": "model-00002-of-00002.safetensors",
|
| 609 |
+
"visual.blocks.3.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 610 |
+
"visual.blocks.3.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 611 |
+
"visual.blocks.3.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 612 |
+
"visual.blocks.3.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 613 |
+
"visual.blocks.3.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 614 |
+
"visual.blocks.3.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 615 |
+
"visual.blocks.3.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 616 |
+
"visual.blocks.3.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 617 |
+
"visual.blocks.3.norm1.bias": "model-00002-of-00002.safetensors",
|
| 618 |
+
"visual.blocks.3.norm1.weight": "model-00002-of-00002.safetensors",
|
| 619 |
+
"visual.blocks.3.norm2.bias": "model-00002-of-00002.safetensors",
|
| 620 |
+
"visual.blocks.3.norm2.weight": "model-00002-of-00002.safetensors",
|
| 621 |
+
"visual.blocks.4.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 622 |
+
"visual.blocks.4.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 623 |
+
"visual.blocks.4.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 624 |
+
"visual.blocks.4.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 625 |
+
"visual.blocks.4.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 626 |
+
"visual.blocks.4.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 627 |
+
"visual.blocks.4.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 628 |
+
"visual.blocks.4.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 629 |
+
"visual.blocks.4.norm1.bias": "model-00002-of-00002.safetensors",
|
| 630 |
+
"visual.blocks.4.norm1.weight": "model-00002-of-00002.safetensors",
|
| 631 |
+
"visual.blocks.4.norm2.bias": "model-00002-of-00002.safetensors",
|
| 632 |
+
"visual.blocks.4.norm2.weight": "model-00002-of-00002.safetensors",
|
| 633 |
+
"visual.blocks.5.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 634 |
+
"visual.blocks.5.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 635 |
+
"visual.blocks.5.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 636 |
+
"visual.blocks.5.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 637 |
+
"visual.blocks.5.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 638 |
+
"visual.blocks.5.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 639 |
+
"visual.blocks.5.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 640 |
+
"visual.blocks.5.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 641 |
+
"visual.blocks.5.norm1.bias": "model-00002-of-00002.safetensors",
|
| 642 |
+
"visual.blocks.5.norm1.weight": "model-00002-of-00002.safetensors",
|
| 643 |
+
"visual.blocks.5.norm2.bias": "model-00002-of-00002.safetensors",
|
| 644 |
+
"visual.blocks.5.norm2.weight": "model-00002-of-00002.safetensors",
|
| 645 |
+
"visual.blocks.6.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 646 |
+
"visual.blocks.6.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 647 |
+
"visual.blocks.6.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 648 |
+
"visual.blocks.6.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 649 |
+
"visual.blocks.6.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 650 |
+
"visual.blocks.6.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 651 |
+
"visual.blocks.6.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 652 |
+
"visual.blocks.6.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 653 |
+
"visual.blocks.6.norm1.bias": "model-00002-of-00002.safetensors",
|
| 654 |
+
"visual.blocks.6.norm1.weight": "model-00002-of-00002.safetensors",
|
| 655 |
+
"visual.blocks.6.norm2.bias": "model-00002-of-00002.safetensors",
|
| 656 |
+
"visual.blocks.6.norm2.weight": "model-00002-of-00002.safetensors",
|
| 657 |
+
"visual.blocks.7.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 658 |
+
"visual.blocks.7.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 659 |
+
"visual.blocks.7.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 660 |
+
"visual.blocks.7.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 661 |
+
"visual.blocks.7.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 662 |
+
"visual.blocks.7.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 663 |
+
"visual.blocks.7.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 664 |
+
"visual.blocks.7.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 665 |
+
"visual.blocks.7.norm1.bias": "model-00002-of-00002.safetensors",
|
| 666 |
+
"visual.blocks.7.norm1.weight": "model-00002-of-00002.safetensors",
|
| 667 |
+
"visual.blocks.7.norm2.bias": "model-00002-of-00002.safetensors",
|
| 668 |
+
"visual.blocks.7.norm2.weight": "model-00002-of-00002.safetensors",
|
| 669 |
+
"visual.blocks.8.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 670 |
+
"visual.blocks.8.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 671 |
+
"visual.blocks.8.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 672 |
+
"visual.blocks.8.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 673 |
+
"visual.blocks.8.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 674 |
+
"visual.blocks.8.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 675 |
+
"visual.blocks.8.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 676 |
+
"visual.blocks.8.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 677 |
+
"visual.blocks.8.norm1.bias": "model-00002-of-00002.safetensors",
|
| 678 |
+
"visual.blocks.8.norm1.weight": "model-00002-of-00002.safetensors",
|
| 679 |
+
"visual.blocks.8.norm2.bias": "model-00002-of-00002.safetensors",
|
| 680 |
+
"visual.blocks.8.norm2.weight": "model-00002-of-00002.safetensors",
|
| 681 |
+
"visual.blocks.9.attn.proj.bias": "model-00002-of-00002.safetensors",
|
| 682 |
+
"visual.blocks.9.attn.proj.weight": "model-00002-of-00002.safetensors",
|
| 683 |
+
"visual.blocks.9.attn.qkv.bias": "model-00002-of-00002.safetensors",
|
| 684 |
+
"visual.blocks.9.attn.qkv.weight": "model-00002-of-00002.safetensors",
|
| 685 |
+
"visual.blocks.9.mlp.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 686 |
+
"visual.blocks.9.mlp.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 687 |
+
"visual.blocks.9.mlp.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 688 |
+
"visual.blocks.9.mlp.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 689 |
+
"visual.blocks.9.norm1.bias": "model-00002-of-00002.safetensors",
|
| 690 |
+
"visual.blocks.9.norm1.weight": "model-00002-of-00002.safetensors",
|
| 691 |
+
"visual.blocks.9.norm2.bias": "model-00002-of-00002.safetensors",
|
| 692 |
+
"visual.blocks.9.norm2.weight": "model-00002-of-00002.safetensors",
|
| 693 |
+
"visual.deepstack_merger_list.0.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 694 |
+
"visual.deepstack_merger_list.0.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 695 |
+
"visual.deepstack_merger_list.0.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 696 |
+
"visual.deepstack_merger_list.0.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 697 |
+
"visual.deepstack_merger_list.0.norm.bias": "model-00002-of-00002.safetensors",
|
| 698 |
+
"visual.deepstack_merger_list.0.norm.weight": "model-00002-of-00002.safetensors",
|
| 699 |
+
"visual.deepstack_merger_list.1.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 700 |
+
"visual.deepstack_merger_list.1.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 701 |
+
"visual.deepstack_merger_list.1.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 702 |
+
"visual.deepstack_merger_list.1.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 703 |
+
"visual.deepstack_merger_list.1.norm.bias": "model-00002-of-00002.safetensors",
|
| 704 |
+
"visual.deepstack_merger_list.1.norm.weight": "model-00002-of-00002.safetensors",
|
| 705 |
+
"visual.deepstack_merger_list.2.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 706 |
+
"visual.deepstack_merger_list.2.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 707 |
+
"visual.deepstack_merger_list.2.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 708 |
+
"visual.deepstack_merger_list.2.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 709 |
+
"visual.deepstack_merger_list.2.norm.bias": "model-00002-of-00002.safetensors",
|
| 710 |
+
"visual.deepstack_merger_list.2.norm.weight": "model-00002-of-00002.safetensors",
|
| 711 |
+
"visual.merger.linear_fc1.bias": "model-00002-of-00002.safetensors",
|
| 712 |
+
"visual.merger.linear_fc1.weight": "model-00002-of-00002.safetensors",
|
| 713 |
+
"visual.merger.linear_fc2.bias": "model-00002-of-00002.safetensors",
|
| 714 |
+
"visual.merger.linear_fc2.weight": "model-00002-of-00002.safetensors",
|
| 715 |
+
"visual.merger.norm.bias": "model-00002-of-00002.safetensors",
|
| 716 |
+
"visual.merger.norm.weight": "model-00002-of-00002.safetensors",
|
| 717 |
+
"visual.patch_embed.proj.bias": "model-00002-of-00002.safetensors",
|
| 718 |
+
"visual.patch_embed.proj.weight": "model-00002-of-00002.safetensors",
|
| 719 |
+
"visual.pos_embed.weight": "model-00002-of-00002.safetensors"
|
| 720 |
+
}
|
| 721 |
+
}
|
tokenizer/chat_template.jinja
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{%- if messages[0].content is string %}
|
| 5 |
+
{{- messages[0].content }}
|
| 6 |
+
{%- else %}
|
| 7 |
+
{%- for content in messages[0].content %}
|
| 8 |
+
{%- if 'text' in content %}
|
| 9 |
+
{{- content.text }}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- endfor %}
|
| 12 |
+
{%- endif %}
|
| 13 |
+
{{- '\n\n' }}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 16 |
+
{%- for tool in tools %}
|
| 17 |
+
{{- "\n" }}
|
| 18 |
+
{{- tool | tojson }}
|
| 19 |
+
{%- endfor %}
|
| 20 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 21 |
+
{%- else %}
|
| 22 |
+
{%- if messages[0].role == 'system' %}
|
| 23 |
+
{{- '<|im_start|>system\n' }}
|
| 24 |
+
{%- if messages[0].content is string %}
|
| 25 |
+
{{- messages[0].content }}
|
| 26 |
+
{%- else %}
|
| 27 |
+
{%- for content in messages[0].content %}
|
| 28 |
+
{%- if 'text' in content %}
|
| 29 |
+
{{- content.text }}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- endfor %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '<|im_end|>\n' }}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- endif %}
|
| 36 |
+
{%- set image_count = namespace(value=0) %}
|
| 37 |
+
{%- set video_count = namespace(value=0) %}
|
| 38 |
+
{%- for message in messages %}
|
| 39 |
+
{%- if message.role == "user" %}
|
| 40 |
+
{{- '<|im_start|>' + message.role + '\n' }}
|
| 41 |
+
{%- if message.content is string %}
|
| 42 |
+
{{- message.content }}
|
| 43 |
+
{%- else %}
|
| 44 |
+
{%- for content in message.content %}
|
| 45 |
+
{%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
|
| 46 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 47 |
+
{%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
|
| 48 |
+
<|vision_start|><|image_pad|><|vision_end|>
|
| 49 |
+
{%- elif content.type == 'video' or 'video' in content %}
|
| 50 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 51 |
+
{%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
|
| 52 |
+
<|vision_start|><|video_pad|><|vision_end|>
|
| 53 |
+
{%- elif 'text' in content %}
|
| 54 |
+
{{- content.text }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- endfor %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{{- '<|im_end|>\n' }}
|
| 59 |
+
{%- elif message.role == "assistant" %}
|
| 60 |
+
{{- '<|im_start|>' + message.role + '\n' }}
|
| 61 |
+
{%- if message.content is string %}
|
| 62 |
+
{{- message.content }}
|
| 63 |
+
{%- else %}
|
| 64 |
+
{%- for content_item in message.content %}
|
| 65 |
+
{%- if 'text' in content_item %}
|
| 66 |
+
{{- content_item.text }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{%- endfor %}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- if message.tool_calls %}
|
| 71 |
+
{%- for tool_call in message.tool_calls %}
|
| 72 |
+
{%- if (loop.first and message.content) or (not loop.first) %}
|
| 73 |
+
{{- '\n' }}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{%- if tool_call.function %}
|
| 76 |
+
{%- set tool_call = tool_call.function %}
|
| 77 |
+
{%- endif %}
|
| 78 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 79 |
+
{{- tool_call.name }}
|
| 80 |
+
{{- '", "arguments": ' }}
|
| 81 |
+
{%- if tool_call.arguments is string %}
|
| 82 |
+
{{- tool_call.arguments }}
|
| 83 |
+
{%- else %}
|
| 84 |
+
{{- tool_call.arguments | tojson }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{{- '}\n</tool_call>' }}
|
| 87 |
+
{%- endfor %}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{{- '<|im_end|>\n' }}
|
| 90 |
+
{%- elif message.role == "tool" %}
|
| 91 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 92 |
+
{{- '<|im_start|>user' }}
|
| 93 |
+
{%- endif %}
|
| 94 |
+
{{- '\n<tool_response>\n' }}
|
| 95 |
+
{%- if message.content is string %}
|
| 96 |
+
{{- message.content }}
|
| 97 |
+
{%- else %}
|
| 98 |
+
{%- for content in message.content %}
|
| 99 |
+
{%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
|
| 100 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 101 |
+
{%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
|
| 102 |
+
<|vision_start|><|image_pad|><|vision_end|>
|
| 103 |
+
{%- elif content.type == 'video' or 'video' in content %}
|
| 104 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 105 |
+
{%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
|
| 106 |
+
<|vision_start|><|video_pad|><|vision_end|>
|
| 107 |
+
{%- elif 'text' in content %}
|
| 108 |
+
{{- content.text }}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- endfor %}
|
| 111 |
+
{%- endif %}
|
| 112 |
+
{{- '\n</tool_response>' }}
|
| 113 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 114 |
+
{{- '<|im_end|>\n' }}
|
| 115 |
+
{%- endif %}
|
| 116 |
+
{%- endif %}
|
| 117 |
+
{%- endfor %}
|
| 118 |
+
{%- if add_generation_prompt %}
|
| 119 |
+
{{- '<|im_start|>assistant\n' }}
|
| 120 |
+
{%- endif %}
|
tokenizer/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
|
| 3 |
+
size 11422650
|
tokenizer/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": true,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"model_max_length": 262144,
|
| 26 |
+
"pad_token": "<|endoftext|>",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null
|
| 30 |
+
}
|
transformer/config.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "Krea2Transformer2DModel",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"_name_or_path": "/workspace/krea2-sdnq-lab/hf-home/hub/models--krea--Krea-2-Raw/snapshots/4ad9f4b627a647fad78b3dfeebb09f2654aeb494/transformer",
|
| 5 |
+
"attention_head_dim": 128,
|
| 6 |
+
"axes_dims_rope": [
|
| 7 |
+
32,
|
| 8 |
+
48,
|
| 9 |
+
48
|
| 10 |
+
],
|
| 11 |
+
"in_channels": 64,
|
| 12 |
+
"intermediate_size": 16384,
|
| 13 |
+
"norm_eps": 1e-05,
|
| 14 |
+
"num_attention_heads": 48,
|
| 15 |
+
"num_key_value_heads": 12,
|
| 16 |
+
"num_layers": 28,
|
| 17 |
+
"num_layerwise_text_blocks": 2,
|
| 18 |
+
"num_refiner_text_blocks": 2,
|
| 19 |
+
"num_text_layers": 12,
|
| 20 |
+
"quantization_config": {
|
| 21 |
+
"add_skip_keys": true,
|
| 22 |
+
"dequantize_fp32": false,
|
| 23 |
+
"dynamic_loss_threshold": null,
|
| 24 |
+
"group_size": 0,
|
| 25 |
+
"hadamard_group_size": 256,
|
| 26 |
+
"is_integer": true,
|
| 27 |
+
"is_training": false,
|
| 28 |
+
"modules_dtype_dict": {},
|
| 29 |
+
"modules_quant_config": {},
|
| 30 |
+
"modules_to_not_convert": [
|
| 31 |
+
".proj_out",
|
| 32 |
+
"patch_embed",
|
| 33 |
+
".y_embedder",
|
| 34 |
+
".txt_in",
|
| 35 |
+
"lm_head",
|
| 36 |
+
"time_embed",
|
| 37 |
+
".txt_out",
|
| 38 |
+
".emb_out",
|
| 39 |
+
".x_embedder",
|
| 40 |
+
"patch_emb",
|
| 41 |
+
".vid_in",
|
| 42 |
+
".emb_in",
|
| 43 |
+
"time_text_embed",
|
| 44 |
+
".condition_embedder",
|
| 45 |
+
"norm_k",
|
| 46 |
+
".t_embedder",
|
| 47 |
+
"multi_modal_projector",
|
| 48 |
+
"norm1",
|
| 49 |
+
"norm2",
|
| 50 |
+
".time_embed",
|
| 51 |
+
".context_embedder",
|
| 52 |
+
".vid_out",
|
| 53 |
+
".final_layer",
|
| 54 |
+
"patch_embedding",
|
| 55 |
+
".img_out",
|
| 56 |
+
".norm_out",
|
| 57 |
+
"wte",
|
| 58 |
+
".img_in",
|
| 59 |
+
"norm",
|
| 60 |
+
"norm_q"
|
| 61 |
+
],
|
| 62 |
+
"modules_to_not_use_matmul": [],
|
| 63 |
+
"non_blocking": true,
|
| 64 |
+
"quant_conv": false,
|
| 65 |
+
"quant_embedding": false,
|
| 66 |
+
"quant_method": "sdnq",
|
| 67 |
+
"quantization_device": "cuda",
|
| 68 |
+
"quantized_matmul_dtype": null,
|
| 69 |
+
"return_device": "cpu",
|
| 70 |
+
"sdnq_version": "0.2.0",
|
| 71 |
+
"svd_rank": 32,
|
| 72 |
+
"svd_steps": 32,
|
| 73 |
+
"use_dynamic_quantization": false,
|
| 74 |
+
"use_grad_ckpt": true,
|
| 75 |
+
"use_hadamard": false,
|
| 76 |
+
"use_quantized_matmul": false,
|
| 77 |
+
"use_quantized_matmul_conv": false,
|
| 78 |
+
"use_static_quantization": true,
|
| 79 |
+
"use_stochastic_rounding": false,
|
| 80 |
+
"use_svd": false,
|
| 81 |
+
"weights_dtype": "uint4"
|
| 82 |
+
},
|
| 83 |
+
"rope_theta": 1000.0,
|
| 84 |
+
"text_hidden_dim": 2560,
|
| 85 |
+
"text_intermediate_size": 6912,
|
| 86 |
+
"text_num_attention_heads": 20,
|
| 87 |
+
"text_num_key_value_heads": 20,
|
| 88 |
+
"timestep_embed_dim": 256
|
| 89 |
+
}
|
transformer/diffusion_pytorch_model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:163e344e665310e99bf45c2b6e748bae8216b097d626c8758188444246e63e9b
|
| 3 |
+
size 4979301962
|
transformer/diffusion_pytorch_model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f17c8666a76d2df210ef177339a20cd1bb160dd217857697dbf8c0e0478ead3d
|
| 3 |
+
size 2369535296
|
transformer/diffusion_pytorch_model.safetensors.index.json
ADDED
|
@@ -0,0 +1,953 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 7348729994
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"final_layer.linear.bias": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 7 |
+
"final_layer.linear.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 8 |
+
"final_layer.norm.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 9 |
+
"final_layer.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 10 |
+
"img_in.bias": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 11 |
+
"img_in.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 12 |
+
"text_fusion.layerwise_blocks.0.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 13 |
+
"text_fusion.layerwise_blocks.0.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 14 |
+
"text_fusion.layerwise_blocks.0.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 15 |
+
"text_fusion.layerwise_blocks.0.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 16 |
+
"text_fusion.layerwise_blocks.0.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 17 |
+
"text_fusion.layerwise_blocks.0.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 18 |
+
"text_fusion.layerwise_blocks.0.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 19 |
+
"text_fusion.layerwise_blocks.0.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 20 |
+
"text_fusion.layerwise_blocks.0.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 21 |
+
"text_fusion.layerwise_blocks.0.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 22 |
+
"text_fusion.layerwise_blocks.0.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 23 |
+
"text_fusion.layerwise_blocks.0.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 24 |
+
"text_fusion.layerwise_blocks.0.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 25 |
+
"text_fusion.layerwise_blocks.0.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 26 |
+
"text_fusion.layerwise_blocks.0.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 27 |
+
"text_fusion.layerwise_blocks.0.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 28 |
+
"text_fusion.layerwise_blocks.0.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 29 |
+
"text_fusion.layerwise_blocks.0.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 30 |
+
"text_fusion.layerwise_blocks.0.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 31 |
+
"text_fusion.layerwise_blocks.0.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 32 |
+
"text_fusion.layerwise_blocks.0.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 33 |
+
"text_fusion.layerwise_blocks.0.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 34 |
+
"text_fusion.layerwise_blocks.0.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 35 |
+
"text_fusion.layerwise_blocks.0.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 36 |
+
"text_fusion.layerwise_blocks.0.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 37 |
+
"text_fusion.layerwise_blocks.0.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 38 |
+
"text_fusion.layerwise_blocks.0.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 39 |
+
"text_fusion.layerwise_blocks.0.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 40 |
+
"text_fusion.layerwise_blocks.1.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 41 |
+
"text_fusion.layerwise_blocks.1.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 42 |
+
"text_fusion.layerwise_blocks.1.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 43 |
+
"text_fusion.layerwise_blocks.1.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 44 |
+
"text_fusion.layerwise_blocks.1.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 45 |
+
"text_fusion.layerwise_blocks.1.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 46 |
+
"text_fusion.layerwise_blocks.1.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 47 |
+
"text_fusion.layerwise_blocks.1.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 48 |
+
"text_fusion.layerwise_blocks.1.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 49 |
+
"text_fusion.layerwise_blocks.1.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 50 |
+
"text_fusion.layerwise_blocks.1.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 51 |
+
"text_fusion.layerwise_blocks.1.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 52 |
+
"text_fusion.layerwise_blocks.1.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 53 |
+
"text_fusion.layerwise_blocks.1.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 54 |
+
"text_fusion.layerwise_blocks.1.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 55 |
+
"text_fusion.layerwise_blocks.1.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 56 |
+
"text_fusion.layerwise_blocks.1.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 57 |
+
"text_fusion.layerwise_blocks.1.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 58 |
+
"text_fusion.layerwise_blocks.1.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 59 |
+
"text_fusion.layerwise_blocks.1.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 60 |
+
"text_fusion.layerwise_blocks.1.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 61 |
+
"text_fusion.layerwise_blocks.1.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 62 |
+
"text_fusion.layerwise_blocks.1.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 63 |
+
"text_fusion.layerwise_blocks.1.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 64 |
+
"text_fusion.layerwise_blocks.1.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 65 |
+
"text_fusion.layerwise_blocks.1.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 66 |
+
"text_fusion.layerwise_blocks.1.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 67 |
+
"text_fusion.layerwise_blocks.1.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 68 |
+
"text_fusion.projector.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 69 |
+
"text_fusion.projector.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 70 |
+
"text_fusion.projector.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 71 |
+
"text_fusion.refiner_blocks.0.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 72 |
+
"text_fusion.refiner_blocks.0.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 73 |
+
"text_fusion.refiner_blocks.0.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 74 |
+
"text_fusion.refiner_blocks.0.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 75 |
+
"text_fusion.refiner_blocks.0.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 76 |
+
"text_fusion.refiner_blocks.0.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 77 |
+
"text_fusion.refiner_blocks.0.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 78 |
+
"text_fusion.refiner_blocks.0.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 79 |
+
"text_fusion.refiner_blocks.0.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 80 |
+
"text_fusion.refiner_blocks.0.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 81 |
+
"text_fusion.refiner_blocks.0.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 82 |
+
"text_fusion.refiner_blocks.0.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 83 |
+
"text_fusion.refiner_blocks.0.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 84 |
+
"text_fusion.refiner_blocks.0.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 85 |
+
"text_fusion.refiner_blocks.0.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 86 |
+
"text_fusion.refiner_blocks.0.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 87 |
+
"text_fusion.refiner_blocks.0.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 88 |
+
"text_fusion.refiner_blocks.0.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 89 |
+
"text_fusion.refiner_blocks.0.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 90 |
+
"text_fusion.refiner_blocks.0.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 91 |
+
"text_fusion.refiner_blocks.0.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 92 |
+
"text_fusion.refiner_blocks.0.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 93 |
+
"text_fusion.refiner_blocks.0.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 94 |
+
"text_fusion.refiner_blocks.0.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 95 |
+
"text_fusion.refiner_blocks.0.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 96 |
+
"text_fusion.refiner_blocks.0.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 97 |
+
"text_fusion.refiner_blocks.0.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 98 |
+
"text_fusion.refiner_blocks.0.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 99 |
+
"text_fusion.refiner_blocks.1.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 100 |
+
"text_fusion.refiner_blocks.1.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 101 |
+
"text_fusion.refiner_blocks.1.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 102 |
+
"text_fusion.refiner_blocks.1.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 103 |
+
"text_fusion.refiner_blocks.1.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 104 |
+
"text_fusion.refiner_blocks.1.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 105 |
+
"text_fusion.refiner_blocks.1.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 106 |
+
"text_fusion.refiner_blocks.1.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 107 |
+
"text_fusion.refiner_blocks.1.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 108 |
+
"text_fusion.refiner_blocks.1.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 109 |
+
"text_fusion.refiner_blocks.1.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 110 |
+
"text_fusion.refiner_blocks.1.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 111 |
+
"text_fusion.refiner_blocks.1.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 112 |
+
"text_fusion.refiner_blocks.1.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 113 |
+
"text_fusion.refiner_blocks.1.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 114 |
+
"text_fusion.refiner_blocks.1.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 115 |
+
"text_fusion.refiner_blocks.1.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 116 |
+
"text_fusion.refiner_blocks.1.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 117 |
+
"text_fusion.refiner_blocks.1.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 118 |
+
"text_fusion.refiner_blocks.1.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 119 |
+
"text_fusion.refiner_blocks.1.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 120 |
+
"text_fusion.refiner_blocks.1.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 121 |
+
"text_fusion.refiner_blocks.1.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 122 |
+
"text_fusion.refiner_blocks.1.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 123 |
+
"text_fusion.refiner_blocks.1.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 124 |
+
"text_fusion.refiner_blocks.1.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 125 |
+
"text_fusion.refiner_blocks.1.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 126 |
+
"text_fusion.refiner_blocks.1.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 127 |
+
"time_embed.linear_1.bias": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 128 |
+
"time_embed.linear_1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 129 |
+
"time_embed.linear_2.bias": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 130 |
+
"time_embed.linear_2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 131 |
+
"time_mod_proj.bias": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 132 |
+
"time_mod_proj.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 133 |
+
"time_mod_proj.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 134 |
+
"time_mod_proj.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 135 |
+
"transformer_blocks.0.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 136 |
+
"transformer_blocks.0.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 137 |
+
"transformer_blocks.0.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 138 |
+
"transformer_blocks.0.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 139 |
+
"transformer_blocks.0.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 140 |
+
"transformer_blocks.0.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 141 |
+
"transformer_blocks.0.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 142 |
+
"transformer_blocks.0.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 143 |
+
"transformer_blocks.0.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 144 |
+
"transformer_blocks.0.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 145 |
+
"transformer_blocks.0.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 146 |
+
"transformer_blocks.0.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 147 |
+
"transformer_blocks.0.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 148 |
+
"transformer_blocks.0.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 149 |
+
"transformer_blocks.0.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 150 |
+
"transformer_blocks.0.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 151 |
+
"transformer_blocks.0.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 152 |
+
"transformer_blocks.0.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 153 |
+
"transformer_blocks.0.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 154 |
+
"transformer_blocks.0.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 155 |
+
"transformer_blocks.0.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 156 |
+
"transformer_blocks.0.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 157 |
+
"transformer_blocks.0.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 158 |
+
"transformer_blocks.0.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 159 |
+
"transformer_blocks.0.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 160 |
+
"transformer_blocks.0.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 161 |
+
"transformer_blocks.0.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 162 |
+
"transformer_blocks.0.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 163 |
+
"transformer_blocks.0.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 164 |
+
"transformer_blocks.1.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 165 |
+
"transformer_blocks.1.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 166 |
+
"transformer_blocks.1.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 167 |
+
"transformer_blocks.1.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 168 |
+
"transformer_blocks.1.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 169 |
+
"transformer_blocks.1.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 170 |
+
"transformer_blocks.1.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 171 |
+
"transformer_blocks.1.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 172 |
+
"transformer_blocks.1.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 173 |
+
"transformer_blocks.1.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 174 |
+
"transformer_blocks.1.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 175 |
+
"transformer_blocks.1.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 176 |
+
"transformer_blocks.1.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 177 |
+
"transformer_blocks.1.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 178 |
+
"transformer_blocks.1.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 179 |
+
"transformer_blocks.1.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 180 |
+
"transformer_blocks.1.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 181 |
+
"transformer_blocks.1.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 182 |
+
"transformer_blocks.1.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 183 |
+
"transformer_blocks.1.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 184 |
+
"transformer_blocks.1.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 185 |
+
"transformer_blocks.1.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 186 |
+
"transformer_blocks.1.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 187 |
+
"transformer_blocks.1.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 188 |
+
"transformer_blocks.1.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 189 |
+
"transformer_blocks.1.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 190 |
+
"transformer_blocks.1.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 191 |
+
"transformer_blocks.1.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 192 |
+
"transformer_blocks.1.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 193 |
+
"transformer_blocks.10.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 194 |
+
"transformer_blocks.10.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 195 |
+
"transformer_blocks.10.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 196 |
+
"transformer_blocks.10.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 197 |
+
"transformer_blocks.10.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 198 |
+
"transformer_blocks.10.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 199 |
+
"transformer_blocks.10.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 200 |
+
"transformer_blocks.10.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 201 |
+
"transformer_blocks.10.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 202 |
+
"transformer_blocks.10.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 203 |
+
"transformer_blocks.10.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 204 |
+
"transformer_blocks.10.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 205 |
+
"transformer_blocks.10.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 206 |
+
"transformer_blocks.10.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 207 |
+
"transformer_blocks.10.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 208 |
+
"transformer_blocks.10.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 209 |
+
"transformer_blocks.10.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 210 |
+
"transformer_blocks.10.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 211 |
+
"transformer_blocks.10.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 212 |
+
"transformer_blocks.10.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 213 |
+
"transformer_blocks.10.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 214 |
+
"transformer_blocks.10.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 215 |
+
"transformer_blocks.10.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 216 |
+
"transformer_blocks.10.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 217 |
+
"transformer_blocks.10.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 218 |
+
"transformer_blocks.10.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 219 |
+
"transformer_blocks.10.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 220 |
+
"transformer_blocks.10.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 221 |
+
"transformer_blocks.10.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 222 |
+
"transformer_blocks.11.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 223 |
+
"transformer_blocks.11.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 224 |
+
"transformer_blocks.11.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 225 |
+
"transformer_blocks.11.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 226 |
+
"transformer_blocks.11.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 227 |
+
"transformer_blocks.11.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 228 |
+
"transformer_blocks.11.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 229 |
+
"transformer_blocks.11.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 230 |
+
"transformer_blocks.11.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 231 |
+
"transformer_blocks.11.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 232 |
+
"transformer_blocks.11.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 233 |
+
"transformer_blocks.11.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 234 |
+
"transformer_blocks.11.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 235 |
+
"transformer_blocks.11.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 236 |
+
"transformer_blocks.11.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 237 |
+
"transformer_blocks.11.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 238 |
+
"transformer_blocks.11.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 239 |
+
"transformer_blocks.11.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 240 |
+
"transformer_blocks.11.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 241 |
+
"transformer_blocks.11.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 242 |
+
"transformer_blocks.11.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 243 |
+
"transformer_blocks.11.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 244 |
+
"transformer_blocks.11.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 245 |
+
"transformer_blocks.11.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 246 |
+
"transformer_blocks.11.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 247 |
+
"transformer_blocks.11.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 248 |
+
"transformer_blocks.11.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 249 |
+
"transformer_blocks.11.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 250 |
+
"transformer_blocks.11.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 251 |
+
"transformer_blocks.12.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 252 |
+
"transformer_blocks.12.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 253 |
+
"transformer_blocks.12.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 254 |
+
"transformer_blocks.12.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 255 |
+
"transformer_blocks.12.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 256 |
+
"transformer_blocks.12.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 257 |
+
"transformer_blocks.12.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 258 |
+
"transformer_blocks.12.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 259 |
+
"transformer_blocks.12.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 260 |
+
"transformer_blocks.12.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 261 |
+
"transformer_blocks.12.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 262 |
+
"transformer_blocks.12.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 263 |
+
"transformer_blocks.12.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 264 |
+
"transformer_blocks.12.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 265 |
+
"transformer_blocks.12.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 266 |
+
"transformer_blocks.12.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 267 |
+
"transformer_blocks.12.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 268 |
+
"transformer_blocks.12.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 269 |
+
"transformer_blocks.12.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 270 |
+
"transformer_blocks.12.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 271 |
+
"transformer_blocks.12.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 272 |
+
"transformer_blocks.12.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 273 |
+
"transformer_blocks.12.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 274 |
+
"transformer_blocks.12.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 275 |
+
"transformer_blocks.12.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 276 |
+
"transformer_blocks.12.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 277 |
+
"transformer_blocks.12.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 278 |
+
"transformer_blocks.12.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 279 |
+
"transformer_blocks.12.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 280 |
+
"transformer_blocks.13.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 281 |
+
"transformer_blocks.13.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 282 |
+
"transformer_blocks.13.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 283 |
+
"transformer_blocks.13.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 284 |
+
"transformer_blocks.13.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 285 |
+
"transformer_blocks.13.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 286 |
+
"transformer_blocks.13.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 287 |
+
"transformer_blocks.13.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 288 |
+
"transformer_blocks.13.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 289 |
+
"transformer_blocks.13.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 290 |
+
"transformer_blocks.13.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 291 |
+
"transformer_blocks.13.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 292 |
+
"transformer_blocks.13.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 293 |
+
"transformer_blocks.13.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 294 |
+
"transformer_blocks.13.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 295 |
+
"transformer_blocks.13.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 296 |
+
"transformer_blocks.13.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 297 |
+
"transformer_blocks.13.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 298 |
+
"transformer_blocks.13.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 299 |
+
"transformer_blocks.13.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 300 |
+
"transformer_blocks.13.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 301 |
+
"transformer_blocks.13.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 302 |
+
"transformer_blocks.13.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 303 |
+
"transformer_blocks.13.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 304 |
+
"transformer_blocks.13.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 305 |
+
"transformer_blocks.13.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 306 |
+
"transformer_blocks.13.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 307 |
+
"transformer_blocks.13.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 308 |
+
"transformer_blocks.13.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 309 |
+
"transformer_blocks.14.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 310 |
+
"transformer_blocks.14.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 311 |
+
"transformer_blocks.14.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 312 |
+
"transformer_blocks.14.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 313 |
+
"transformer_blocks.14.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 314 |
+
"transformer_blocks.14.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 315 |
+
"transformer_blocks.14.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 316 |
+
"transformer_blocks.14.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 317 |
+
"transformer_blocks.14.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 318 |
+
"transformer_blocks.14.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 319 |
+
"transformer_blocks.14.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 320 |
+
"transformer_blocks.14.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 321 |
+
"transformer_blocks.14.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 322 |
+
"transformer_blocks.14.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 323 |
+
"transformer_blocks.14.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 324 |
+
"transformer_blocks.14.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 325 |
+
"transformer_blocks.14.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 326 |
+
"transformer_blocks.14.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 327 |
+
"transformer_blocks.14.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 328 |
+
"transformer_blocks.14.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 329 |
+
"transformer_blocks.14.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 330 |
+
"transformer_blocks.14.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 331 |
+
"transformer_blocks.14.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 332 |
+
"transformer_blocks.14.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 333 |
+
"transformer_blocks.14.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 334 |
+
"transformer_blocks.14.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 335 |
+
"transformer_blocks.14.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 336 |
+
"transformer_blocks.14.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 337 |
+
"transformer_blocks.14.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 338 |
+
"transformer_blocks.15.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 339 |
+
"transformer_blocks.15.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 340 |
+
"transformer_blocks.15.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 341 |
+
"transformer_blocks.15.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 342 |
+
"transformer_blocks.15.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 343 |
+
"transformer_blocks.15.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 344 |
+
"transformer_blocks.15.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 345 |
+
"transformer_blocks.15.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 346 |
+
"transformer_blocks.15.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 347 |
+
"transformer_blocks.15.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 348 |
+
"transformer_blocks.15.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 349 |
+
"transformer_blocks.15.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 350 |
+
"transformer_blocks.15.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 351 |
+
"transformer_blocks.15.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 352 |
+
"transformer_blocks.15.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 353 |
+
"transformer_blocks.15.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 354 |
+
"transformer_blocks.15.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 355 |
+
"transformer_blocks.15.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 356 |
+
"transformer_blocks.15.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 357 |
+
"transformer_blocks.15.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 358 |
+
"transformer_blocks.15.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 359 |
+
"transformer_blocks.15.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 360 |
+
"transformer_blocks.15.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 361 |
+
"transformer_blocks.15.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 362 |
+
"transformer_blocks.15.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 363 |
+
"transformer_blocks.15.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 364 |
+
"transformer_blocks.15.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 365 |
+
"transformer_blocks.15.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 366 |
+
"transformer_blocks.15.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 367 |
+
"transformer_blocks.16.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 368 |
+
"transformer_blocks.16.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 369 |
+
"transformer_blocks.16.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 370 |
+
"transformer_blocks.16.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 371 |
+
"transformer_blocks.16.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 372 |
+
"transformer_blocks.16.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 373 |
+
"transformer_blocks.16.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 374 |
+
"transformer_blocks.16.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 375 |
+
"transformer_blocks.16.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 376 |
+
"transformer_blocks.16.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 377 |
+
"transformer_blocks.16.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 378 |
+
"transformer_blocks.16.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 379 |
+
"transformer_blocks.16.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 380 |
+
"transformer_blocks.16.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 381 |
+
"transformer_blocks.16.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 382 |
+
"transformer_blocks.16.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 383 |
+
"transformer_blocks.16.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 384 |
+
"transformer_blocks.16.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 385 |
+
"transformer_blocks.16.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 386 |
+
"transformer_blocks.16.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 387 |
+
"transformer_blocks.16.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 388 |
+
"transformer_blocks.16.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 389 |
+
"transformer_blocks.16.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 390 |
+
"transformer_blocks.16.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 391 |
+
"transformer_blocks.16.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 392 |
+
"transformer_blocks.16.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 393 |
+
"transformer_blocks.16.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 394 |
+
"transformer_blocks.16.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 395 |
+
"transformer_blocks.16.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 396 |
+
"transformer_blocks.17.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 397 |
+
"transformer_blocks.17.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 398 |
+
"transformer_blocks.17.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 399 |
+
"transformer_blocks.17.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 400 |
+
"transformer_blocks.17.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 401 |
+
"transformer_blocks.17.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 402 |
+
"transformer_blocks.17.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 403 |
+
"transformer_blocks.17.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 404 |
+
"transformer_blocks.17.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 405 |
+
"transformer_blocks.17.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 406 |
+
"transformer_blocks.17.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 407 |
+
"transformer_blocks.17.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 408 |
+
"transformer_blocks.17.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 409 |
+
"transformer_blocks.17.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 410 |
+
"transformer_blocks.17.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 411 |
+
"transformer_blocks.17.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 412 |
+
"transformer_blocks.17.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 413 |
+
"transformer_blocks.17.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 414 |
+
"transformer_blocks.17.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 415 |
+
"transformer_blocks.17.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 416 |
+
"transformer_blocks.17.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 417 |
+
"transformer_blocks.17.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 418 |
+
"transformer_blocks.17.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 419 |
+
"transformer_blocks.17.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 420 |
+
"transformer_blocks.17.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 421 |
+
"transformer_blocks.17.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 422 |
+
"transformer_blocks.17.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 423 |
+
"transformer_blocks.17.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 424 |
+
"transformer_blocks.17.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 425 |
+
"transformer_blocks.18.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 426 |
+
"transformer_blocks.18.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 427 |
+
"transformer_blocks.18.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 428 |
+
"transformer_blocks.18.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 429 |
+
"transformer_blocks.18.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 430 |
+
"transformer_blocks.18.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 431 |
+
"transformer_blocks.18.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 432 |
+
"transformer_blocks.18.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 433 |
+
"transformer_blocks.18.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 434 |
+
"transformer_blocks.18.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 435 |
+
"transformer_blocks.18.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 436 |
+
"transformer_blocks.18.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 437 |
+
"transformer_blocks.18.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 438 |
+
"transformer_blocks.18.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 439 |
+
"transformer_blocks.18.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 440 |
+
"transformer_blocks.18.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 441 |
+
"transformer_blocks.18.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 442 |
+
"transformer_blocks.18.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 443 |
+
"transformer_blocks.18.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 444 |
+
"transformer_blocks.18.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 445 |
+
"transformer_blocks.18.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 446 |
+
"transformer_blocks.18.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 447 |
+
"transformer_blocks.18.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 448 |
+
"transformer_blocks.18.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 449 |
+
"transformer_blocks.18.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 450 |
+
"transformer_blocks.18.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 451 |
+
"transformer_blocks.18.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 452 |
+
"transformer_blocks.18.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 453 |
+
"transformer_blocks.18.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 454 |
+
"transformer_blocks.19.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 455 |
+
"transformer_blocks.19.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 456 |
+
"transformer_blocks.19.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 457 |
+
"transformer_blocks.19.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 458 |
+
"transformer_blocks.19.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 459 |
+
"transformer_blocks.19.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 460 |
+
"transformer_blocks.19.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 461 |
+
"transformer_blocks.19.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 462 |
+
"transformer_blocks.19.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 463 |
+
"transformer_blocks.19.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 464 |
+
"transformer_blocks.19.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 465 |
+
"transformer_blocks.19.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 466 |
+
"transformer_blocks.19.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 467 |
+
"transformer_blocks.19.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 468 |
+
"transformer_blocks.19.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 469 |
+
"transformer_blocks.19.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 470 |
+
"transformer_blocks.19.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 471 |
+
"transformer_blocks.19.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 472 |
+
"transformer_blocks.19.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 473 |
+
"transformer_blocks.19.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 474 |
+
"transformer_blocks.19.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 475 |
+
"transformer_blocks.19.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 476 |
+
"transformer_blocks.19.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 477 |
+
"transformer_blocks.19.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 478 |
+
"transformer_blocks.19.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 479 |
+
"transformer_blocks.19.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 480 |
+
"transformer_blocks.19.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 481 |
+
"transformer_blocks.19.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 482 |
+
"transformer_blocks.19.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 483 |
+
"transformer_blocks.2.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 484 |
+
"transformer_blocks.2.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 485 |
+
"transformer_blocks.2.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 486 |
+
"transformer_blocks.2.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 487 |
+
"transformer_blocks.2.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 488 |
+
"transformer_blocks.2.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 489 |
+
"transformer_blocks.2.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 490 |
+
"transformer_blocks.2.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 491 |
+
"transformer_blocks.2.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 492 |
+
"transformer_blocks.2.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 493 |
+
"transformer_blocks.2.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 494 |
+
"transformer_blocks.2.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 495 |
+
"transformer_blocks.2.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 496 |
+
"transformer_blocks.2.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 497 |
+
"transformer_blocks.2.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 498 |
+
"transformer_blocks.2.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 499 |
+
"transformer_blocks.2.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 500 |
+
"transformer_blocks.2.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 501 |
+
"transformer_blocks.2.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 502 |
+
"transformer_blocks.2.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 503 |
+
"transformer_blocks.2.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 504 |
+
"transformer_blocks.2.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 505 |
+
"transformer_blocks.2.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 506 |
+
"transformer_blocks.2.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 507 |
+
"transformer_blocks.2.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 508 |
+
"transformer_blocks.2.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 509 |
+
"transformer_blocks.2.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 510 |
+
"transformer_blocks.2.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 511 |
+
"transformer_blocks.2.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 512 |
+
"transformer_blocks.20.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 513 |
+
"transformer_blocks.20.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 514 |
+
"transformer_blocks.20.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 515 |
+
"transformer_blocks.20.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 516 |
+
"transformer_blocks.20.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 517 |
+
"transformer_blocks.20.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 518 |
+
"transformer_blocks.20.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 519 |
+
"transformer_blocks.20.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 520 |
+
"transformer_blocks.20.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 521 |
+
"transformer_blocks.20.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 522 |
+
"transformer_blocks.20.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 523 |
+
"transformer_blocks.20.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 524 |
+
"transformer_blocks.20.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 525 |
+
"transformer_blocks.20.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 526 |
+
"transformer_blocks.20.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 527 |
+
"transformer_blocks.20.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 528 |
+
"transformer_blocks.20.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 529 |
+
"transformer_blocks.20.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 530 |
+
"transformer_blocks.20.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 531 |
+
"transformer_blocks.20.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 532 |
+
"transformer_blocks.20.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 533 |
+
"transformer_blocks.20.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 534 |
+
"transformer_blocks.20.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 535 |
+
"transformer_blocks.20.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 536 |
+
"transformer_blocks.20.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 537 |
+
"transformer_blocks.20.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 538 |
+
"transformer_blocks.20.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 539 |
+
"transformer_blocks.20.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 540 |
+
"transformer_blocks.20.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 541 |
+
"transformer_blocks.21.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 542 |
+
"transformer_blocks.21.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 543 |
+
"transformer_blocks.21.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 544 |
+
"transformer_blocks.21.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 545 |
+
"transformer_blocks.21.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 546 |
+
"transformer_blocks.21.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 547 |
+
"transformer_blocks.21.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 548 |
+
"transformer_blocks.21.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 549 |
+
"transformer_blocks.21.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 550 |
+
"transformer_blocks.21.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 551 |
+
"transformer_blocks.21.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 552 |
+
"transformer_blocks.21.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 553 |
+
"transformer_blocks.21.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 554 |
+
"transformer_blocks.21.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 555 |
+
"transformer_blocks.21.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 556 |
+
"transformer_blocks.21.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 557 |
+
"transformer_blocks.21.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 558 |
+
"transformer_blocks.21.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 559 |
+
"transformer_blocks.21.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 560 |
+
"transformer_blocks.21.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 561 |
+
"transformer_blocks.21.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 562 |
+
"transformer_blocks.21.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 563 |
+
"transformer_blocks.21.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 564 |
+
"transformer_blocks.21.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 565 |
+
"transformer_blocks.21.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 566 |
+
"transformer_blocks.21.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 567 |
+
"transformer_blocks.21.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 568 |
+
"transformer_blocks.21.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 569 |
+
"transformer_blocks.21.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 570 |
+
"transformer_blocks.22.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 571 |
+
"transformer_blocks.22.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 572 |
+
"transformer_blocks.22.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 573 |
+
"transformer_blocks.22.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 574 |
+
"transformer_blocks.22.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 575 |
+
"transformer_blocks.22.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 576 |
+
"transformer_blocks.22.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 577 |
+
"transformer_blocks.22.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 578 |
+
"transformer_blocks.22.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 579 |
+
"transformer_blocks.22.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 580 |
+
"transformer_blocks.22.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 581 |
+
"transformer_blocks.22.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 582 |
+
"transformer_blocks.22.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 583 |
+
"transformer_blocks.22.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 584 |
+
"transformer_blocks.22.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 585 |
+
"transformer_blocks.22.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 586 |
+
"transformer_blocks.22.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 587 |
+
"transformer_blocks.22.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 588 |
+
"transformer_blocks.22.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 589 |
+
"transformer_blocks.22.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 590 |
+
"transformer_blocks.22.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 591 |
+
"transformer_blocks.22.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 592 |
+
"transformer_blocks.22.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 593 |
+
"transformer_blocks.22.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 594 |
+
"transformer_blocks.22.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 595 |
+
"transformer_blocks.22.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 596 |
+
"transformer_blocks.22.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 597 |
+
"transformer_blocks.22.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 598 |
+
"transformer_blocks.22.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 599 |
+
"transformer_blocks.23.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 600 |
+
"transformer_blocks.23.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 601 |
+
"transformer_blocks.23.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 602 |
+
"transformer_blocks.23.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 603 |
+
"transformer_blocks.23.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 604 |
+
"transformer_blocks.23.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 605 |
+
"transformer_blocks.23.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 606 |
+
"transformer_blocks.23.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 607 |
+
"transformer_blocks.23.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 608 |
+
"transformer_blocks.23.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 609 |
+
"transformer_blocks.23.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 610 |
+
"transformer_blocks.23.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 611 |
+
"transformer_blocks.23.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 612 |
+
"transformer_blocks.23.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 613 |
+
"transformer_blocks.23.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 614 |
+
"transformer_blocks.23.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 615 |
+
"transformer_blocks.23.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 616 |
+
"transformer_blocks.23.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 617 |
+
"transformer_blocks.23.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 618 |
+
"transformer_blocks.23.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 619 |
+
"transformer_blocks.23.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 620 |
+
"transformer_blocks.23.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 621 |
+
"transformer_blocks.23.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 622 |
+
"transformer_blocks.23.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 623 |
+
"transformer_blocks.23.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 624 |
+
"transformer_blocks.23.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 625 |
+
"transformer_blocks.23.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 626 |
+
"transformer_blocks.23.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 627 |
+
"transformer_blocks.23.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 628 |
+
"transformer_blocks.24.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 629 |
+
"transformer_blocks.24.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 630 |
+
"transformer_blocks.24.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 631 |
+
"transformer_blocks.24.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 632 |
+
"transformer_blocks.24.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 633 |
+
"transformer_blocks.24.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 634 |
+
"transformer_blocks.24.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 635 |
+
"transformer_blocks.24.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 636 |
+
"transformer_blocks.24.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 637 |
+
"transformer_blocks.24.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 638 |
+
"transformer_blocks.24.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 639 |
+
"transformer_blocks.24.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 640 |
+
"transformer_blocks.24.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 641 |
+
"transformer_blocks.24.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 642 |
+
"transformer_blocks.24.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 643 |
+
"transformer_blocks.24.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 644 |
+
"transformer_blocks.24.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 645 |
+
"transformer_blocks.24.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 646 |
+
"transformer_blocks.24.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 647 |
+
"transformer_blocks.24.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 648 |
+
"transformer_blocks.24.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 649 |
+
"transformer_blocks.24.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 650 |
+
"transformer_blocks.24.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 651 |
+
"transformer_blocks.24.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 652 |
+
"transformer_blocks.24.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 653 |
+
"transformer_blocks.24.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 654 |
+
"transformer_blocks.24.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 655 |
+
"transformer_blocks.24.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 656 |
+
"transformer_blocks.24.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 657 |
+
"transformer_blocks.25.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 658 |
+
"transformer_blocks.25.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 659 |
+
"transformer_blocks.25.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 660 |
+
"transformer_blocks.25.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 661 |
+
"transformer_blocks.25.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 662 |
+
"transformer_blocks.25.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 663 |
+
"transformer_blocks.25.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 664 |
+
"transformer_blocks.25.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 665 |
+
"transformer_blocks.25.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 666 |
+
"transformer_blocks.25.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 667 |
+
"transformer_blocks.25.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 668 |
+
"transformer_blocks.25.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 669 |
+
"transformer_blocks.25.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 670 |
+
"transformer_blocks.25.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 671 |
+
"transformer_blocks.25.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 672 |
+
"transformer_blocks.25.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 673 |
+
"transformer_blocks.25.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 674 |
+
"transformer_blocks.25.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 675 |
+
"transformer_blocks.25.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 676 |
+
"transformer_blocks.25.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 677 |
+
"transformer_blocks.25.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 678 |
+
"transformer_blocks.25.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 679 |
+
"transformer_blocks.25.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 680 |
+
"transformer_blocks.25.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 681 |
+
"transformer_blocks.25.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 682 |
+
"transformer_blocks.25.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 683 |
+
"transformer_blocks.25.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 684 |
+
"transformer_blocks.25.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 685 |
+
"transformer_blocks.25.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 686 |
+
"transformer_blocks.26.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 687 |
+
"transformer_blocks.26.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 688 |
+
"transformer_blocks.26.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 689 |
+
"transformer_blocks.26.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 690 |
+
"transformer_blocks.26.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 691 |
+
"transformer_blocks.26.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 692 |
+
"transformer_blocks.26.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 693 |
+
"transformer_blocks.26.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 694 |
+
"transformer_blocks.26.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 695 |
+
"transformer_blocks.26.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 696 |
+
"transformer_blocks.26.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 697 |
+
"transformer_blocks.26.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 698 |
+
"transformer_blocks.26.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 699 |
+
"transformer_blocks.26.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 700 |
+
"transformer_blocks.26.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 701 |
+
"transformer_blocks.26.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 702 |
+
"transformer_blocks.26.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 703 |
+
"transformer_blocks.26.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 704 |
+
"transformer_blocks.26.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 705 |
+
"transformer_blocks.26.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 706 |
+
"transformer_blocks.26.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 707 |
+
"transformer_blocks.26.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 708 |
+
"transformer_blocks.26.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 709 |
+
"transformer_blocks.26.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 710 |
+
"transformer_blocks.26.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 711 |
+
"transformer_blocks.26.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 712 |
+
"transformer_blocks.26.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 713 |
+
"transformer_blocks.26.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 714 |
+
"transformer_blocks.26.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 715 |
+
"transformer_blocks.27.attn.norm_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 716 |
+
"transformer_blocks.27.attn.norm_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 717 |
+
"transformer_blocks.27.attn.to_gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 718 |
+
"transformer_blocks.27.attn.to_gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 719 |
+
"transformer_blocks.27.attn.to_gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 720 |
+
"transformer_blocks.27.attn.to_k.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 721 |
+
"transformer_blocks.27.attn.to_k.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 722 |
+
"transformer_blocks.27.attn.to_k.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 723 |
+
"transformer_blocks.27.attn.to_out.0.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 724 |
+
"transformer_blocks.27.attn.to_out.0.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 725 |
+
"transformer_blocks.27.attn.to_out.0.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 726 |
+
"transformer_blocks.27.attn.to_q.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 727 |
+
"transformer_blocks.27.attn.to_q.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 728 |
+
"transformer_blocks.27.attn.to_q.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 729 |
+
"transformer_blocks.27.attn.to_v.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 730 |
+
"transformer_blocks.27.attn.to_v.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 731 |
+
"transformer_blocks.27.attn.to_v.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 732 |
+
"transformer_blocks.27.ff.down.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 733 |
+
"transformer_blocks.27.ff.down.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 734 |
+
"transformer_blocks.27.ff.down.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 735 |
+
"transformer_blocks.27.ff.gate.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 736 |
+
"transformer_blocks.27.ff.gate.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 737 |
+
"transformer_blocks.27.ff.gate.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 738 |
+
"transformer_blocks.27.ff.up.scale": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 739 |
+
"transformer_blocks.27.ff.up.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 740 |
+
"transformer_blocks.27.ff.up.zero_point": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 741 |
+
"transformer_blocks.27.norm1.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 742 |
+
"transformer_blocks.27.norm2.weight": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 743 |
+
"transformer_blocks.27.scale_shift_table": "diffusion_pytorch_model-00002-of-00002.safetensors",
|
| 744 |
+
"transformer_blocks.3.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 745 |
+
"transformer_blocks.3.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 746 |
+
"transformer_blocks.3.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 747 |
+
"transformer_blocks.3.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 748 |
+
"transformer_blocks.3.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 749 |
+
"transformer_blocks.3.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 750 |
+
"transformer_blocks.3.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 751 |
+
"transformer_blocks.3.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 752 |
+
"transformer_blocks.3.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 753 |
+
"transformer_blocks.3.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 754 |
+
"transformer_blocks.3.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 755 |
+
"transformer_blocks.3.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 756 |
+
"transformer_blocks.3.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 757 |
+
"transformer_blocks.3.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 758 |
+
"transformer_blocks.3.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 759 |
+
"transformer_blocks.3.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 760 |
+
"transformer_blocks.3.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 761 |
+
"transformer_blocks.3.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 762 |
+
"transformer_blocks.3.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 763 |
+
"transformer_blocks.3.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 764 |
+
"transformer_blocks.3.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 765 |
+
"transformer_blocks.3.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 766 |
+
"transformer_blocks.3.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 767 |
+
"transformer_blocks.3.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 768 |
+
"transformer_blocks.3.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 769 |
+
"transformer_blocks.3.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 770 |
+
"transformer_blocks.3.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 771 |
+
"transformer_blocks.3.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 772 |
+
"transformer_blocks.3.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 773 |
+
"transformer_blocks.4.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 774 |
+
"transformer_blocks.4.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 775 |
+
"transformer_blocks.4.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 776 |
+
"transformer_blocks.4.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 777 |
+
"transformer_blocks.4.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 778 |
+
"transformer_blocks.4.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 779 |
+
"transformer_blocks.4.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 780 |
+
"transformer_blocks.4.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 781 |
+
"transformer_blocks.4.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 782 |
+
"transformer_blocks.4.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 783 |
+
"transformer_blocks.4.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 784 |
+
"transformer_blocks.4.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 785 |
+
"transformer_blocks.4.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 786 |
+
"transformer_blocks.4.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 787 |
+
"transformer_blocks.4.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 788 |
+
"transformer_blocks.4.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 789 |
+
"transformer_blocks.4.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 790 |
+
"transformer_blocks.4.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 791 |
+
"transformer_blocks.4.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 792 |
+
"transformer_blocks.4.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 793 |
+
"transformer_blocks.4.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 794 |
+
"transformer_blocks.4.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 795 |
+
"transformer_blocks.4.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 796 |
+
"transformer_blocks.4.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 797 |
+
"transformer_blocks.4.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 798 |
+
"transformer_blocks.4.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 799 |
+
"transformer_blocks.4.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 800 |
+
"transformer_blocks.4.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 801 |
+
"transformer_blocks.4.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 802 |
+
"transformer_blocks.5.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 803 |
+
"transformer_blocks.5.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 804 |
+
"transformer_blocks.5.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 805 |
+
"transformer_blocks.5.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 806 |
+
"transformer_blocks.5.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 807 |
+
"transformer_blocks.5.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 808 |
+
"transformer_blocks.5.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 809 |
+
"transformer_blocks.5.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 810 |
+
"transformer_blocks.5.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 811 |
+
"transformer_blocks.5.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 812 |
+
"transformer_blocks.5.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 813 |
+
"transformer_blocks.5.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 814 |
+
"transformer_blocks.5.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 815 |
+
"transformer_blocks.5.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 816 |
+
"transformer_blocks.5.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 817 |
+
"transformer_blocks.5.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 818 |
+
"transformer_blocks.5.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 819 |
+
"transformer_blocks.5.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 820 |
+
"transformer_blocks.5.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 821 |
+
"transformer_blocks.5.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 822 |
+
"transformer_blocks.5.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 823 |
+
"transformer_blocks.5.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 824 |
+
"transformer_blocks.5.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 825 |
+
"transformer_blocks.5.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 826 |
+
"transformer_blocks.5.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 827 |
+
"transformer_blocks.5.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 828 |
+
"transformer_blocks.5.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 829 |
+
"transformer_blocks.5.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 830 |
+
"transformer_blocks.5.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 831 |
+
"transformer_blocks.6.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 832 |
+
"transformer_blocks.6.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 833 |
+
"transformer_blocks.6.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 834 |
+
"transformer_blocks.6.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 835 |
+
"transformer_blocks.6.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 836 |
+
"transformer_blocks.6.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 837 |
+
"transformer_blocks.6.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 838 |
+
"transformer_blocks.6.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 839 |
+
"transformer_blocks.6.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 840 |
+
"transformer_blocks.6.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 841 |
+
"transformer_blocks.6.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 842 |
+
"transformer_blocks.6.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 843 |
+
"transformer_blocks.6.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 844 |
+
"transformer_blocks.6.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 845 |
+
"transformer_blocks.6.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 846 |
+
"transformer_blocks.6.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 847 |
+
"transformer_blocks.6.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 848 |
+
"transformer_blocks.6.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 849 |
+
"transformer_blocks.6.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 850 |
+
"transformer_blocks.6.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 851 |
+
"transformer_blocks.6.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 852 |
+
"transformer_blocks.6.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 853 |
+
"transformer_blocks.6.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 854 |
+
"transformer_blocks.6.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 855 |
+
"transformer_blocks.6.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 856 |
+
"transformer_blocks.6.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 857 |
+
"transformer_blocks.6.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 858 |
+
"transformer_blocks.6.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 859 |
+
"transformer_blocks.6.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 860 |
+
"transformer_blocks.7.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 861 |
+
"transformer_blocks.7.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 862 |
+
"transformer_blocks.7.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 863 |
+
"transformer_blocks.7.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 864 |
+
"transformer_blocks.7.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 865 |
+
"transformer_blocks.7.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 866 |
+
"transformer_blocks.7.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 867 |
+
"transformer_blocks.7.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 868 |
+
"transformer_blocks.7.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 869 |
+
"transformer_blocks.7.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 870 |
+
"transformer_blocks.7.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 871 |
+
"transformer_blocks.7.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 872 |
+
"transformer_blocks.7.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 873 |
+
"transformer_blocks.7.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 874 |
+
"transformer_blocks.7.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 875 |
+
"transformer_blocks.7.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 876 |
+
"transformer_blocks.7.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 877 |
+
"transformer_blocks.7.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 878 |
+
"transformer_blocks.7.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 879 |
+
"transformer_blocks.7.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 880 |
+
"transformer_blocks.7.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 881 |
+
"transformer_blocks.7.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 882 |
+
"transformer_blocks.7.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 883 |
+
"transformer_blocks.7.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 884 |
+
"transformer_blocks.7.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 885 |
+
"transformer_blocks.7.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 886 |
+
"transformer_blocks.7.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 887 |
+
"transformer_blocks.7.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 888 |
+
"transformer_blocks.7.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 889 |
+
"transformer_blocks.8.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 890 |
+
"transformer_blocks.8.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 891 |
+
"transformer_blocks.8.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 892 |
+
"transformer_blocks.8.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 893 |
+
"transformer_blocks.8.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 894 |
+
"transformer_blocks.8.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 895 |
+
"transformer_blocks.8.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 896 |
+
"transformer_blocks.8.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 897 |
+
"transformer_blocks.8.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 898 |
+
"transformer_blocks.8.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 899 |
+
"transformer_blocks.8.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 900 |
+
"transformer_blocks.8.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 901 |
+
"transformer_blocks.8.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 902 |
+
"transformer_blocks.8.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 903 |
+
"transformer_blocks.8.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 904 |
+
"transformer_blocks.8.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 905 |
+
"transformer_blocks.8.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 906 |
+
"transformer_blocks.8.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 907 |
+
"transformer_blocks.8.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 908 |
+
"transformer_blocks.8.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 909 |
+
"transformer_blocks.8.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 910 |
+
"transformer_blocks.8.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 911 |
+
"transformer_blocks.8.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 912 |
+
"transformer_blocks.8.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 913 |
+
"transformer_blocks.8.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 914 |
+
"transformer_blocks.8.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 915 |
+
"transformer_blocks.8.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 916 |
+
"transformer_blocks.8.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 917 |
+
"transformer_blocks.8.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 918 |
+
"transformer_blocks.9.attn.norm_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 919 |
+
"transformer_blocks.9.attn.norm_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 920 |
+
"transformer_blocks.9.attn.to_gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 921 |
+
"transformer_blocks.9.attn.to_gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 922 |
+
"transformer_blocks.9.attn.to_gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 923 |
+
"transformer_blocks.9.attn.to_k.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 924 |
+
"transformer_blocks.9.attn.to_k.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 925 |
+
"transformer_blocks.9.attn.to_k.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 926 |
+
"transformer_blocks.9.attn.to_out.0.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 927 |
+
"transformer_blocks.9.attn.to_out.0.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 928 |
+
"transformer_blocks.9.attn.to_out.0.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 929 |
+
"transformer_blocks.9.attn.to_q.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 930 |
+
"transformer_blocks.9.attn.to_q.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 931 |
+
"transformer_blocks.9.attn.to_q.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 932 |
+
"transformer_blocks.9.attn.to_v.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 933 |
+
"transformer_blocks.9.attn.to_v.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 934 |
+
"transformer_blocks.9.attn.to_v.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 935 |
+
"transformer_blocks.9.ff.down.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 936 |
+
"transformer_blocks.9.ff.down.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 937 |
+
"transformer_blocks.9.ff.down.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 938 |
+
"transformer_blocks.9.ff.gate.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 939 |
+
"transformer_blocks.9.ff.gate.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 940 |
+
"transformer_blocks.9.ff.gate.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 941 |
+
"transformer_blocks.9.ff.up.scale": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 942 |
+
"transformer_blocks.9.ff.up.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 943 |
+
"transformer_blocks.9.ff.up.zero_point": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 944 |
+
"transformer_blocks.9.norm1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 945 |
+
"transformer_blocks.9.norm2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 946 |
+
"transformer_blocks.9.scale_shift_table": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 947 |
+
"txt_in.linear_1.bias": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 948 |
+
"txt_in.linear_1.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 949 |
+
"txt_in.linear_2.bias": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 950 |
+
"txt_in.linear_2.weight": "diffusion_pytorch_model-00001-of-00002.safetensors",
|
| 951 |
+
"txt_in.norm.weight": "diffusion_pytorch_model-00001-of-00002.safetensors"
|
| 952 |
+
}
|
| 953 |
+
}
|
transformer/quantization_config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_skip_keys": true,
|
| 3 |
+
"dequantize_fp32": false,
|
| 4 |
+
"dynamic_loss_threshold": null,
|
| 5 |
+
"group_size": 0,
|
| 6 |
+
"hadamard_group_size": 256,
|
| 7 |
+
"is_integer": true,
|
| 8 |
+
"is_training": false,
|
| 9 |
+
"modules_dtype_dict": {},
|
| 10 |
+
"modules_quant_config": {},
|
| 11 |
+
"modules_to_not_convert": [
|
| 12 |
+
".proj_out",
|
| 13 |
+
"patch_embed",
|
| 14 |
+
".y_embedder",
|
| 15 |
+
".txt_in",
|
| 16 |
+
"lm_head",
|
| 17 |
+
"time_embed",
|
| 18 |
+
".txt_out",
|
| 19 |
+
".emb_out",
|
| 20 |
+
".x_embedder",
|
| 21 |
+
"patch_emb",
|
| 22 |
+
".vid_in",
|
| 23 |
+
".emb_in",
|
| 24 |
+
"time_text_embed",
|
| 25 |
+
".condition_embedder",
|
| 26 |
+
"norm_k",
|
| 27 |
+
".t_embedder",
|
| 28 |
+
"multi_modal_projector",
|
| 29 |
+
"norm1",
|
| 30 |
+
"norm2",
|
| 31 |
+
".time_embed",
|
| 32 |
+
".context_embedder",
|
| 33 |
+
".vid_out",
|
| 34 |
+
".final_layer",
|
| 35 |
+
"patch_embedding",
|
| 36 |
+
".img_out",
|
| 37 |
+
".norm_out",
|
| 38 |
+
"wte",
|
| 39 |
+
".img_in",
|
| 40 |
+
"norm",
|
| 41 |
+
"norm_q"
|
| 42 |
+
],
|
| 43 |
+
"modules_to_not_use_matmul": [],
|
| 44 |
+
"non_blocking": true,
|
| 45 |
+
"quant_conv": false,
|
| 46 |
+
"quant_embedding": false,
|
| 47 |
+
"quant_method": "sdnq",
|
| 48 |
+
"quantization_device": "cuda",
|
| 49 |
+
"quantized_matmul_dtype": null,
|
| 50 |
+
"return_device": "cpu",
|
| 51 |
+
"sdnq_version": "0.2.0",
|
| 52 |
+
"svd_rank": 32,
|
| 53 |
+
"svd_steps": 32,
|
| 54 |
+
"use_dynamic_quantization": false,
|
| 55 |
+
"use_grad_ckpt": true,
|
| 56 |
+
"use_hadamard": false,
|
| 57 |
+
"use_quantized_matmul": false,
|
| 58 |
+
"use_quantized_matmul_conv": false,
|
| 59 |
+
"use_static_quantization": true,
|
| 60 |
+
"use_stochastic_rounding": false,
|
| 61 |
+
"use_svd": false,
|
| 62 |
+
"weights_dtype": "uint4"
|
| 63 |
+
}
|
vae/config.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKLQwenImage",
|
| 3 |
+
"_diffusers_version": "0.39.0.dev0",
|
| 4 |
+
"_name_or_path": "/workspace/krea2-sdnq-lab/hf-home/hub/models--krea--Krea-2-Raw/snapshots/4ad9f4b627a647fad78b3dfeebb09f2654aeb494/vae",
|
| 5 |
+
"attn_scales": [],
|
| 6 |
+
"base_dim": 96,
|
| 7 |
+
"dim_mult": [
|
| 8 |
+
1,
|
| 9 |
+
2,
|
| 10 |
+
4,
|
| 11 |
+
4
|
| 12 |
+
],
|
| 13 |
+
"dropout": 0.0,
|
| 14 |
+
"input_channels": 3,
|
| 15 |
+
"latents_mean": [
|
| 16 |
+
-0.7571,
|
| 17 |
+
-0.7089,
|
| 18 |
+
-0.9113,
|
| 19 |
+
0.1075,
|
| 20 |
+
-0.1745,
|
| 21 |
+
0.9653,
|
| 22 |
+
-0.1517,
|
| 23 |
+
1.5508,
|
| 24 |
+
0.4134,
|
| 25 |
+
-0.0715,
|
| 26 |
+
0.5517,
|
| 27 |
+
-0.3632,
|
| 28 |
+
-0.1922,
|
| 29 |
+
-0.9497,
|
| 30 |
+
0.2503,
|
| 31 |
+
-0.2921
|
| 32 |
+
],
|
| 33 |
+
"latents_std": [
|
| 34 |
+
2.8184,
|
| 35 |
+
1.4541,
|
| 36 |
+
2.3275,
|
| 37 |
+
2.6558,
|
| 38 |
+
1.2196,
|
| 39 |
+
1.7708,
|
| 40 |
+
2.6052,
|
| 41 |
+
2.0743,
|
| 42 |
+
3.2687,
|
| 43 |
+
2.1526,
|
| 44 |
+
2.8652,
|
| 45 |
+
1.5579,
|
| 46 |
+
1.6382,
|
| 47 |
+
1.1253,
|
| 48 |
+
2.8251,
|
| 49 |
+
1.916
|
| 50 |
+
],
|
| 51 |
+
"num_res_blocks": 2,
|
| 52 |
+
"temperal_downsample": [
|
| 53 |
+
false,
|
| 54 |
+
true,
|
| 55 |
+
true
|
| 56 |
+
],
|
| 57 |
+
"z_dim": 16
|
| 58 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c8bc8b758c649abef9ea407b95408389a3b2f610d0d10fcb054fe171d0a8344
|
| 3 |
+
size 253806966
|