aufklarer commited on
Commit
79a6d69
·
verified ·
1 Parent(s): ad65aa2

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +101 -0
  2. config.json +2951 -0
  3. model.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - mlx
7
+ - audio
8
+ - music
9
+ - audio-super-resolution
10
+ - flashsr
11
+ - latent-diffusion
12
+ - quantized
13
+ - int4
14
+ base_model: jakeoneijk/FlashSR_Inference
15
+ library_name: mlx
16
+ pipeline_tag: audio-to-audio
17
+ ---
18
+
19
+ # FlashSR-MLX-4bit
20
+
21
+ - [speech-swift](https://github.com/soniqo/speech-swift) — Apple SDK
22
+ - [soniqo.audio](https://soniqo.audio) — website
23
+ - [blog](https://soniqo.audio/blog) — blog
24
+
25
+ MLX port of [FlashSR](https://github.com/jakeoneijk/FlashSR_Inference) — a
26
+ **single-step** distilled latent-diffusion audio super-resolution model —
27
+ quantized to **INT4** weight-only for on-device inference on Apple Silicon.
28
+ Upsamples any-rate input (mono) to **48 kHz** in one diffusion pass with a
29
+ specialised BigVGAN-flavour SR vocoder. FlashSR is the distilled student of
30
+ [AudioSR](https://github.com/haoheliu/versatile_audio_super_resolution).
31
+
32
+ ## Model
33
+
34
+ | | |
35
+ |---|---|
36
+ | Total parameters | 638 M (VAE 223 M + UNet 258 M + Vocoder 157 M) |
37
+ | Diffusion steps | **1** (distilled v-prediction student, cosine schedule, t=999) |
38
+ | Quantization | INT4 weight-only, group size 64, mode `mlx_affine_flat` |
39
+ | Format | MLX safetensors (single combined bundle) |
40
+ | Sample rate | 48 kHz mono out (any-rate mono in) |
41
+ | Frame length | 5.12 s (245 760 samples) per forward |
42
+ | Bundle size | 346 MB on disk |
43
+ | Source | [jakeoneijk/FlashSR_Inference](https://github.com/jakeoneijk/FlashSR_Inference) |
44
+
45
+ ## Files
46
+
47
+ | File | Size | Description |
48
+ |---|---|---|
49
+ | `model.safetensors` | 346 MB | INT4-quantized VAE + UNet + SR Vocoder weights |
50
+ | `config.json` | ~70 KB | Sub-model configs + quantization metadata + original shape table for dequant-on-load |
51
+
52
+ The three sub-models share one safetensors file with `vae.*`, `ldm.*`, `voc.*`
53
+ key prefixes. `config.quantized_shapes` records each tensor's pre-flatten shape
54
+ so `mx.dequantize` can rebuild conv weight tensors at load time.
55
+
56
+ ## Performance (Apple Silicon, M-series, 5.12 s @ 48 kHz)
57
+
58
+ | Metric | Value |
59
+ |---|---|
60
+ | Real-time factor (wall / audio) | **1.10** |
61
+ | Load time | 0.17 s (dequant materialises bf16 weights once) |
62
+ | SNR vs FP16 reference | **+29.4 dB** |
63
+ | Cosine similarity vs FP16 | **0.9994** |
64
+ | Peak amplitude preservation | 1.000 |
65
+
66
+ INT4 is the recommended deployment variant — well above music-perceptual
67
+ threshold and the smallest viable on-device bundle.
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from huggingface_hub import snapshot_download
73
+ import mlx.core as mx
74
+ import numpy as np
75
+ import scipy.io.wavfile as wf
76
+ from scipy.signal import resample_poly
77
+
78
+ bundle = snapshot_download("aufklarer/FlashSR-MLX-4bit")
79
+ # See https://github.com/soniqo/speech-swift for production usage.
80
+
81
+ # Toy Python demo (requires the matching MLX FlashSR runtime):
82
+ sr, audio = wf.read("lr.wav")
83
+ audio = audio.astype(np.float32) / 32767.0
84
+ audio_48 = resample_poly(audio, 48000, sr).astype(np.float32)
85
+
86
+ from flashsr import FlashSR # from this repo's export/
87
+ model = FlashSR(bundle)
88
+ hr = model(mx.array(audio_48), seed=42)
89
+ mx.eval(hr)
90
+ wf.write("hr.wav", 48000, (np.clip(np.array(hr), -1, 1) * 32767).astype(np.int16))
91
+ ```
92
+
93
+ ## Source
94
+
95
+ - Upstream: [jakeoneijk/FlashSR_Inference](https://github.com/jakeoneijk/FlashSR_Inference)
96
+ - Paper: [FlashSR: One-step Versatile Audio Super-resolution via Diffusion Distillation](https://arxiv.org/abs/2501.10295)
97
+ - Teacher model: [AudioSR](https://github.com/haoheliu/versatile_audio_super_resolution)
98
+
99
+ ## License
100
+
101
+ **CC-BY-NC 4.0** — inherited from upstream FlashSR weights. Non-commercial use only.
config.json ADDED
@@ -0,0 +1,2951 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vae": {
3
+ "in_channels": 1,
4
+ "out_ch": 1,
5
+ "ch": 128,
6
+ "ch_mult": [
7
+ 1,
8
+ 2,
9
+ 4,
10
+ 8
11
+ ],
12
+ "num_res_blocks": 2,
13
+ "attn_resolutions": [],
14
+ "double_z": true,
15
+ "z_channels": 16,
16
+ "embed_dim": 16,
17
+ "dropout": 0.1,
18
+ "resolution": 256,
19
+ "mel_bins": 256,
20
+ "scale_factor_z": 0.3342
21
+ },
22
+ "ldm": {
23
+ "in_channels": 32,
24
+ "model_channels": 128,
25
+ "out_channels": 16,
26
+ "num_res_blocks": 2
27
+ },
28
+ "mel": {
29
+ "n_fft": 2048,
30
+ "hop": 480,
31
+ "sr": 48000,
32
+ "n_mels": 256,
33
+ "fmin": 20,
34
+ "fmax": 24000
35
+ },
36
+ "audio": {
37
+ "sample_rate": 48000,
38
+ "frame_samples": 245760,
39
+ "frame_sec": 5.12
40
+ },
41
+ "format": "int4",
42
+ "quantization": {
43
+ "mode": "mlx_affine_flat",
44
+ "bits": 4,
45
+ "group_size": 64,
46
+ "rule": "every weight with ndim>=2 and (prod(shape[1:]) % group_size == 0); reshape to (O, fan_in) before mx.quantize."
47
+ },
48
+ "quantized_shapes": {
49
+ "ldm.input_blocks.1.0.emb_layers.1.weight": [
50
+ 128,
51
+ 512
52
+ ],
53
+ "ldm.input_blocks.1.0.in_layers.2.weight": [
54
+ 128,
55
+ 3,
56
+ 3,
57
+ 128
58
+ ],
59
+ "ldm.input_blocks.1.0.out_layers.3.weight": [
60
+ 128,
61
+ 3,
62
+ 3,
63
+ 128
64
+ ],
65
+ "ldm.input_blocks.10.0.emb_layers.1.weight": [
66
+ 640,
67
+ 512
68
+ ],
69
+ "ldm.input_blocks.10.0.in_layers.2.weight": [
70
+ 640,
71
+ 3,
72
+ 3,
73
+ 384
74
+ ],
75
+ "ldm.input_blocks.10.0.out_layers.3.weight": [
76
+ 640,
77
+ 3,
78
+ 3,
79
+ 640
80
+ ],
81
+ "ldm.input_blocks.10.0.skip_connection.weight": [
82
+ 640,
83
+ 1,
84
+ 1,
85
+ 384
86
+ ],
87
+ "ldm.input_blocks.10.1.proj_in.weight": [
88
+ 640,
89
+ 1,
90
+ 1,
91
+ 640
92
+ ],
93
+ "ldm.input_blocks.10.1.proj_out.weight": [
94
+ 640,
95
+ 1,
96
+ 1,
97
+ 640
98
+ ],
99
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn1.to_k.weight": [
100
+ 640,
101
+ 640
102
+ ],
103
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn1.to_out.0.weight": [
104
+ 640,
105
+ 640
106
+ ],
107
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn1.to_q.weight": [
108
+ 640,
109
+ 640
110
+ ],
111
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn1.to_v.weight": [
112
+ 640,
113
+ 640
114
+ ],
115
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn2.to_k.weight": [
116
+ 640,
117
+ 640
118
+ ],
119
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn2.to_out.0.weight": [
120
+ 640,
121
+ 640
122
+ ],
123
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn2.to_q.weight": [
124
+ 640,
125
+ 640
126
+ ],
127
+ "ldm.input_blocks.10.1.transformer_blocks.0.attn2.to_v.weight": [
128
+ 640,
129
+ 640
130
+ ],
131
+ "ldm.input_blocks.10.1.transformer_blocks.0.ff.net.0.proj.weight": [
132
+ 5120,
133
+ 640
134
+ ],
135
+ "ldm.input_blocks.10.1.transformer_blocks.0.ff.net.2.weight": [
136
+ 640,
137
+ 2560
138
+ ],
139
+ "ldm.input_blocks.10.2.proj_in.weight": [
140
+ 640,
141
+ 1,
142
+ 1,
143
+ 640
144
+ ],
145
+ "ldm.input_blocks.10.2.proj_out.weight": [
146
+ 640,
147
+ 1,
148
+ 1,
149
+ 640
150
+ ],
151
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn1.to_k.weight": [
152
+ 640,
153
+ 640
154
+ ],
155
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn1.to_out.0.weight": [
156
+ 640,
157
+ 640
158
+ ],
159
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn1.to_q.weight": [
160
+ 640,
161
+ 640
162
+ ],
163
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn1.to_v.weight": [
164
+ 640,
165
+ 640
166
+ ],
167
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn2.to_k.weight": [
168
+ 640,
169
+ 640
170
+ ],
171
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn2.to_out.0.weight": [
172
+ 640,
173
+ 640
174
+ ],
175
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn2.to_q.weight": [
176
+ 640,
177
+ 640
178
+ ],
179
+ "ldm.input_blocks.10.2.transformer_blocks.0.attn2.to_v.weight": [
180
+ 640,
181
+ 640
182
+ ],
183
+ "ldm.input_blocks.10.2.transformer_blocks.0.ff.net.0.proj.weight": [
184
+ 5120,
185
+ 640
186
+ ],
187
+ "ldm.input_blocks.10.2.transformer_blocks.0.ff.net.2.weight": [
188
+ 640,
189
+ 2560
190
+ ],
191
+ "ldm.input_blocks.11.0.emb_layers.1.weight": [
192
+ 640,
193
+ 512
194
+ ],
195
+ "ldm.input_blocks.11.0.in_layers.2.weight": [
196
+ 640,
197
+ 3,
198
+ 3,
199
+ 640
200
+ ],
201
+ "ldm.input_blocks.11.0.out_layers.3.weight": [
202
+ 640,
203
+ 3,
204
+ 3,
205
+ 640
206
+ ],
207
+ "ldm.input_blocks.11.1.proj_in.weight": [
208
+ 640,
209
+ 1,
210
+ 1,
211
+ 640
212
+ ],
213
+ "ldm.input_blocks.11.1.proj_out.weight": [
214
+ 640,
215
+ 1,
216
+ 1,
217
+ 640
218
+ ],
219
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn1.to_k.weight": [
220
+ 640,
221
+ 640
222
+ ],
223
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn1.to_out.0.weight": [
224
+ 640,
225
+ 640
226
+ ],
227
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn1.to_q.weight": [
228
+ 640,
229
+ 640
230
+ ],
231
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn1.to_v.weight": [
232
+ 640,
233
+ 640
234
+ ],
235
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn2.to_k.weight": [
236
+ 640,
237
+ 640
238
+ ],
239
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn2.to_out.0.weight": [
240
+ 640,
241
+ 640
242
+ ],
243
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn2.to_q.weight": [
244
+ 640,
245
+ 640
246
+ ],
247
+ "ldm.input_blocks.11.1.transformer_blocks.0.attn2.to_v.weight": [
248
+ 640,
249
+ 640
250
+ ],
251
+ "ldm.input_blocks.11.1.transformer_blocks.0.ff.net.0.proj.weight": [
252
+ 5120,
253
+ 640
254
+ ],
255
+ "ldm.input_blocks.11.1.transformer_blocks.0.ff.net.2.weight": [
256
+ 640,
257
+ 2560
258
+ ],
259
+ "ldm.input_blocks.11.2.proj_in.weight": [
260
+ 640,
261
+ 1,
262
+ 1,
263
+ 640
264
+ ],
265
+ "ldm.input_blocks.11.2.proj_out.weight": [
266
+ 640,
267
+ 1,
268
+ 1,
269
+ 640
270
+ ],
271
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn1.to_k.weight": [
272
+ 640,
273
+ 640
274
+ ],
275
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn1.to_out.0.weight": [
276
+ 640,
277
+ 640
278
+ ],
279
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn1.to_q.weight": [
280
+ 640,
281
+ 640
282
+ ],
283
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn1.to_v.weight": [
284
+ 640,
285
+ 640
286
+ ],
287
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn2.to_k.weight": [
288
+ 640,
289
+ 640
290
+ ],
291
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn2.to_out.0.weight": [
292
+ 640,
293
+ 640
294
+ ],
295
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn2.to_q.weight": [
296
+ 640,
297
+ 640
298
+ ],
299
+ "ldm.input_blocks.11.2.transformer_blocks.0.attn2.to_v.weight": [
300
+ 640,
301
+ 640
302
+ ],
303
+ "ldm.input_blocks.11.2.transformer_blocks.0.ff.net.0.proj.weight": [
304
+ 5120,
305
+ 640
306
+ ],
307
+ "ldm.input_blocks.11.2.transformer_blocks.0.ff.net.2.weight": [
308
+ 640,
309
+ 2560
310
+ ],
311
+ "ldm.input_blocks.2.0.emb_layers.1.weight": [
312
+ 128,
313
+ 512
314
+ ],
315
+ "ldm.input_blocks.2.0.in_layers.2.weight": [
316
+ 128,
317
+ 3,
318
+ 3,
319
+ 128
320
+ ],
321
+ "ldm.input_blocks.2.0.out_layers.3.weight": [
322
+ 128,
323
+ 3,
324
+ 3,
325
+ 128
326
+ ],
327
+ "ldm.input_blocks.3.0.op.weight": [
328
+ 128,
329
+ 3,
330
+ 3,
331
+ 128
332
+ ],
333
+ "ldm.input_blocks.4.0.emb_layers.1.weight": [
334
+ 256,
335
+ 512
336
+ ],
337
+ "ldm.input_blocks.4.0.in_layers.2.weight": [
338
+ 256,
339
+ 3,
340
+ 3,
341
+ 128
342
+ ],
343
+ "ldm.input_blocks.4.0.out_layers.3.weight": [
344
+ 256,
345
+ 3,
346
+ 3,
347
+ 256
348
+ ],
349
+ "ldm.input_blocks.4.0.skip_connection.weight": [
350
+ 256,
351
+ 1,
352
+ 1,
353
+ 128
354
+ ],
355
+ "ldm.input_blocks.4.1.proj_in.weight": [
356
+ 256,
357
+ 1,
358
+ 1,
359
+ 256
360
+ ],
361
+ "ldm.input_blocks.4.1.proj_out.weight": [
362
+ 256,
363
+ 1,
364
+ 1,
365
+ 256
366
+ ],
367
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn1.to_k.weight": [
368
+ 256,
369
+ 256
370
+ ],
371
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn1.to_out.0.weight": [
372
+ 256,
373
+ 256
374
+ ],
375
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn1.to_q.weight": [
376
+ 256,
377
+ 256
378
+ ],
379
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn1.to_v.weight": [
380
+ 256,
381
+ 256
382
+ ],
383
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn2.to_k.weight": [
384
+ 256,
385
+ 256
386
+ ],
387
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn2.to_out.0.weight": [
388
+ 256,
389
+ 256
390
+ ],
391
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn2.to_q.weight": [
392
+ 256,
393
+ 256
394
+ ],
395
+ "ldm.input_blocks.4.1.transformer_blocks.0.attn2.to_v.weight": [
396
+ 256,
397
+ 256
398
+ ],
399
+ "ldm.input_blocks.4.1.transformer_blocks.0.ff.net.0.proj.weight": [
400
+ 2048,
401
+ 256
402
+ ],
403
+ "ldm.input_blocks.4.1.transformer_blocks.0.ff.net.2.weight": [
404
+ 256,
405
+ 1024
406
+ ],
407
+ "ldm.input_blocks.4.2.proj_in.weight": [
408
+ 256,
409
+ 1,
410
+ 1,
411
+ 256
412
+ ],
413
+ "ldm.input_blocks.4.2.proj_out.weight": [
414
+ 256,
415
+ 1,
416
+ 1,
417
+ 256
418
+ ],
419
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn1.to_k.weight": [
420
+ 256,
421
+ 256
422
+ ],
423
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn1.to_out.0.weight": [
424
+ 256,
425
+ 256
426
+ ],
427
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn1.to_q.weight": [
428
+ 256,
429
+ 256
430
+ ],
431
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn1.to_v.weight": [
432
+ 256,
433
+ 256
434
+ ],
435
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn2.to_k.weight": [
436
+ 256,
437
+ 256
438
+ ],
439
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn2.to_out.0.weight": [
440
+ 256,
441
+ 256
442
+ ],
443
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn2.to_q.weight": [
444
+ 256,
445
+ 256
446
+ ],
447
+ "ldm.input_blocks.4.2.transformer_blocks.0.attn2.to_v.weight": [
448
+ 256,
449
+ 256
450
+ ],
451
+ "ldm.input_blocks.4.2.transformer_blocks.0.ff.net.0.proj.weight": [
452
+ 2048,
453
+ 256
454
+ ],
455
+ "ldm.input_blocks.4.2.transformer_blocks.0.ff.net.2.weight": [
456
+ 256,
457
+ 1024
458
+ ],
459
+ "ldm.input_blocks.5.0.emb_layers.1.weight": [
460
+ 256,
461
+ 512
462
+ ],
463
+ "ldm.input_blocks.5.0.in_layers.2.weight": [
464
+ 256,
465
+ 3,
466
+ 3,
467
+ 256
468
+ ],
469
+ "ldm.input_blocks.5.0.out_layers.3.weight": [
470
+ 256,
471
+ 3,
472
+ 3,
473
+ 256
474
+ ],
475
+ "ldm.input_blocks.5.1.proj_in.weight": [
476
+ 256,
477
+ 1,
478
+ 1,
479
+ 256
480
+ ],
481
+ "ldm.input_blocks.5.1.proj_out.weight": [
482
+ 256,
483
+ 1,
484
+ 1,
485
+ 256
486
+ ],
487
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn1.to_k.weight": [
488
+ 256,
489
+ 256
490
+ ],
491
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn1.to_out.0.weight": [
492
+ 256,
493
+ 256
494
+ ],
495
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn1.to_q.weight": [
496
+ 256,
497
+ 256
498
+ ],
499
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn1.to_v.weight": [
500
+ 256,
501
+ 256
502
+ ],
503
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn2.to_k.weight": [
504
+ 256,
505
+ 256
506
+ ],
507
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn2.to_out.0.weight": [
508
+ 256,
509
+ 256
510
+ ],
511
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn2.to_q.weight": [
512
+ 256,
513
+ 256
514
+ ],
515
+ "ldm.input_blocks.5.1.transformer_blocks.0.attn2.to_v.weight": [
516
+ 256,
517
+ 256
518
+ ],
519
+ "ldm.input_blocks.5.1.transformer_blocks.0.ff.net.0.proj.weight": [
520
+ 2048,
521
+ 256
522
+ ],
523
+ "ldm.input_blocks.5.1.transformer_blocks.0.ff.net.2.weight": [
524
+ 256,
525
+ 1024
526
+ ],
527
+ "ldm.input_blocks.5.2.proj_in.weight": [
528
+ 256,
529
+ 1,
530
+ 1,
531
+ 256
532
+ ],
533
+ "ldm.input_blocks.5.2.proj_out.weight": [
534
+ 256,
535
+ 1,
536
+ 1,
537
+ 256
538
+ ],
539
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn1.to_k.weight": [
540
+ 256,
541
+ 256
542
+ ],
543
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn1.to_out.0.weight": [
544
+ 256,
545
+ 256
546
+ ],
547
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn1.to_q.weight": [
548
+ 256,
549
+ 256
550
+ ],
551
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn1.to_v.weight": [
552
+ 256,
553
+ 256
554
+ ],
555
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn2.to_k.weight": [
556
+ 256,
557
+ 256
558
+ ],
559
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn2.to_out.0.weight": [
560
+ 256,
561
+ 256
562
+ ],
563
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn2.to_q.weight": [
564
+ 256,
565
+ 256
566
+ ],
567
+ "ldm.input_blocks.5.2.transformer_blocks.0.attn2.to_v.weight": [
568
+ 256,
569
+ 256
570
+ ],
571
+ "ldm.input_blocks.5.2.transformer_blocks.0.ff.net.0.proj.weight": [
572
+ 2048,
573
+ 256
574
+ ],
575
+ "ldm.input_blocks.5.2.transformer_blocks.0.ff.net.2.weight": [
576
+ 256,
577
+ 1024
578
+ ],
579
+ "ldm.input_blocks.6.0.op.weight": [
580
+ 256,
581
+ 3,
582
+ 3,
583
+ 256
584
+ ],
585
+ "ldm.input_blocks.7.0.emb_layers.1.weight": [
586
+ 384,
587
+ 512
588
+ ],
589
+ "ldm.input_blocks.7.0.in_layers.2.weight": [
590
+ 384,
591
+ 3,
592
+ 3,
593
+ 256
594
+ ],
595
+ "ldm.input_blocks.7.0.out_layers.3.weight": [
596
+ 384,
597
+ 3,
598
+ 3,
599
+ 384
600
+ ],
601
+ "ldm.input_blocks.7.0.skip_connection.weight": [
602
+ 384,
603
+ 1,
604
+ 1,
605
+ 256
606
+ ],
607
+ "ldm.input_blocks.7.1.proj_in.weight": [
608
+ 384,
609
+ 1,
610
+ 1,
611
+ 384
612
+ ],
613
+ "ldm.input_blocks.7.1.proj_out.weight": [
614
+ 384,
615
+ 1,
616
+ 1,
617
+ 384
618
+ ],
619
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn1.to_k.weight": [
620
+ 384,
621
+ 384
622
+ ],
623
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn1.to_out.0.weight": [
624
+ 384,
625
+ 384
626
+ ],
627
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn1.to_q.weight": [
628
+ 384,
629
+ 384
630
+ ],
631
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn1.to_v.weight": [
632
+ 384,
633
+ 384
634
+ ],
635
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn2.to_k.weight": [
636
+ 384,
637
+ 384
638
+ ],
639
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn2.to_out.0.weight": [
640
+ 384,
641
+ 384
642
+ ],
643
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn2.to_q.weight": [
644
+ 384,
645
+ 384
646
+ ],
647
+ "ldm.input_blocks.7.1.transformer_blocks.0.attn2.to_v.weight": [
648
+ 384,
649
+ 384
650
+ ],
651
+ "ldm.input_blocks.7.1.transformer_blocks.0.ff.net.0.proj.weight": [
652
+ 3072,
653
+ 384
654
+ ],
655
+ "ldm.input_blocks.7.1.transformer_blocks.0.ff.net.2.weight": [
656
+ 384,
657
+ 1536
658
+ ],
659
+ "ldm.input_blocks.7.2.proj_in.weight": [
660
+ 384,
661
+ 1,
662
+ 1,
663
+ 384
664
+ ],
665
+ "ldm.input_blocks.7.2.proj_out.weight": [
666
+ 384,
667
+ 1,
668
+ 1,
669
+ 384
670
+ ],
671
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn1.to_k.weight": [
672
+ 384,
673
+ 384
674
+ ],
675
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn1.to_out.0.weight": [
676
+ 384,
677
+ 384
678
+ ],
679
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn1.to_q.weight": [
680
+ 384,
681
+ 384
682
+ ],
683
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn1.to_v.weight": [
684
+ 384,
685
+ 384
686
+ ],
687
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn2.to_k.weight": [
688
+ 384,
689
+ 384
690
+ ],
691
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn2.to_out.0.weight": [
692
+ 384,
693
+ 384
694
+ ],
695
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn2.to_q.weight": [
696
+ 384,
697
+ 384
698
+ ],
699
+ "ldm.input_blocks.7.2.transformer_blocks.0.attn2.to_v.weight": [
700
+ 384,
701
+ 384
702
+ ],
703
+ "ldm.input_blocks.7.2.transformer_blocks.0.ff.net.0.proj.weight": [
704
+ 3072,
705
+ 384
706
+ ],
707
+ "ldm.input_blocks.7.2.transformer_blocks.0.ff.net.2.weight": [
708
+ 384,
709
+ 1536
710
+ ],
711
+ "ldm.input_blocks.8.0.emb_layers.1.weight": [
712
+ 384,
713
+ 512
714
+ ],
715
+ "ldm.input_blocks.8.0.in_layers.2.weight": [
716
+ 384,
717
+ 3,
718
+ 3,
719
+ 384
720
+ ],
721
+ "ldm.input_blocks.8.0.out_layers.3.weight": [
722
+ 384,
723
+ 3,
724
+ 3,
725
+ 384
726
+ ],
727
+ "ldm.input_blocks.8.1.proj_in.weight": [
728
+ 384,
729
+ 1,
730
+ 1,
731
+ 384
732
+ ],
733
+ "ldm.input_blocks.8.1.proj_out.weight": [
734
+ 384,
735
+ 1,
736
+ 1,
737
+ 384
738
+ ],
739
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn1.to_k.weight": [
740
+ 384,
741
+ 384
742
+ ],
743
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn1.to_out.0.weight": [
744
+ 384,
745
+ 384
746
+ ],
747
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn1.to_q.weight": [
748
+ 384,
749
+ 384
750
+ ],
751
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn1.to_v.weight": [
752
+ 384,
753
+ 384
754
+ ],
755
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn2.to_k.weight": [
756
+ 384,
757
+ 384
758
+ ],
759
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn2.to_out.0.weight": [
760
+ 384,
761
+ 384
762
+ ],
763
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn2.to_q.weight": [
764
+ 384,
765
+ 384
766
+ ],
767
+ "ldm.input_blocks.8.1.transformer_blocks.0.attn2.to_v.weight": [
768
+ 384,
769
+ 384
770
+ ],
771
+ "ldm.input_blocks.8.1.transformer_blocks.0.ff.net.0.proj.weight": [
772
+ 3072,
773
+ 384
774
+ ],
775
+ "ldm.input_blocks.8.1.transformer_blocks.0.ff.net.2.weight": [
776
+ 384,
777
+ 1536
778
+ ],
779
+ "ldm.input_blocks.8.2.proj_in.weight": [
780
+ 384,
781
+ 1,
782
+ 1,
783
+ 384
784
+ ],
785
+ "ldm.input_blocks.8.2.proj_out.weight": [
786
+ 384,
787
+ 1,
788
+ 1,
789
+ 384
790
+ ],
791
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn1.to_k.weight": [
792
+ 384,
793
+ 384
794
+ ],
795
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn1.to_out.0.weight": [
796
+ 384,
797
+ 384
798
+ ],
799
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn1.to_q.weight": [
800
+ 384,
801
+ 384
802
+ ],
803
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn1.to_v.weight": [
804
+ 384,
805
+ 384
806
+ ],
807
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn2.to_k.weight": [
808
+ 384,
809
+ 384
810
+ ],
811
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn2.to_out.0.weight": [
812
+ 384,
813
+ 384
814
+ ],
815
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn2.to_q.weight": [
816
+ 384,
817
+ 384
818
+ ],
819
+ "ldm.input_blocks.8.2.transformer_blocks.0.attn2.to_v.weight": [
820
+ 384,
821
+ 384
822
+ ],
823
+ "ldm.input_blocks.8.2.transformer_blocks.0.ff.net.0.proj.weight": [
824
+ 3072,
825
+ 384
826
+ ],
827
+ "ldm.input_blocks.8.2.transformer_blocks.0.ff.net.2.weight": [
828
+ 384,
829
+ 1536
830
+ ],
831
+ "ldm.input_blocks.9.0.op.weight": [
832
+ 384,
833
+ 3,
834
+ 3,
835
+ 384
836
+ ],
837
+ "ldm.middle_block.0.emb_layers.1.weight": [
838
+ 640,
839
+ 512
840
+ ],
841
+ "ldm.middle_block.0.in_layers.2.weight": [
842
+ 640,
843
+ 3,
844
+ 3,
845
+ 640
846
+ ],
847
+ "ldm.middle_block.0.out_layers.3.weight": [
848
+ 640,
849
+ 3,
850
+ 3,
851
+ 640
852
+ ],
853
+ "ldm.middle_block.1.proj_in.weight": [
854
+ 640,
855
+ 1,
856
+ 1,
857
+ 640
858
+ ],
859
+ "ldm.middle_block.1.proj_out.weight": [
860
+ 640,
861
+ 1,
862
+ 1,
863
+ 640
864
+ ],
865
+ "ldm.middle_block.1.transformer_blocks.0.attn1.to_k.weight": [
866
+ 640,
867
+ 640
868
+ ],
869
+ "ldm.middle_block.1.transformer_blocks.0.attn1.to_out.0.weight": [
870
+ 640,
871
+ 640
872
+ ],
873
+ "ldm.middle_block.1.transformer_blocks.0.attn1.to_q.weight": [
874
+ 640,
875
+ 640
876
+ ],
877
+ "ldm.middle_block.1.transformer_blocks.0.attn1.to_v.weight": [
878
+ 640,
879
+ 640
880
+ ],
881
+ "ldm.middle_block.1.transformer_blocks.0.attn2.to_k.weight": [
882
+ 640,
883
+ 640
884
+ ],
885
+ "ldm.middle_block.1.transformer_blocks.0.attn2.to_out.0.weight": [
886
+ 640,
887
+ 640
888
+ ],
889
+ "ldm.middle_block.1.transformer_blocks.0.attn2.to_q.weight": [
890
+ 640,
891
+ 640
892
+ ],
893
+ "ldm.middle_block.1.transformer_blocks.0.attn2.to_v.weight": [
894
+ 640,
895
+ 640
896
+ ],
897
+ "ldm.middle_block.1.transformer_blocks.0.ff.net.0.proj.weight": [
898
+ 5120,
899
+ 640
900
+ ],
901
+ "ldm.middle_block.1.transformer_blocks.0.ff.net.2.weight": [
902
+ 640,
903
+ 2560
904
+ ],
905
+ "ldm.middle_block.2.proj_in.weight": [
906
+ 640,
907
+ 1,
908
+ 1,
909
+ 640
910
+ ],
911
+ "ldm.middle_block.2.proj_out.weight": [
912
+ 640,
913
+ 1,
914
+ 1,
915
+ 640
916
+ ],
917
+ "ldm.middle_block.2.transformer_blocks.0.attn1.to_k.weight": [
918
+ 640,
919
+ 640
920
+ ],
921
+ "ldm.middle_block.2.transformer_blocks.0.attn1.to_out.0.weight": [
922
+ 640,
923
+ 640
924
+ ],
925
+ "ldm.middle_block.2.transformer_blocks.0.attn1.to_q.weight": [
926
+ 640,
927
+ 640
928
+ ],
929
+ "ldm.middle_block.2.transformer_blocks.0.attn1.to_v.weight": [
930
+ 640,
931
+ 640
932
+ ],
933
+ "ldm.middle_block.2.transformer_blocks.0.attn2.to_k.weight": [
934
+ 640,
935
+ 640
936
+ ],
937
+ "ldm.middle_block.2.transformer_blocks.0.attn2.to_out.0.weight": [
938
+ 640,
939
+ 640
940
+ ],
941
+ "ldm.middle_block.2.transformer_blocks.0.attn2.to_q.weight": [
942
+ 640,
943
+ 640
944
+ ],
945
+ "ldm.middle_block.2.transformer_blocks.0.attn2.to_v.weight": [
946
+ 640,
947
+ 640
948
+ ],
949
+ "ldm.middle_block.2.transformer_blocks.0.ff.net.0.proj.weight": [
950
+ 5120,
951
+ 640
952
+ ],
953
+ "ldm.middle_block.2.transformer_blocks.0.ff.net.2.weight": [
954
+ 640,
955
+ 2560
956
+ ],
957
+ "ldm.middle_block.3.emb_layers.1.weight": [
958
+ 640,
959
+ 512
960
+ ],
961
+ "ldm.middle_block.3.in_layers.2.weight": [
962
+ 640,
963
+ 3,
964
+ 3,
965
+ 640
966
+ ],
967
+ "ldm.middle_block.3.out_layers.3.weight": [
968
+ 640,
969
+ 3,
970
+ 3,
971
+ 640
972
+ ],
973
+ "ldm.out.2.weight": [
974
+ 16,
975
+ 3,
976
+ 3,
977
+ 128
978
+ ],
979
+ "ldm.output_blocks.0.0.emb_layers.1.weight": [
980
+ 640,
981
+ 512
982
+ ],
983
+ "ldm.output_blocks.0.0.in_layers.2.weight": [
984
+ 640,
985
+ 3,
986
+ 3,
987
+ 1280
988
+ ],
989
+ "ldm.output_blocks.0.0.out_layers.3.weight": [
990
+ 640,
991
+ 3,
992
+ 3,
993
+ 640
994
+ ],
995
+ "ldm.output_blocks.0.0.skip_connection.weight": [
996
+ 640,
997
+ 1,
998
+ 1,
999
+ 1280
1000
+ ],
1001
+ "ldm.output_blocks.0.1.proj_in.weight": [
1002
+ 640,
1003
+ 1,
1004
+ 1,
1005
+ 640
1006
+ ],
1007
+ "ldm.output_blocks.0.1.proj_out.weight": [
1008
+ 640,
1009
+ 1,
1010
+ 1,
1011
+ 640
1012
+ ],
1013
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn1.to_k.weight": [
1014
+ 640,
1015
+ 640
1016
+ ],
1017
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn1.to_out.0.weight": [
1018
+ 640,
1019
+ 640
1020
+ ],
1021
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn1.to_q.weight": [
1022
+ 640,
1023
+ 640
1024
+ ],
1025
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn1.to_v.weight": [
1026
+ 640,
1027
+ 640
1028
+ ],
1029
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn2.to_k.weight": [
1030
+ 640,
1031
+ 640
1032
+ ],
1033
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn2.to_out.0.weight": [
1034
+ 640,
1035
+ 640
1036
+ ],
1037
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn2.to_q.weight": [
1038
+ 640,
1039
+ 640
1040
+ ],
1041
+ "ldm.output_blocks.0.1.transformer_blocks.0.attn2.to_v.weight": [
1042
+ 640,
1043
+ 640
1044
+ ],
1045
+ "ldm.output_blocks.0.1.transformer_blocks.0.ff.net.0.proj.weight": [
1046
+ 5120,
1047
+ 640
1048
+ ],
1049
+ "ldm.output_blocks.0.1.transformer_blocks.0.ff.net.2.weight": [
1050
+ 640,
1051
+ 2560
1052
+ ],
1053
+ "ldm.output_blocks.0.2.proj_in.weight": [
1054
+ 640,
1055
+ 1,
1056
+ 1,
1057
+ 640
1058
+ ],
1059
+ "ldm.output_blocks.0.2.proj_out.weight": [
1060
+ 640,
1061
+ 1,
1062
+ 1,
1063
+ 640
1064
+ ],
1065
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn1.to_k.weight": [
1066
+ 640,
1067
+ 640
1068
+ ],
1069
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn1.to_out.0.weight": [
1070
+ 640,
1071
+ 640
1072
+ ],
1073
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn1.to_q.weight": [
1074
+ 640,
1075
+ 640
1076
+ ],
1077
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn1.to_v.weight": [
1078
+ 640,
1079
+ 640
1080
+ ],
1081
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn2.to_k.weight": [
1082
+ 640,
1083
+ 640
1084
+ ],
1085
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn2.to_out.0.weight": [
1086
+ 640,
1087
+ 640
1088
+ ],
1089
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn2.to_q.weight": [
1090
+ 640,
1091
+ 640
1092
+ ],
1093
+ "ldm.output_blocks.0.2.transformer_blocks.0.attn2.to_v.weight": [
1094
+ 640,
1095
+ 640
1096
+ ],
1097
+ "ldm.output_blocks.0.2.transformer_blocks.0.ff.net.0.proj.weight": [
1098
+ 5120,
1099
+ 640
1100
+ ],
1101
+ "ldm.output_blocks.0.2.transformer_blocks.0.ff.net.2.weight": [
1102
+ 640,
1103
+ 2560
1104
+ ],
1105
+ "ldm.output_blocks.1.0.emb_layers.1.weight": [
1106
+ 640,
1107
+ 512
1108
+ ],
1109
+ "ldm.output_blocks.1.0.in_layers.2.weight": [
1110
+ 640,
1111
+ 3,
1112
+ 3,
1113
+ 1280
1114
+ ],
1115
+ "ldm.output_blocks.1.0.out_layers.3.weight": [
1116
+ 640,
1117
+ 3,
1118
+ 3,
1119
+ 640
1120
+ ],
1121
+ "ldm.output_blocks.1.0.skip_connection.weight": [
1122
+ 640,
1123
+ 1,
1124
+ 1,
1125
+ 1280
1126
+ ],
1127
+ "ldm.output_blocks.1.1.proj_in.weight": [
1128
+ 640,
1129
+ 1,
1130
+ 1,
1131
+ 640
1132
+ ],
1133
+ "ldm.output_blocks.1.1.proj_out.weight": [
1134
+ 640,
1135
+ 1,
1136
+ 1,
1137
+ 640
1138
+ ],
1139
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn1.to_k.weight": [
1140
+ 640,
1141
+ 640
1142
+ ],
1143
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn1.to_out.0.weight": [
1144
+ 640,
1145
+ 640
1146
+ ],
1147
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn1.to_q.weight": [
1148
+ 640,
1149
+ 640
1150
+ ],
1151
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn1.to_v.weight": [
1152
+ 640,
1153
+ 640
1154
+ ],
1155
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn2.to_k.weight": [
1156
+ 640,
1157
+ 640
1158
+ ],
1159
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn2.to_out.0.weight": [
1160
+ 640,
1161
+ 640
1162
+ ],
1163
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn2.to_q.weight": [
1164
+ 640,
1165
+ 640
1166
+ ],
1167
+ "ldm.output_blocks.1.1.transformer_blocks.0.attn2.to_v.weight": [
1168
+ 640,
1169
+ 640
1170
+ ],
1171
+ "ldm.output_blocks.1.1.transformer_blocks.0.ff.net.0.proj.weight": [
1172
+ 5120,
1173
+ 640
1174
+ ],
1175
+ "ldm.output_blocks.1.1.transformer_blocks.0.ff.net.2.weight": [
1176
+ 640,
1177
+ 2560
1178
+ ],
1179
+ "ldm.output_blocks.1.2.proj_in.weight": [
1180
+ 640,
1181
+ 1,
1182
+ 1,
1183
+ 640
1184
+ ],
1185
+ "ldm.output_blocks.1.2.proj_out.weight": [
1186
+ 640,
1187
+ 1,
1188
+ 1,
1189
+ 640
1190
+ ],
1191
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn1.to_k.weight": [
1192
+ 640,
1193
+ 640
1194
+ ],
1195
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn1.to_out.0.weight": [
1196
+ 640,
1197
+ 640
1198
+ ],
1199
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn1.to_q.weight": [
1200
+ 640,
1201
+ 640
1202
+ ],
1203
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn1.to_v.weight": [
1204
+ 640,
1205
+ 640
1206
+ ],
1207
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn2.to_k.weight": [
1208
+ 640,
1209
+ 640
1210
+ ],
1211
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn2.to_out.0.weight": [
1212
+ 640,
1213
+ 640
1214
+ ],
1215
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn2.to_q.weight": [
1216
+ 640,
1217
+ 640
1218
+ ],
1219
+ "ldm.output_blocks.1.2.transformer_blocks.0.attn2.to_v.weight": [
1220
+ 640,
1221
+ 640
1222
+ ],
1223
+ "ldm.output_blocks.1.2.transformer_blocks.0.ff.net.0.proj.weight": [
1224
+ 5120,
1225
+ 640
1226
+ ],
1227
+ "ldm.output_blocks.1.2.transformer_blocks.0.ff.net.2.weight": [
1228
+ 640,
1229
+ 2560
1230
+ ],
1231
+ "ldm.output_blocks.10.0.emb_layers.1.weight": [
1232
+ 128,
1233
+ 512
1234
+ ],
1235
+ "ldm.output_blocks.10.0.in_layers.2.weight": [
1236
+ 128,
1237
+ 3,
1238
+ 3,
1239
+ 256
1240
+ ],
1241
+ "ldm.output_blocks.10.0.out_layers.3.weight": [
1242
+ 128,
1243
+ 3,
1244
+ 3,
1245
+ 128
1246
+ ],
1247
+ "ldm.output_blocks.10.0.skip_connection.weight": [
1248
+ 128,
1249
+ 1,
1250
+ 1,
1251
+ 256
1252
+ ],
1253
+ "ldm.output_blocks.11.0.emb_layers.1.weight": [
1254
+ 128,
1255
+ 512
1256
+ ],
1257
+ "ldm.output_blocks.11.0.in_layers.2.weight": [
1258
+ 128,
1259
+ 3,
1260
+ 3,
1261
+ 256
1262
+ ],
1263
+ "ldm.output_blocks.11.0.out_layers.3.weight": [
1264
+ 128,
1265
+ 3,
1266
+ 3,
1267
+ 128
1268
+ ],
1269
+ "ldm.output_blocks.11.0.skip_connection.weight": [
1270
+ 128,
1271
+ 1,
1272
+ 1,
1273
+ 256
1274
+ ],
1275
+ "ldm.output_blocks.2.0.emb_layers.1.weight": [
1276
+ 640,
1277
+ 512
1278
+ ],
1279
+ "ldm.output_blocks.2.0.in_layers.2.weight": [
1280
+ 640,
1281
+ 3,
1282
+ 3,
1283
+ 1024
1284
+ ],
1285
+ "ldm.output_blocks.2.0.out_layers.3.weight": [
1286
+ 640,
1287
+ 3,
1288
+ 3,
1289
+ 640
1290
+ ],
1291
+ "ldm.output_blocks.2.0.skip_connection.weight": [
1292
+ 640,
1293
+ 1,
1294
+ 1,
1295
+ 1024
1296
+ ],
1297
+ "ldm.output_blocks.2.1.proj_in.weight": [
1298
+ 640,
1299
+ 1,
1300
+ 1,
1301
+ 640
1302
+ ],
1303
+ "ldm.output_blocks.2.1.proj_out.weight": [
1304
+ 640,
1305
+ 1,
1306
+ 1,
1307
+ 640
1308
+ ],
1309
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn1.to_k.weight": [
1310
+ 640,
1311
+ 640
1312
+ ],
1313
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn1.to_out.0.weight": [
1314
+ 640,
1315
+ 640
1316
+ ],
1317
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn1.to_q.weight": [
1318
+ 640,
1319
+ 640
1320
+ ],
1321
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn1.to_v.weight": [
1322
+ 640,
1323
+ 640
1324
+ ],
1325
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn2.to_k.weight": [
1326
+ 640,
1327
+ 640
1328
+ ],
1329
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn2.to_out.0.weight": [
1330
+ 640,
1331
+ 640
1332
+ ],
1333
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn2.to_q.weight": [
1334
+ 640,
1335
+ 640
1336
+ ],
1337
+ "ldm.output_blocks.2.1.transformer_blocks.0.attn2.to_v.weight": [
1338
+ 640,
1339
+ 640
1340
+ ],
1341
+ "ldm.output_blocks.2.1.transformer_blocks.0.ff.net.0.proj.weight": [
1342
+ 5120,
1343
+ 640
1344
+ ],
1345
+ "ldm.output_blocks.2.1.transformer_blocks.0.ff.net.2.weight": [
1346
+ 640,
1347
+ 2560
1348
+ ],
1349
+ "ldm.output_blocks.2.2.proj_in.weight": [
1350
+ 640,
1351
+ 1,
1352
+ 1,
1353
+ 640
1354
+ ],
1355
+ "ldm.output_blocks.2.2.proj_out.weight": [
1356
+ 640,
1357
+ 1,
1358
+ 1,
1359
+ 640
1360
+ ],
1361
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn1.to_k.weight": [
1362
+ 640,
1363
+ 640
1364
+ ],
1365
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn1.to_out.0.weight": [
1366
+ 640,
1367
+ 640
1368
+ ],
1369
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn1.to_q.weight": [
1370
+ 640,
1371
+ 640
1372
+ ],
1373
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn1.to_v.weight": [
1374
+ 640,
1375
+ 640
1376
+ ],
1377
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn2.to_k.weight": [
1378
+ 640,
1379
+ 640
1380
+ ],
1381
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn2.to_out.0.weight": [
1382
+ 640,
1383
+ 640
1384
+ ],
1385
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn2.to_q.weight": [
1386
+ 640,
1387
+ 640
1388
+ ],
1389
+ "ldm.output_blocks.2.2.transformer_blocks.0.attn2.to_v.weight": [
1390
+ 640,
1391
+ 640
1392
+ ],
1393
+ "ldm.output_blocks.2.2.transformer_blocks.0.ff.net.0.proj.weight": [
1394
+ 5120,
1395
+ 640
1396
+ ],
1397
+ "ldm.output_blocks.2.2.transformer_blocks.0.ff.net.2.weight": [
1398
+ 640,
1399
+ 2560
1400
+ ],
1401
+ "ldm.output_blocks.2.3.conv.weight": [
1402
+ 640,
1403
+ 3,
1404
+ 3,
1405
+ 640
1406
+ ],
1407
+ "ldm.output_blocks.3.0.emb_layers.1.weight": [
1408
+ 384,
1409
+ 512
1410
+ ],
1411
+ "ldm.output_blocks.3.0.in_layers.2.weight": [
1412
+ 384,
1413
+ 3,
1414
+ 3,
1415
+ 1024
1416
+ ],
1417
+ "ldm.output_blocks.3.0.out_layers.3.weight": [
1418
+ 384,
1419
+ 3,
1420
+ 3,
1421
+ 384
1422
+ ],
1423
+ "ldm.output_blocks.3.0.skip_connection.weight": [
1424
+ 384,
1425
+ 1,
1426
+ 1,
1427
+ 1024
1428
+ ],
1429
+ "ldm.output_blocks.3.1.proj_in.weight": [
1430
+ 384,
1431
+ 1,
1432
+ 1,
1433
+ 384
1434
+ ],
1435
+ "ldm.output_blocks.3.1.proj_out.weight": [
1436
+ 384,
1437
+ 1,
1438
+ 1,
1439
+ 384
1440
+ ],
1441
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn1.to_k.weight": [
1442
+ 384,
1443
+ 384
1444
+ ],
1445
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn1.to_out.0.weight": [
1446
+ 384,
1447
+ 384
1448
+ ],
1449
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn1.to_q.weight": [
1450
+ 384,
1451
+ 384
1452
+ ],
1453
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn1.to_v.weight": [
1454
+ 384,
1455
+ 384
1456
+ ],
1457
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn2.to_k.weight": [
1458
+ 384,
1459
+ 384
1460
+ ],
1461
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn2.to_out.0.weight": [
1462
+ 384,
1463
+ 384
1464
+ ],
1465
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn2.to_q.weight": [
1466
+ 384,
1467
+ 384
1468
+ ],
1469
+ "ldm.output_blocks.3.1.transformer_blocks.0.attn2.to_v.weight": [
1470
+ 384,
1471
+ 384
1472
+ ],
1473
+ "ldm.output_blocks.3.1.transformer_blocks.0.ff.net.0.proj.weight": [
1474
+ 3072,
1475
+ 384
1476
+ ],
1477
+ "ldm.output_blocks.3.1.transformer_blocks.0.ff.net.2.weight": [
1478
+ 384,
1479
+ 1536
1480
+ ],
1481
+ "ldm.output_blocks.3.2.proj_in.weight": [
1482
+ 384,
1483
+ 1,
1484
+ 1,
1485
+ 384
1486
+ ],
1487
+ "ldm.output_blocks.3.2.proj_out.weight": [
1488
+ 384,
1489
+ 1,
1490
+ 1,
1491
+ 384
1492
+ ],
1493
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn1.to_k.weight": [
1494
+ 384,
1495
+ 384
1496
+ ],
1497
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn1.to_out.0.weight": [
1498
+ 384,
1499
+ 384
1500
+ ],
1501
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn1.to_q.weight": [
1502
+ 384,
1503
+ 384
1504
+ ],
1505
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn1.to_v.weight": [
1506
+ 384,
1507
+ 384
1508
+ ],
1509
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn2.to_k.weight": [
1510
+ 384,
1511
+ 384
1512
+ ],
1513
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn2.to_out.0.weight": [
1514
+ 384,
1515
+ 384
1516
+ ],
1517
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn2.to_q.weight": [
1518
+ 384,
1519
+ 384
1520
+ ],
1521
+ "ldm.output_blocks.3.2.transformer_blocks.0.attn2.to_v.weight": [
1522
+ 384,
1523
+ 384
1524
+ ],
1525
+ "ldm.output_blocks.3.2.transformer_blocks.0.ff.net.0.proj.weight": [
1526
+ 3072,
1527
+ 384
1528
+ ],
1529
+ "ldm.output_blocks.3.2.transformer_blocks.0.ff.net.2.weight": [
1530
+ 384,
1531
+ 1536
1532
+ ],
1533
+ "ldm.output_blocks.4.0.emb_layers.1.weight": [
1534
+ 384,
1535
+ 512
1536
+ ],
1537
+ "ldm.output_blocks.4.0.in_layers.2.weight": [
1538
+ 384,
1539
+ 3,
1540
+ 3,
1541
+ 768
1542
+ ],
1543
+ "ldm.output_blocks.4.0.out_layers.3.weight": [
1544
+ 384,
1545
+ 3,
1546
+ 3,
1547
+ 384
1548
+ ],
1549
+ "ldm.output_blocks.4.0.skip_connection.weight": [
1550
+ 384,
1551
+ 1,
1552
+ 1,
1553
+ 768
1554
+ ],
1555
+ "ldm.output_blocks.4.1.proj_in.weight": [
1556
+ 384,
1557
+ 1,
1558
+ 1,
1559
+ 384
1560
+ ],
1561
+ "ldm.output_blocks.4.1.proj_out.weight": [
1562
+ 384,
1563
+ 1,
1564
+ 1,
1565
+ 384
1566
+ ],
1567
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn1.to_k.weight": [
1568
+ 384,
1569
+ 384
1570
+ ],
1571
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn1.to_out.0.weight": [
1572
+ 384,
1573
+ 384
1574
+ ],
1575
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn1.to_q.weight": [
1576
+ 384,
1577
+ 384
1578
+ ],
1579
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn1.to_v.weight": [
1580
+ 384,
1581
+ 384
1582
+ ],
1583
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn2.to_k.weight": [
1584
+ 384,
1585
+ 384
1586
+ ],
1587
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn2.to_out.0.weight": [
1588
+ 384,
1589
+ 384
1590
+ ],
1591
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn2.to_q.weight": [
1592
+ 384,
1593
+ 384
1594
+ ],
1595
+ "ldm.output_blocks.4.1.transformer_blocks.0.attn2.to_v.weight": [
1596
+ 384,
1597
+ 384
1598
+ ],
1599
+ "ldm.output_blocks.4.1.transformer_blocks.0.ff.net.0.proj.weight": [
1600
+ 3072,
1601
+ 384
1602
+ ],
1603
+ "ldm.output_blocks.4.1.transformer_blocks.0.ff.net.2.weight": [
1604
+ 384,
1605
+ 1536
1606
+ ],
1607
+ "ldm.output_blocks.4.2.proj_in.weight": [
1608
+ 384,
1609
+ 1,
1610
+ 1,
1611
+ 384
1612
+ ],
1613
+ "ldm.output_blocks.4.2.proj_out.weight": [
1614
+ 384,
1615
+ 1,
1616
+ 1,
1617
+ 384
1618
+ ],
1619
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn1.to_k.weight": [
1620
+ 384,
1621
+ 384
1622
+ ],
1623
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn1.to_out.0.weight": [
1624
+ 384,
1625
+ 384
1626
+ ],
1627
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn1.to_q.weight": [
1628
+ 384,
1629
+ 384
1630
+ ],
1631
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn1.to_v.weight": [
1632
+ 384,
1633
+ 384
1634
+ ],
1635
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn2.to_k.weight": [
1636
+ 384,
1637
+ 384
1638
+ ],
1639
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn2.to_out.0.weight": [
1640
+ 384,
1641
+ 384
1642
+ ],
1643
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn2.to_q.weight": [
1644
+ 384,
1645
+ 384
1646
+ ],
1647
+ "ldm.output_blocks.4.2.transformer_blocks.0.attn2.to_v.weight": [
1648
+ 384,
1649
+ 384
1650
+ ],
1651
+ "ldm.output_blocks.4.2.transformer_blocks.0.ff.net.0.proj.weight": [
1652
+ 3072,
1653
+ 384
1654
+ ],
1655
+ "ldm.output_blocks.4.2.transformer_blocks.0.ff.net.2.weight": [
1656
+ 384,
1657
+ 1536
1658
+ ],
1659
+ "ldm.output_blocks.5.0.emb_layers.1.weight": [
1660
+ 384,
1661
+ 512
1662
+ ],
1663
+ "ldm.output_blocks.5.0.in_layers.2.weight": [
1664
+ 384,
1665
+ 3,
1666
+ 3,
1667
+ 640
1668
+ ],
1669
+ "ldm.output_blocks.5.0.out_layers.3.weight": [
1670
+ 384,
1671
+ 3,
1672
+ 3,
1673
+ 384
1674
+ ],
1675
+ "ldm.output_blocks.5.0.skip_connection.weight": [
1676
+ 384,
1677
+ 1,
1678
+ 1,
1679
+ 640
1680
+ ],
1681
+ "ldm.output_blocks.5.1.proj_in.weight": [
1682
+ 384,
1683
+ 1,
1684
+ 1,
1685
+ 384
1686
+ ],
1687
+ "ldm.output_blocks.5.1.proj_out.weight": [
1688
+ 384,
1689
+ 1,
1690
+ 1,
1691
+ 384
1692
+ ],
1693
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn1.to_k.weight": [
1694
+ 384,
1695
+ 384
1696
+ ],
1697
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn1.to_out.0.weight": [
1698
+ 384,
1699
+ 384
1700
+ ],
1701
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn1.to_q.weight": [
1702
+ 384,
1703
+ 384
1704
+ ],
1705
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn1.to_v.weight": [
1706
+ 384,
1707
+ 384
1708
+ ],
1709
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn2.to_k.weight": [
1710
+ 384,
1711
+ 384
1712
+ ],
1713
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn2.to_out.0.weight": [
1714
+ 384,
1715
+ 384
1716
+ ],
1717
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn2.to_q.weight": [
1718
+ 384,
1719
+ 384
1720
+ ],
1721
+ "ldm.output_blocks.5.1.transformer_blocks.0.attn2.to_v.weight": [
1722
+ 384,
1723
+ 384
1724
+ ],
1725
+ "ldm.output_blocks.5.1.transformer_blocks.0.ff.net.0.proj.weight": [
1726
+ 3072,
1727
+ 384
1728
+ ],
1729
+ "ldm.output_blocks.5.1.transformer_blocks.0.ff.net.2.weight": [
1730
+ 384,
1731
+ 1536
1732
+ ],
1733
+ "ldm.output_blocks.5.2.proj_in.weight": [
1734
+ 384,
1735
+ 1,
1736
+ 1,
1737
+ 384
1738
+ ],
1739
+ "ldm.output_blocks.5.2.proj_out.weight": [
1740
+ 384,
1741
+ 1,
1742
+ 1,
1743
+ 384
1744
+ ],
1745
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn1.to_k.weight": [
1746
+ 384,
1747
+ 384
1748
+ ],
1749
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn1.to_out.0.weight": [
1750
+ 384,
1751
+ 384
1752
+ ],
1753
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn1.to_q.weight": [
1754
+ 384,
1755
+ 384
1756
+ ],
1757
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn1.to_v.weight": [
1758
+ 384,
1759
+ 384
1760
+ ],
1761
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn2.to_k.weight": [
1762
+ 384,
1763
+ 384
1764
+ ],
1765
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn2.to_out.0.weight": [
1766
+ 384,
1767
+ 384
1768
+ ],
1769
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn2.to_q.weight": [
1770
+ 384,
1771
+ 384
1772
+ ],
1773
+ "ldm.output_blocks.5.2.transformer_blocks.0.attn2.to_v.weight": [
1774
+ 384,
1775
+ 384
1776
+ ],
1777
+ "ldm.output_blocks.5.2.transformer_blocks.0.ff.net.0.proj.weight": [
1778
+ 3072,
1779
+ 384
1780
+ ],
1781
+ "ldm.output_blocks.5.2.transformer_blocks.0.ff.net.2.weight": [
1782
+ 384,
1783
+ 1536
1784
+ ],
1785
+ "ldm.output_blocks.5.3.conv.weight": [
1786
+ 384,
1787
+ 3,
1788
+ 3,
1789
+ 384
1790
+ ],
1791
+ "ldm.output_blocks.6.0.emb_layers.1.weight": [
1792
+ 256,
1793
+ 512
1794
+ ],
1795
+ "ldm.output_blocks.6.0.in_layers.2.weight": [
1796
+ 256,
1797
+ 3,
1798
+ 3,
1799
+ 640
1800
+ ],
1801
+ "ldm.output_blocks.6.0.out_layers.3.weight": [
1802
+ 256,
1803
+ 3,
1804
+ 3,
1805
+ 256
1806
+ ],
1807
+ "ldm.output_blocks.6.0.skip_connection.weight": [
1808
+ 256,
1809
+ 1,
1810
+ 1,
1811
+ 640
1812
+ ],
1813
+ "ldm.output_blocks.6.1.proj_in.weight": [
1814
+ 256,
1815
+ 1,
1816
+ 1,
1817
+ 256
1818
+ ],
1819
+ "ldm.output_blocks.6.1.proj_out.weight": [
1820
+ 256,
1821
+ 1,
1822
+ 1,
1823
+ 256
1824
+ ],
1825
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn1.to_k.weight": [
1826
+ 256,
1827
+ 256
1828
+ ],
1829
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn1.to_out.0.weight": [
1830
+ 256,
1831
+ 256
1832
+ ],
1833
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn1.to_q.weight": [
1834
+ 256,
1835
+ 256
1836
+ ],
1837
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn1.to_v.weight": [
1838
+ 256,
1839
+ 256
1840
+ ],
1841
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn2.to_k.weight": [
1842
+ 256,
1843
+ 256
1844
+ ],
1845
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn2.to_out.0.weight": [
1846
+ 256,
1847
+ 256
1848
+ ],
1849
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn2.to_q.weight": [
1850
+ 256,
1851
+ 256
1852
+ ],
1853
+ "ldm.output_blocks.6.1.transformer_blocks.0.attn2.to_v.weight": [
1854
+ 256,
1855
+ 256
1856
+ ],
1857
+ "ldm.output_blocks.6.1.transformer_blocks.0.ff.net.0.proj.weight": [
1858
+ 2048,
1859
+ 256
1860
+ ],
1861
+ "ldm.output_blocks.6.1.transformer_blocks.0.ff.net.2.weight": [
1862
+ 256,
1863
+ 1024
1864
+ ],
1865
+ "ldm.output_blocks.6.2.proj_in.weight": [
1866
+ 256,
1867
+ 1,
1868
+ 1,
1869
+ 256
1870
+ ],
1871
+ "ldm.output_blocks.6.2.proj_out.weight": [
1872
+ 256,
1873
+ 1,
1874
+ 1,
1875
+ 256
1876
+ ],
1877
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn1.to_k.weight": [
1878
+ 256,
1879
+ 256
1880
+ ],
1881
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn1.to_out.0.weight": [
1882
+ 256,
1883
+ 256
1884
+ ],
1885
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn1.to_q.weight": [
1886
+ 256,
1887
+ 256
1888
+ ],
1889
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn1.to_v.weight": [
1890
+ 256,
1891
+ 256
1892
+ ],
1893
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn2.to_k.weight": [
1894
+ 256,
1895
+ 256
1896
+ ],
1897
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn2.to_out.0.weight": [
1898
+ 256,
1899
+ 256
1900
+ ],
1901
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn2.to_q.weight": [
1902
+ 256,
1903
+ 256
1904
+ ],
1905
+ "ldm.output_blocks.6.2.transformer_blocks.0.attn2.to_v.weight": [
1906
+ 256,
1907
+ 256
1908
+ ],
1909
+ "ldm.output_blocks.6.2.transformer_blocks.0.ff.net.0.proj.weight": [
1910
+ 2048,
1911
+ 256
1912
+ ],
1913
+ "ldm.output_blocks.6.2.transformer_blocks.0.ff.net.2.weight": [
1914
+ 256,
1915
+ 1024
1916
+ ],
1917
+ "ldm.output_blocks.7.0.emb_layers.1.weight": [
1918
+ 256,
1919
+ 512
1920
+ ],
1921
+ "ldm.output_blocks.7.0.in_layers.2.weight": [
1922
+ 256,
1923
+ 3,
1924
+ 3,
1925
+ 512
1926
+ ],
1927
+ "ldm.output_blocks.7.0.out_layers.3.weight": [
1928
+ 256,
1929
+ 3,
1930
+ 3,
1931
+ 256
1932
+ ],
1933
+ "ldm.output_blocks.7.0.skip_connection.weight": [
1934
+ 256,
1935
+ 1,
1936
+ 1,
1937
+ 512
1938
+ ],
1939
+ "ldm.output_blocks.7.1.proj_in.weight": [
1940
+ 256,
1941
+ 1,
1942
+ 1,
1943
+ 256
1944
+ ],
1945
+ "ldm.output_blocks.7.1.proj_out.weight": [
1946
+ 256,
1947
+ 1,
1948
+ 1,
1949
+ 256
1950
+ ],
1951
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn1.to_k.weight": [
1952
+ 256,
1953
+ 256
1954
+ ],
1955
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn1.to_out.0.weight": [
1956
+ 256,
1957
+ 256
1958
+ ],
1959
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn1.to_q.weight": [
1960
+ 256,
1961
+ 256
1962
+ ],
1963
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn1.to_v.weight": [
1964
+ 256,
1965
+ 256
1966
+ ],
1967
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn2.to_k.weight": [
1968
+ 256,
1969
+ 256
1970
+ ],
1971
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn2.to_out.0.weight": [
1972
+ 256,
1973
+ 256
1974
+ ],
1975
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn2.to_q.weight": [
1976
+ 256,
1977
+ 256
1978
+ ],
1979
+ "ldm.output_blocks.7.1.transformer_blocks.0.attn2.to_v.weight": [
1980
+ 256,
1981
+ 256
1982
+ ],
1983
+ "ldm.output_blocks.7.1.transformer_blocks.0.ff.net.0.proj.weight": [
1984
+ 2048,
1985
+ 256
1986
+ ],
1987
+ "ldm.output_blocks.7.1.transformer_blocks.0.ff.net.2.weight": [
1988
+ 256,
1989
+ 1024
1990
+ ],
1991
+ "ldm.output_blocks.7.2.proj_in.weight": [
1992
+ 256,
1993
+ 1,
1994
+ 1,
1995
+ 256
1996
+ ],
1997
+ "ldm.output_blocks.7.2.proj_out.weight": [
1998
+ 256,
1999
+ 1,
2000
+ 1,
2001
+ 256
2002
+ ],
2003
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn1.to_k.weight": [
2004
+ 256,
2005
+ 256
2006
+ ],
2007
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn1.to_out.0.weight": [
2008
+ 256,
2009
+ 256
2010
+ ],
2011
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn1.to_q.weight": [
2012
+ 256,
2013
+ 256
2014
+ ],
2015
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn1.to_v.weight": [
2016
+ 256,
2017
+ 256
2018
+ ],
2019
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn2.to_k.weight": [
2020
+ 256,
2021
+ 256
2022
+ ],
2023
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn2.to_out.0.weight": [
2024
+ 256,
2025
+ 256
2026
+ ],
2027
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn2.to_q.weight": [
2028
+ 256,
2029
+ 256
2030
+ ],
2031
+ "ldm.output_blocks.7.2.transformer_blocks.0.attn2.to_v.weight": [
2032
+ 256,
2033
+ 256
2034
+ ],
2035
+ "ldm.output_blocks.7.2.transformer_blocks.0.ff.net.0.proj.weight": [
2036
+ 2048,
2037
+ 256
2038
+ ],
2039
+ "ldm.output_blocks.7.2.transformer_blocks.0.ff.net.2.weight": [
2040
+ 256,
2041
+ 1024
2042
+ ],
2043
+ "ldm.output_blocks.8.0.emb_layers.1.weight": [
2044
+ 256,
2045
+ 512
2046
+ ],
2047
+ "ldm.output_blocks.8.0.in_layers.2.weight": [
2048
+ 256,
2049
+ 3,
2050
+ 3,
2051
+ 384
2052
+ ],
2053
+ "ldm.output_blocks.8.0.out_layers.3.weight": [
2054
+ 256,
2055
+ 3,
2056
+ 3,
2057
+ 256
2058
+ ],
2059
+ "ldm.output_blocks.8.0.skip_connection.weight": [
2060
+ 256,
2061
+ 1,
2062
+ 1,
2063
+ 384
2064
+ ],
2065
+ "ldm.output_blocks.8.1.proj_in.weight": [
2066
+ 256,
2067
+ 1,
2068
+ 1,
2069
+ 256
2070
+ ],
2071
+ "ldm.output_blocks.8.1.proj_out.weight": [
2072
+ 256,
2073
+ 1,
2074
+ 1,
2075
+ 256
2076
+ ],
2077
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn1.to_k.weight": [
2078
+ 256,
2079
+ 256
2080
+ ],
2081
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn1.to_out.0.weight": [
2082
+ 256,
2083
+ 256
2084
+ ],
2085
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn1.to_q.weight": [
2086
+ 256,
2087
+ 256
2088
+ ],
2089
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn1.to_v.weight": [
2090
+ 256,
2091
+ 256
2092
+ ],
2093
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn2.to_k.weight": [
2094
+ 256,
2095
+ 256
2096
+ ],
2097
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn2.to_out.0.weight": [
2098
+ 256,
2099
+ 256
2100
+ ],
2101
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn2.to_q.weight": [
2102
+ 256,
2103
+ 256
2104
+ ],
2105
+ "ldm.output_blocks.8.1.transformer_blocks.0.attn2.to_v.weight": [
2106
+ 256,
2107
+ 256
2108
+ ],
2109
+ "ldm.output_blocks.8.1.transformer_blocks.0.ff.net.0.proj.weight": [
2110
+ 2048,
2111
+ 256
2112
+ ],
2113
+ "ldm.output_blocks.8.1.transformer_blocks.0.ff.net.2.weight": [
2114
+ 256,
2115
+ 1024
2116
+ ],
2117
+ "ldm.output_blocks.8.2.proj_in.weight": [
2118
+ 256,
2119
+ 1,
2120
+ 1,
2121
+ 256
2122
+ ],
2123
+ "ldm.output_blocks.8.2.proj_out.weight": [
2124
+ 256,
2125
+ 1,
2126
+ 1,
2127
+ 256
2128
+ ],
2129
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn1.to_k.weight": [
2130
+ 256,
2131
+ 256
2132
+ ],
2133
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn1.to_out.0.weight": [
2134
+ 256,
2135
+ 256
2136
+ ],
2137
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn1.to_q.weight": [
2138
+ 256,
2139
+ 256
2140
+ ],
2141
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn1.to_v.weight": [
2142
+ 256,
2143
+ 256
2144
+ ],
2145
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn2.to_k.weight": [
2146
+ 256,
2147
+ 256
2148
+ ],
2149
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn2.to_out.0.weight": [
2150
+ 256,
2151
+ 256
2152
+ ],
2153
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn2.to_q.weight": [
2154
+ 256,
2155
+ 256
2156
+ ],
2157
+ "ldm.output_blocks.8.2.transformer_blocks.0.attn2.to_v.weight": [
2158
+ 256,
2159
+ 256
2160
+ ],
2161
+ "ldm.output_blocks.8.2.transformer_blocks.0.ff.net.0.proj.weight": [
2162
+ 2048,
2163
+ 256
2164
+ ],
2165
+ "ldm.output_blocks.8.2.transformer_blocks.0.ff.net.2.weight": [
2166
+ 256,
2167
+ 1024
2168
+ ],
2169
+ "ldm.output_blocks.8.3.conv.weight": [
2170
+ 256,
2171
+ 3,
2172
+ 3,
2173
+ 256
2174
+ ],
2175
+ "ldm.output_blocks.9.0.emb_layers.1.weight": [
2176
+ 128,
2177
+ 512
2178
+ ],
2179
+ "ldm.output_blocks.9.0.in_layers.2.weight": [
2180
+ 128,
2181
+ 3,
2182
+ 3,
2183
+ 384
2184
+ ],
2185
+ "ldm.output_blocks.9.0.out_layers.3.weight": [
2186
+ 128,
2187
+ 3,
2188
+ 3,
2189
+ 128
2190
+ ],
2191
+ "ldm.output_blocks.9.0.skip_connection.weight": [
2192
+ 128,
2193
+ 1,
2194
+ 1,
2195
+ 384
2196
+ ],
2197
+ "ldm.time_embed.0.weight": [
2198
+ 512,
2199
+ 128
2200
+ ],
2201
+ "ldm.time_embed.2.weight": [
2202
+ 512,
2203
+ 512
2204
+ ],
2205
+ "vae.decoder.conv_out.weight": [
2206
+ 1,
2207
+ 3,
2208
+ 3,
2209
+ 128
2210
+ ],
2211
+ "vae.decoder.mid.attn_1.k.weight": [
2212
+ 1024,
2213
+ 1,
2214
+ 1,
2215
+ 1024
2216
+ ],
2217
+ "vae.decoder.mid.attn_1.proj_out.weight": [
2218
+ 1024,
2219
+ 1,
2220
+ 1,
2221
+ 1024
2222
+ ],
2223
+ "vae.decoder.mid.attn_1.q.weight": [
2224
+ 1024,
2225
+ 1,
2226
+ 1,
2227
+ 1024
2228
+ ],
2229
+ "vae.decoder.mid.attn_1.v.weight": [
2230
+ 1024,
2231
+ 1,
2232
+ 1,
2233
+ 1024
2234
+ ],
2235
+ "vae.decoder.mid.block_1.conv1.weight": [
2236
+ 1024,
2237
+ 3,
2238
+ 3,
2239
+ 1024
2240
+ ],
2241
+ "vae.decoder.mid.block_1.conv2.weight": [
2242
+ 1024,
2243
+ 3,
2244
+ 3,
2245
+ 1024
2246
+ ],
2247
+ "vae.decoder.mid.block_2.conv1.weight": [
2248
+ 1024,
2249
+ 3,
2250
+ 3,
2251
+ 1024
2252
+ ],
2253
+ "vae.decoder.mid.block_2.conv2.weight": [
2254
+ 1024,
2255
+ 3,
2256
+ 3,
2257
+ 1024
2258
+ ],
2259
+ "vae.decoder.up.0.block.0.conv1.weight": [
2260
+ 128,
2261
+ 3,
2262
+ 3,
2263
+ 256
2264
+ ],
2265
+ "vae.decoder.up.0.block.0.conv2.weight": [
2266
+ 128,
2267
+ 3,
2268
+ 3,
2269
+ 128
2270
+ ],
2271
+ "vae.decoder.up.0.block.0.nin_shortcut.weight": [
2272
+ 128,
2273
+ 1,
2274
+ 1,
2275
+ 256
2276
+ ],
2277
+ "vae.decoder.up.0.block.1.conv1.weight": [
2278
+ 128,
2279
+ 3,
2280
+ 3,
2281
+ 128
2282
+ ],
2283
+ "vae.decoder.up.0.block.1.conv2.weight": [
2284
+ 128,
2285
+ 3,
2286
+ 3,
2287
+ 128
2288
+ ],
2289
+ "vae.decoder.up.0.block.2.conv1.weight": [
2290
+ 128,
2291
+ 3,
2292
+ 3,
2293
+ 128
2294
+ ],
2295
+ "vae.decoder.up.0.block.2.conv2.weight": [
2296
+ 128,
2297
+ 3,
2298
+ 3,
2299
+ 128
2300
+ ],
2301
+ "vae.decoder.up.1.block.0.conv1.weight": [
2302
+ 256,
2303
+ 3,
2304
+ 3,
2305
+ 512
2306
+ ],
2307
+ "vae.decoder.up.1.block.0.conv2.weight": [
2308
+ 256,
2309
+ 3,
2310
+ 3,
2311
+ 256
2312
+ ],
2313
+ "vae.decoder.up.1.block.0.nin_shortcut.weight": [
2314
+ 256,
2315
+ 1,
2316
+ 1,
2317
+ 512
2318
+ ],
2319
+ "vae.decoder.up.1.block.1.conv1.weight": [
2320
+ 256,
2321
+ 3,
2322
+ 3,
2323
+ 256
2324
+ ],
2325
+ "vae.decoder.up.1.block.1.conv2.weight": [
2326
+ 256,
2327
+ 3,
2328
+ 3,
2329
+ 256
2330
+ ],
2331
+ "vae.decoder.up.1.block.2.conv1.weight": [
2332
+ 256,
2333
+ 3,
2334
+ 3,
2335
+ 256
2336
+ ],
2337
+ "vae.decoder.up.1.block.2.conv2.weight": [
2338
+ 256,
2339
+ 3,
2340
+ 3,
2341
+ 256
2342
+ ],
2343
+ "vae.decoder.up.1.upsample.conv.weight": [
2344
+ 256,
2345
+ 3,
2346
+ 3,
2347
+ 256
2348
+ ],
2349
+ "vae.decoder.up.2.block.0.conv1.weight": [
2350
+ 512,
2351
+ 3,
2352
+ 3,
2353
+ 1024
2354
+ ],
2355
+ "vae.decoder.up.2.block.0.conv2.weight": [
2356
+ 512,
2357
+ 3,
2358
+ 3,
2359
+ 512
2360
+ ],
2361
+ "vae.decoder.up.2.block.0.nin_shortcut.weight": [
2362
+ 512,
2363
+ 1,
2364
+ 1,
2365
+ 1024
2366
+ ],
2367
+ "vae.decoder.up.2.block.1.conv1.weight": [
2368
+ 512,
2369
+ 3,
2370
+ 3,
2371
+ 512
2372
+ ],
2373
+ "vae.decoder.up.2.block.1.conv2.weight": [
2374
+ 512,
2375
+ 3,
2376
+ 3,
2377
+ 512
2378
+ ],
2379
+ "vae.decoder.up.2.block.2.conv1.weight": [
2380
+ 512,
2381
+ 3,
2382
+ 3,
2383
+ 512
2384
+ ],
2385
+ "vae.decoder.up.2.block.2.conv2.weight": [
2386
+ 512,
2387
+ 3,
2388
+ 3,
2389
+ 512
2390
+ ],
2391
+ "vae.decoder.up.2.upsample.conv.weight": [
2392
+ 512,
2393
+ 3,
2394
+ 3,
2395
+ 512
2396
+ ],
2397
+ "vae.decoder.up.3.block.0.conv1.weight": [
2398
+ 1024,
2399
+ 3,
2400
+ 3,
2401
+ 1024
2402
+ ],
2403
+ "vae.decoder.up.3.block.0.conv2.weight": [
2404
+ 1024,
2405
+ 3,
2406
+ 3,
2407
+ 1024
2408
+ ],
2409
+ "vae.decoder.up.3.block.1.conv1.weight": [
2410
+ 1024,
2411
+ 3,
2412
+ 3,
2413
+ 1024
2414
+ ],
2415
+ "vae.decoder.up.3.block.1.conv2.weight": [
2416
+ 1024,
2417
+ 3,
2418
+ 3,
2419
+ 1024
2420
+ ],
2421
+ "vae.decoder.up.3.block.2.conv1.weight": [
2422
+ 1024,
2423
+ 3,
2424
+ 3,
2425
+ 1024
2426
+ ],
2427
+ "vae.decoder.up.3.block.2.conv2.weight": [
2428
+ 1024,
2429
+ 3,
2430
+ 3,
2431
+ 1024
2432
+ ],
2433
+ "vae.decoder.up.3.upsample.conv.weight": [
2434
+ 1024,
2435
+ 3,
2436
+ 3,
2437
+ 1024
2438
+ ],
2439
+ "vae.encoder.conv_out.weight": [
2440
+ 32,
2441
+ 3,
2442
+ 3,
2443
+ 1024
2444
+ ],
2445
+ "vae.encoder.down.0.block.0.conv1.weight": [
2446
+ 128,
2447
+ 3,
2448
+ 3,
2449
+ 128
2450
+ ],
2451
+ "vae.encoder.down.0.block.0.conv2.weight": [
2452
+ 128,
2453
+ 3,
2454
+ 3,
2455
+ 128
2456
+ ],
2457
+ "vae.encoder.down.0.block.1.conv1.weight": [
2458
+ 128,
2459
+ 3,
2460
+ 3,
2461
+ 128
2462
+ ],
2463
+ "vae.encoder.down.0.block.1.conv2.weight": [
2464
+ 128,
2465
+ 3,
2466
+ 3,
2467
+ 128
2468
+ ],
2469
+ "vae.encoder.down.0.downsample.conv.weight": [
2470
+ 128,
2471
+ 3,
2472
+ 3,
2473
+ 128
2474
+ ],
2475
+ "vae.encoder.down.1.block.0.conv1.weight": [
2476
+ 256,
2477
+ 3,
2478
+ 3,
2479
+ 128
2480
+ ],
2481
+ "vae.encoder.down.1.block.0.conv2.weight": [
2482
+ 256,
2483
+ 3,
2484
+ 3,
2485
+ 256
2486
+ ],
2487
+ "vae.encoder.down.1.block.0.nin_shortcut.weight": [
2488
+ 256,
2489
+ 1,
2490
+ 1,
2491
+ 128
2492
+ ],
2493
+ "vae.encoder.down.1.block.1.conv1.weight": [
2494
+ 256,
2495
+ 3,
2496
+ 3,
2497
+ 256
2498
+ ],
2499
+ "vae.encoder.down.1.block.1.conv2.weight": [
2500
+ 256,
2501
+ 3,
2502
+ 3,
2503
+ 256
2504
+ ],
2505
+ "vae.encoder.down.1.downsample.conv.weight": [
2506
+ 256,
2507
+ 3,
2508
+ 3,
2509
+ 256
2510
+ ],
2511
+ "vae.encoder.down.2.block.0.conv1.weight": [
2512
+ 512,
2513
+ 3,
2514
+ 3,
2515
+ 256
2516
+ ],
2517
+ "vae.encoder.down.2.block.0.conv2.weight": [
2518
+ 512,
2519
+ 3,
2520
+ 3,
2521
+ 512
2522
+ ],
2523
+ "vae.encoder.down.2.block.0.nin_shortcut.weight": [
2524
+ 512,
2525
+ 1,
2526
+ 1,
2527
+ 256
2528
+ ],
2529
+ "vae.encoder.down.2.block.1.conv1.weight": [
2530
+ 512,
2531
+ 3,
2532
+ 3,
2533
+ 512
2534
+ ],
2535
+ "vae.encoder.down.2.block.1.conv2.weight": [
2536
+ 512,
2537
+ 3,
2538
+ 3,
2539
+ 512
2540
+ ],
2541
+ "vae.encoder.down.2.downsample.conv.weight": [
2542
+ 512,
2543
+ 3,
2544
+ 3,
2545
+ 512
2546
+ ],
2547
+ "vae.encoder.down.3.block.0.conv1.weight": [
2548
+ 1024,
2549
+ 3,
2550
+ 3,
2551
+ 512
2552
+ ],
2553
+ "vae.encoder.down.3.block.0.conv2.weight": [
2554
+ 1024,
2555
+ 3,
2556
+ 3,
2557
+ 1024
2558
+ ],
2559
+ "vae.encoder.down.3.block.0.nin_shortcut.weight": [
2560
+ 1024,
2561
+ 1,
2562
+ 1,
2563
+ 512
2564
+ ],
2565
+ "vae.encoder.down.3.block.1.conv1.weight": [
2566
+ 1024,
2567
+ 3,
2568
+ 3,
2569
+ 1024
2570
+ ],
2571
+ "vae.encoder.down.3.block.1.conv2.weight": [
2572
+ 1024,
2573
+ 3,
2574
+ 3,
2575
+ 1024
2576
+ ],
2577
+ "vae.encoder.mid.attn_1.k.weight": [
2578
+ 1024,
2579
+ 1,
2580
+ 1,
2581
+ 1024
2582
+ ],
2583
+ "vae.encoder.mid.attn_1.proj_out.weight": [
2584
+ 1024,
2585
+ 1,
2586
+ 1,
2587
+ 1024
2588
+ ],
2589
+ "vae.encoder.mid.attn_1.q.weight": [
2590
+ 1024,
2591
+ 1,
2592
+ 1,
2593
+ 1024
2594
+ ],
2595
+ "vae.encoder.mid.attn_1.v.weight": [
2596
+ 1024,
2597
+ 1,
2598
+ 1,
2599
+ 1024
2600
+ ],
2601
+ "vae.encoder.mid.block_1.conv1.weight": [
2602
+ 1024,
2603
+ 3,
2604
+ 3,
2605
+ 1024
2606
+ ],
2607
+ "vae.encoder.mid.block_1.conv2.weight": [
2608
+ 1024,
2609
+ 3,
2610
+ 3,
2611
+ 1024
2612
+ ],
2613
+ "vae.encoder.mid.block_2.conv1.weight": [
2614
+ 1024,
2615
+ 3,
2616
+ 3,
2617
+ 1024
2618
+ ],
2619
+ "vae.encoder.mid.block_2.conv2.weight": [
2620
+ 1024,
2621
+ 3,
2622
+ 3,
2623
+ 1024
2624
+ ],
2625
+ "voc.audio_block.downsamples.0.0.weight": [
2626
+ 96,
2627
+ 4,
2628
+ 48
2629
+ ],
2630
+ "voc.audio_block.downsamples.1.0.weight": [
2631
+ 192,
2632
+ 4,
2633
+ 96
2634
+ ],
2635
+ "voc.audio_block.downsamples.2.0.weight": [
2636
+ 384,
2637
+ 4,
2638
+ 192
2639
+ ],
2640
+ "voc.audio_block.downsamples.3.0.weight": [
2641
+ 768,
2642
+ 12,
2643
+ 384
2644
+ ],
2645
+ "voc.audio_block.downsamples.4.0.weight": [
2646
+ 1536,
2647
+ 20,
2648
+ 768
2649
+ ],
2650
+ "voc.conv_pre.weight": [
2651
+ 1536,
2652
+ 7,
2653
+ 256
2654
+ ],
2655
+ "voc.resblocks.0.convs1.0.weight": [
2656
+ 768,
2657
+ 3,
2658
+ 768
2659
+ ],
2660
+ "voc.resblocks.0.convs1.1.weight": [
2661
+ 768,
2662
+ 3,
2663
+ 768
2664
+ ],
2665
+ "voc.resblocks.0.convs1.2.weight": [
2666
+ 768,
2667
+ 3,
2668
+ 768
2669
+ ],
2670
+ "voc.resblocks.0.convs2.0.weight": [
2671
+ 768,
2672
+ 3,
2673
+ 768
2674
+ ],
2675
+ "voc.resblocks.0.convs2.1.weight": [
2676
+ 768,
2677
+ 3,
2678
+ 768
2679
+ ],
2680
+ "voc.resblocks.0.convs2.2.weight": [
2681
+ 768,
2682
+ 3,
2683
+ 768
2684
+ ],
2685
+ "voc.resblocks.1.convs1.0.weight": [
2686
+ 768,
2687
+ 7,
2688
+ 768
2689
+ ],
2690
+ "voc.resblocks.1.convs1.1.weight": [
2691
+ 768,
2692
+ 7,
2693
+ 768
2694
+ ],
2695
+ "voc.resblocks.1.convs1.2.weight": [
2696
+ 768,
2697
+ 7,
2698
+ 768
2699
+ ],
2700
+ "voc.resblocks.1.convs2.0.weight": [
2701
+ 768,
2702
+ 7,
2703
+ 768
2704
+ ],
2705
+ "voc.resblocks.1.convs2.1.weight": [
2706
+ 768,
2707
+ 7,
2708
+ 768
2709
+ ],
2710
+ "voc.resblocks.1.convs2.2.weight": [
2711
+ 768,
2712
+ 7,
2713
+ 768
2714
+ ],
2715
+ "voc.resblocks.2.convs1.0.weight": [
2716
+ 768,
2717
+ 11,
2718
+ 768
2719
+ ],
2720
+ "voc.resblocks.2.convs1.1.weight": [
2721
+ 768,
2722
+ 11,
2723
+ 768
2724
+ ],
2725
+ "voc.resblocks.2.convs1.2.weight": [
2726
+ 768,
2727
+ 11,
2728
+ 768
2729
+ ],
2730
+ "voc.resblocks.2.convs2.0.weight": [
2731
+ 768,
2732
+ 11,
2733
+ 768
2734
+ ],
2735
+ "voc.resblocks.2.convs2.1.weight": [
2736
+ 768,
2737
+ 11,
2738
+ 768
2739
+ ],
2740
+ "voc.resblocks.2.convs2.2.weight": [
2741
+ 768,
2742
+ 11,
2743
+ 768
2744
+ ],
2745
+ "voc.resblocks.3.convs1.0.weight": [
2746
+ 384,
2747
+ 3,
2748
+ 384
2749
+ ],
2750
+ "voc.resblocks.3.convs1.1.weight": [
2751
+ 384,
2752
+ 3,
2753
+ 384
2754
+ ],
2755
+ "voc.resblocks.3.convs1.2.weight": [
2756
+ 384,
2757
+ 3,
2758
+ 384
2759
+ ],
2760
+ "voc.resblocks.3.convs2.0.weight": [
2761
+ 384,
2762
+ 3,
2763
+ 384
2764
+ ],
2765
+ "voc.resblocks.3.convs2.1.weight": [
2766
+ 384,
2767
+ 3,
2768
+ 384
2769
+ ],
2770
+ "voc.resblocks.3.convs2.2.weight": [
2771
+ 384,
2772
+ 3,
2773
+ 384
2774
+ ],
2775
+ "voc.resblocks.4.convs1.0.weight": [
2776
+ 384,
2777
+ 7,
2778
+ 384
2779
+ ],
2780
+ "voc.resblocks.4.convs1.1.weight": [
2781
+ 384,
2782
+ 7,
2783
+ 384
2784
+ ],
2785
+ "voc.resblocks.4.convs1.2.weight": [
2786
+ 384,
2787
+ 7,
2788
+ 384
2789
+ ],
2790
+ "voc.resblocks.4.convs2.0.weight": [
2791
+ 384,
2792
+ 7,
2793
+ 384
2794
+ ],
2795
+ "voc.resblocks.4.convs2.1.weight": [
2796
+ 384,
2797
+ 7,
2798
+ 384
2799
+ ],
2800
+ "voc.resblocks.4.convs2.2.weight": [
2801
+ 384,
2802
+ 7,
2803
+ 384
2804
+ ],
2805
+ "voc.resblocks.5.convs1.0.weight": [
2806
+ 384,
2807
+ 11,
2808
+ 384
2809
+ ],
2810
+ "voc.resblocks.5.convs1.1.weight": [
2811
+ 384,
2812
+ 11,
2813
+ 384
2814
+ ],
2815
+ "voc.resblocks.5.convs1.2.weight": [
2816
+ 384,
2817
+ 11,
2818
+ 384
2819
+ ],
2820
+ "voc.resblocks.5.convs2.0.weight": [
2821
+ 384,
2822
+ 11,
2823
+ 384
2824
+ ],
2825
+ "voc.resblocks.5.convs2.1.weight": [
2826
+ 384,
2827
+ 11,
2828
+ 384
2829
+ ],
2830
+ "voc.resblocks.5.convs2.2.weight": [
2831
+ 384,
2832
+ 11,
2833
+ 384
2834
+ ],
2835
+ "voc.resblocks.6.convs1.0.weight": [
2836
+ 192,
2837
+ 3,
2838
+ 192
2839
+ ],
2840
+ "voc.resblocks.6.convs1.1.weight": [
2841
+ 192,
2842
+ 3,
2843
+ 192
2844
+ ],
2845
+ "voc.resblocks.6.convs1.2.weight": [
2846
+ 192,
2847
+ 3,
2848
+ 192
2849
+ ],
2850
+ "voc.resblocks.6.convs2.0.weight": [
2851
+ 192,
2852
+ 3,
2853
+ 192
2854
+ ],
2855
+ "voc.resblocks.6.convs2.1.weight": [
2856
+ 192,
2857
+ 3,
2858
+ 192
2859
+ ],
2860
+ "voc.resblocks.6.convs2.2.weight": [
2861
+ 192,
2862
+ 3,
2863
+ 192
2864
+ ],
2865
+ "voc.resblocks.7.convs1.0.weight": [
2866
+ 192,
2867
+ 7,
2868
+ 192
2869
+ ],
2870
+ "voc.resblocks.7.convs1.1.weight": [
2871
+ 192,
2872
+ 7,
2873
+ 192
2874
+ ],
2875
+ "voc.resblocks.7.convs1.2.weight": [
2876
+ 192,
2877
+ 7,
2878
+ 192
2879
+ ],
2880
+ "voc.resblocks.7.convs2.0.weight": [
2881
+ 192,
2882
+ 7,
2883
+ 192
2884
+ ],
2885
+ "voc.resblocks.7.convs2.1.weight": [
2886
+ 192,
2887
+ 7,
2888
+ 192
2889
+ ],
2890
+ "voc.resblocks.7.convs2.2.weight": [
2891
+ 192,
2892
+ 7,
2893
+ 192
2894
+ ],
2895
+ "voc.resblocks.8.convs1.0.weight": [
2896
+ 192,
2897
+ 11,
2898
+ 192
2899
+ ],
2900
+ "voc.resblocks.8.convs1.1.weight": [
2901
+ 192,
2902
+ 11,
2903
+ 192
2904
+ ],
2905
+ "voc.resblocks.8.convs1.2.weight": [
2906
+ 192,
2907
+ 11,
2908
+ 192
2909
+ ],
2910
+ "voc.resblocks.8.convs2.0.weight": [
2911
+ 192,
2912
+ 11,
2913
+ 192
2914
+ ],
2915
+ "voc.resblocks.8.convs2.1.weight": [
2916
+ 192,
2917
+ 11,
2918
+ 192
2919
+ ],
2920
+ "voc.resblocks.8.convs2.2.weight": [
2921
+ 192,
2922
+ 11,
2923
+ 192
2924
+ ],
2925
+ "voc.ups.0.0.weight": [
2926
+ 768,
2927
+ 20,
2928
+ 1536
2929
+ ],
2930
+ "voc.ups.1.0.weight": [
2931
+ 384,
2932
+ 12,
2933
+ 768
2934
+ ],
2935
+ "voc.ups.2.0.weight": [
2936
+ 192,
2937
+ 4,
2938
+ 384
2939
+ ],
2940
+ "voc.ups.3.0.weight": [
2941
+ 96,
2942
+ 4,
2943
+ 192
2944
+ ],
2945
+ "voc.ups.4.0.weight": [
2946
+ 48,
2947
+ 4,
2948
+ 96
2949
+ ]
2950
+ }
2951
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e68d3d0dff44c85a1086846b81bd25567659e7cf02c611376c863232423ba860
3
+ size 362760782