initial commit
Browse files- .gitignore +186 -0
- animatediff-laion/adapter_config.json +552 -0
- animatediff-laion/adapter_model.safetensors +3 -0
- animatediff-laion/unet_lora/pytorch_lora_weights.safetensors +3 -0
- modelscopet2v-3d-cartoon/adapter_config.json +512 -0
- modelscopet2v-3d-cartoon/adapter_model.safetensors +3 -0
- modelscopet2v-3d-cartoon/unet_lora/pytorch_lora_weights.safetensors +3 -0
- modelscopet2v-anime/adapter_config.json +512 -0
- modelscopet2v-anime/adapter_model.safetensors +3 -0
- modelscopet2v-anime/unet_lora/pytorch_lora_weights.safetensors +3 -0
- modelscopet2v-laion/adapter_config.json +512 -0
- modelscopet2v-laion/adapter_model.safetensors +3 -0
- modelscopet2v-laion/unet_lora/pytorch_lora_weights.safetensors +3 -0
- modelscopet2v-real/adapter_config.json +504 -0
- modelscopet2v-real/adapter_model.safetensors +3 -0
- modelscopet2v-real/unet_lora/pytorch_lora_weights.safetensors +3 -0
- modelscopet2v-webvid/adapter_config.json +504 -0
- modelscopet2v-webvid/adapter_model.safetensors +3 -0
- modelscopet2v-webvid/unet_lora/pytorch_lora_weights.safetensors +3 -0
.gitignore
ADDED
@@ -0,0 +1,186 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Created by https://www.toptal.com/developers/gitignore/api/python
|
2 |
+
# Edit at https://www.toptal.com/developers/gitignore?templates=python
|
3 |
+
|
4 |
+
### Python ###
|
5 |
+
# Byte-compiled / optimized / DLL files
|
6 |
+
__pycache__/
|
7 |
+
*.py[cod]
|
8 |
+
*$py.class
|
9 |
+
|
10 |
+
# C extensions
|
11 |
+
*.so
|
12 |
+
|
13 |
+
# Distribution / packaging
|
14 |
+
.Python
|
15 |
+
build/
|
16 |
+
develop-eggs/
|
17 |
+
dist/
|
18 |
+
downloads/
|
19 |
+
eggs/
|
20 |
+
.eggs/
|
21 |
+
lib/
|
22 |
+
lib64/
|
23 |
+
parts/
|
24 |
+
sdist/
|
25 |
+
var/
|
26 |
+
wheels/
|
27 |
+
share/python-wheels/
|
28 |
+
*.egg-info/
|
29 |
+
.installed.cfg
|
30 |
+
*.egg
|
31 |
+
MANIFEST
|
32 |
+
|
33 |
+
# PyInstaller
|
34 |
+
# Usually these files are written by a python script from a template
|
35 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
36 |
+
*.manifest
|
37 |
+
*.spec
|
38 |
+
|
39 |
+
# Installer logs
|
40 |
+
pip-log.txt
|
41 |
+
pip-delete-this-directory.txt
|
42 |
+
|
43 |
+
# Unit test / coverage reports
|
44 |
+
htmlcov/
|
45 |
+
.tox/
|
46 |
+
.nox/
|
47 |
+
.coverage
|
48 |
+
.coverage.*
|
49 |
+
.cache
|
50 |
+
nosetests.xml
|
51 |
+
coverage.xml
|
52 |
+
*.cover
|
53 |
+
*.py,cover
|
54 |
+
.hypothesis/
|
55 |
+
.pytest_cache/
|
56 |
+
cover/
|
57 |
+
|
58 |
+
# Translations
|
59 |
+
*.mo
|
60 |
+
*.pot
|
61 |
+
|
62 |
+
# Django stuff:
|
63 |
+
*.log
|
64 |
+
local_settings.py
|
65 |
+
db.sqlite3
|
66 |
+
db.sqlite3-journal
|
67 |
+
|
68 |
+
# Flask stuff:
|
69 |
+
instance/
|
70 |
+
.webassets-cache
|
71 |
+
|
72 |
+
# Scrapy stuff:
|
73 |
+
.scrapy
|
74 |
+
|
75 |
+
# Sphinx documentation
|
76 |
+
docs/_build/
|
77 |
+
|
78 |
+
# PyBuilder
|
79 |
+
.pybuilder/
|
80 |
+
target/
|
81 |
+
|
82 |
+
# Jupyter Notebook
|
83 |
+
.ipynb_checkpoints
|
84 |
+
|
85 |
+
# IPython
|
86 |
+
profile_default/
|
87 |
+
ipython_config.py
|
88 |
+
|
89 |
+
# pyenv
|
90 |
+
# For a library or package, you might want to ignore these files since the code is
|
91 |
+
# intended to run in multiple environments; otherwise, check them in:
|
92 |
+
# .python-version
|
93 |
+
|
94 |
+
# pipenv
|
95 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
96 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
97 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
98 |
+
# install all needed dependencies.
|
99 |
+
#Pipfile.lock
|
100 |
+
|
101 |
+
# poetry
|
102 |
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
103 |
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
104 |
+
# commonly ignored for libraries.
|
105 |
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
106 |
+
#poetry.lock
|
107 |
+
|
108 |
+
# pdm
|
109 |
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
110 |
+
#pdm.lock
|
111 |
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
112 |
+
# in version control.
|
113 |
+
# https://pdm.fming.dev/#use-with-ide
|
114 |
+
.pdm.toml
|
115 |
+
|
116 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
117 |
+
__pypackages__/
|
118 |
+
|
119 |
+
# Celery stuff
|
120 |
+
celerybeat-schedule
|
121 |
+
celerybeat.pid
|
122 |
+
|
123 |
+
# SageMath parsed files
|
124 |
+
*.sage.py
|
125 |
+
|
126 |
+
# Environments
|
127 |
+
.env
|
128 |
+
.venv
|
129 |
+
env/
|
130 |
+
venv/
|
131 |
+
ENV/
|
132 |
+
env.bak/
|
133 |
+
venv.bak/
|
134 |
+
|
135 |
+
# Spyder project settings
|
136 |
+
.spyderproject
|
137 |
+
.spyproject
|
138 |
+
|
139 |
+
# Rope project settings
|
140 |
+
.ropeproject
|
141 |
+
|
142 |
+
# mkdocs documentation
|
143 |
+
/site
|
144 |
+
|
145 |
+
# mypy
|
146 |
+
.mypy_cache/
|
147 |
+
.dmypy.json
|
148 |
+
dmypy.json
|
149 |
+
|
150 |
+
# Pyre type checker
|
151 |
+
.pyre/
|
152 |
+
|
153 |
+
# pytype static type analyzer
|
154 |
+
.pytype/
|
155 |
+
|
156 |
+
# Cython debug symbols
|
157 |
+
cython_debug/
|
158 |
+
|
159 |
+
# PyCharm
|
160 |
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
161 |
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
162 |
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
163 |
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
164 |
+
#.idea/
|
165 |
+
|
166 |
+
### Python Patch ###
|
167 |
+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
168 |
+
poetry.toml
|
169 |
+
|
170 |
+
# ruff
|
171 |
+
.ruff_cache/
|
172 |
+
|
173 |
+
# LSP config files
|
174 |
+
pyrightconfig.json
|
175 |
+
|
176 |
+
# End of https://www.toptal.com/developers/gitignore/api/python
|
177 |
+
|
178 |
+
|
179 |
+
*discriminator/
|
180 |
+
*spatial_head/
|
181 |
+
*.mp4
|
182 |
+
scaler.pt
|
183 |
+
out/
|
184 |
+
.vscode/
|
185 |
+
debug.py
|
186 |
+
*.DS_Store
|
animatediff-laion/adapter_config.json
ADDED
@@ -0,0 +1,552 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": {
|
4 |
+
"base_model_class": "UNetMotionModel",
|
5 |
+
"parent_library": "diffusers.models.unets.unet_motion_model"
|
6 |
+
},
|
7 |
+
"bias": "none",
|
8 |
+
"fan_in_fan_out": false,
|
9 |
+
"inference_mode": true,
|
10 |
+
"init_lora_weights": true,
|
11 |
+
"loftq_config": {},
|
12 |
+
"lora_alpha": 64,
|
13 |
+
"lora_dropout": 0.0,
|
14 |
+
"megatron_core": "megatron.core",
|
15 |
+
"peft_type": "LORA",
|
16 |
+
"r": 64,
|
17 |
+
"rank_pattern": {},
|
18 |
+
"target_modules": [
|
19 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
20 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
21 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
22 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
23 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
24 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
25 |
+
"up_blocks.1.motion_modules.1.proj_out",
|
26 |
+
"up_blocks.0.motion_modules.0.proj_in",
|
27 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.ff.net.2",
|
28 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_v",
|
29 |
+
"up_blocks.3.resnets.1.time_emb_proj",
|
30 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn2.to_v",
|
31 |
+
"up_blocks.3.resnets.2.conv2",
|
32 |
+
"down_blocks.2.downsamplers.0.conv",
|
33 |
+
"mid_block.resnets.0.time_emb_proj",
|
34 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
35 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
36 |
+
"up_blocks.3.resnets.0.time_emb_proj",
|
37 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
38 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
39 |
+
"up_blocks.0.resnets.1.time_emb_proj",
|
40 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_v",
|
41 |
+
"up_blocks.0.resnets.0.conv1",
|
42 |
+
"up_blocks.3.attentions.2.proj_in",
|
43 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn1.to_k",
|
44 |
+
"mid_block.resnets.0.conv2",
|
45 |
+
"down_blocks.2.attentions.0.proj_in",
|
46 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn2.to_q",
|
47 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
48 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
49 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.ff.net.2",
|
50 |
+
"mid_block.resnets.0.conv1",
|
51 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
52 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn1.to_q",
|
53 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_v",
|
54 |
+
"down_blocks.2.resnets.1.conv1",
|
55 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
56 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
57 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_k",
|
58 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
59 |
+
"up_blocks.2.resnets.1.conv1",
|
60 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn1.to_k",
|
61 |
+
"down_blocks.0.motion_modules.1.proj_out",
|
62 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
63 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.ff.net.0.proj",
|
64 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
65 |
+
"down_blocks.0.resnets.1.conv2",
|
66 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
67 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
68 |
+
"down_blocks.1.attentions.1.proj_in",
|
69 |
+
"up_blocks.2.motion_modules.1.proj_out",
|
70 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn1.to_v",
|
71 |
+
"down_blocks.0.attentions.1.proj_out",
|
72 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_q",
|
73 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_k",
|
74 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn1.to_out.0",
|
75 |
+
"down_blocks.1.resnets.1.time_emb_proj",
|
76 |
+
"down_blocks.3.motion_modules.1.proj_out",
|
77 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
78 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
79 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn2.to_v",
|
80 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
81 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
82 |
+
"up_blocks.1.attentions.1.proj_out",
|
83 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
84 |
+
"mid_block.motion_modules.0.transformer_blocks.0.ff.net.2",
|
85 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
86 |
+
"up_blocks.0.resnets.2.conv_shortcut",
|
87 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
88 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_v",
|
89 |
+
"up_blocks.3.resnets.1.conv2",
|
90 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
91 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
92 |
+
"down_blocks.2.resnets.1.time_emb_proj",
|
93 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_q",
|
94 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_k",
|
95 |
+
"up_blocks.3.attentions.1.proj_out",
|
96 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
97 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn1.to_out.0",
|
98 |
+
"down_blocks.0.downsamplers.0.conv",
|
99 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
100 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_v",
|
101 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn2.to_out.0",
|
102 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
103 |
+
"down_blocks.0.resnets.0.conv1",
|
104 |
+
"up_blocks.3.motion_modules.1.proj_out",
|
105 |
+
"up_blocks.2.resnets.1.conv_shortcut",
|
106 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
107 |
+
"down_blocks.1.attentions.1.proj_out",
|
108 |
+
"up_blocks.1.resnets.0.time_emb_proj",
|
109 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
110 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
111 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
112 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.2",
|
113 |
+
"down_blocks.1.motion_modules.1.proj_in",
|
114 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
115 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn2.to_out.0",
|
116 |
+
"up_blocks.1.attentions.2.proj_out",
|
117 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn1.to_q",
|
118 |
+
"down_blocks.1.resnets.0.conv_shortcut",
|
119 |
+
"up_blocks.1.resnets.2.conv_shortcut",
|
120 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
121 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
122 |
+
"up_blocks.3.resnets.1.conv1",
|
123 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
124 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
125 |
+
"up_blocks.3.motion_modules.2.proj_in",
|
126 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
127 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.ff.net.2",
|
128 |
+
"up_blocks.3.motion_modules.0.proj_out",
|
129 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
130 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
131 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
132 |
+
"down_blocks.2.resnets.1.conv2",
|
133 |
+
"up_blocks.2.attentions.0.proj_in",
|
134 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.ff.net.2",
|
135 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.ff.net.2",
|
136 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn2.to_out.0",
|
137 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
138 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
139 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
140 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
141 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
142 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.2",
|
143 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
144 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
145 |
+
"up_blocks.0.motion_modules.2.proj_out",
|
146 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_k",
|
147 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
148 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
149 |
+
"up_blocks.3.motion_modules.0.proj_in",
|
150 |
+
"up_blocks.2.resnets.1.time_emb_proj",
|
151 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
152 |
+
"down_blocks.1.downsamplers.0.conv",
|
153 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
154 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn2.to_q",
|
155 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
156 |
+
"up_blocks.0.motion_modules.1.proj_in",
|
157 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
158 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_v",
|
159 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
160 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
161 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.ff.net.2",
|
162 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
163 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
164 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
165 |
+
"down_blocks.0.resnets.1.time_emb_proj",
|
166 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
167 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
168 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
169 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_q",
|
170 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
171 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
172 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_k",
|
173 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
174 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_k",
|
175 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
176 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
177 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
178 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
179 |
+
"up_blocks.3.attentions.0.proj_out",
|
180 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
181 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_q",
|
182 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
183 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
184 |
+
"up_blocks.2.attentions.1.proj_in",
|
185 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
186 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn2.to_out.0",
|
187 |
+
"down_blocks.3.resnets.1.conv1",
|
188 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
189 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
190 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
191 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
192 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
193 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn1.to_out.0",
|
194 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_q",
|
195 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.ff.net.2",
|
196 |
+
"up_blocks.0.resnets.2.conv1",
|
197 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
198 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn2.to_k",
|
199 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
200 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
201 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
202 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
203 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
204 |
+
"down_blocks.1.attentions.0.proj_out",
|
205 |
+
"up_blocks.2.upsamplers.0.conv",
|
206 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn1.to_q",
|
207 |
+
"up_blocks.1.resnets.1.conv2",
|
208 |
+
"up_blocks.0.resnets.0.time_emb_proj",
|
209 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_v",
|
210 |
+
"down_blocks.2.motion_modules.1.proj_out",
|
211 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_v",
|
212 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
213 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
214 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
215 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
216 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
217 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
218 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
219 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
220 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
221 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_k",
|
222 |
+
"up_blocks.2.motion_modules.1.proj_in",
|
223 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
224 |
+
"down_blocks.2.resnets.0.conv2",
|
225 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
226 |
+
"down_blocks.1.resnets.1.conv1",
|
227 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
228 |
+
"up_blocks.1.attentions.2.proj_in",
|
229 |
+
"up_blocks.3.resnets.2.time_emb_proj",
|
230 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
231 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
232 |
+
"down_blocks.1.attentions.0.proj_in",
|
233 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
234 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
235 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
236 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
237 |
+
"mid_block.resnets.1.conv1",
|
238 |
+
"down_blocks.0.attentions.0.proj_in",
|
239 |
+
"up_blocks.1.motion_modules.2.proj_in",
|
240 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
241 |
+
"up_blocks.1.resnets.0.conv2",
|
242 |
+
"up_blocks.3.attentions.1.proj_in",
|
243 |
+
"up_blocks.3.resnets.0.conv_shortcut",
|
244 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
245 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
246 |
+
"up_blocks.2.attentions.0.proj_out",
|
247 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.2",
|
248 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
249 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
250 |
+
"up_blocks.0.resnets.2.conv2",
|
251 |
+
"up_blocks.1.motion_modules.2.proj_out",
|
252 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.2",
|
253 |
+
"up_blocks.3.resnets.0.conv2",
|
254 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
255 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
256 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.ff.net.2",
|
257 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
258 |
+
"down_blocks.1.motion_modules.0.proj_out",
|
259 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn2.to_k",
|
260 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_k",
|
261 |
+
"up_blocks.2.resnets.2.time_emb_proj",
|
262 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
263 |
+
"up_blocks.2.motion_modules.2.proj_out",
|
264 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
265 |
+
"up_blocks.1.resnets.2.time_emb_proj",
|
266 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.ff.net.2",
|
267 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.2",
|
268 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
269 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
270 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
271 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
272 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
273 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn2.to_v",
|
274 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
275 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_k",
|
276 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
277 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
278 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.ff.net.2",
|
279 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
280 |
+
"down_blocks.3.resnets.1.time_emb_proj",
|
281 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
282 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
283 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
284 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
285 |
+
"up_blocks.1.resnets.0.conv_shortcut",
|
286 |
+
"up_blocks.2.resnets.1.conv2",
|
287 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
288 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_v",
|
289 |
+
"up_blocks.1.resnets.1.conv_shortcut",
|
290 |
+
"up_blocks.2.motion_modules.2.proj_in",
|
291 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
292 |
+
"down_blocks.0.attentions.1.proj_in",
|
293 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
294 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
295 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
296 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
297 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
298 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.ff.net.2",
|
299 |
+
"up_blocks.2.resnets.0.conv2",
|
300 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
301 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
302 |
+
"down_blocks.2.motion_modules.1.proj_in",
|
303 |
+
"up_blocks.0.motion_modules.2.proj_in",
|
304 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_q",
|
305 |
+
"up_blocks.3.motion_modules.1.proj_in",
|
306 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn1.to_v",
|
307 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
308 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
309 |
+
"up_blocks.0.resnets.0.conv_shortcut",
|
310 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn1.to_v",
|
311 |
+
"up_blocks.2.resnets.2.conv_shortcut",
|
312 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn2.to_v",
|
313 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
314 |
+
"down_blocks.2.motion_modules.0.proj_out",
|
315 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
316 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
317 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
318 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
319 |
+
"up_blocks.2.resnets.0.conv1",
|
320 |
+
"up_blocks.2.attentions.2.proj_out",
|
321 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_k",
|
322 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
323 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
324 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
325 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
326 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.ff.net.2",
|
327 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_k",
|
328 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_v",
|
329 |
+
"up_blocks.0.resnets.1.conv_shortcut",
|
330 |
+
"down_blocks.1.resnets.1.conv2",
|
331 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_q",
|
332 |
+
"down_blocks.3.resnets.0.conv1",
|
333 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.ff.net.2",
|
334 |
+
"up_blocks.2.attentions.1.proj_out",
|
335 |
+
"down_blocks.0.attentions.0.proj_out",
|
336 |
+
"up_blocks.1.resnets.0.conv1",
|
337 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
338 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
339 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
340 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
341 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
342 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_v",
|
343 |
+
"up_blocks.0.motion_modules.0.proj_out",
|
344 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
345 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
346 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_v",
|
347 |
+
"down_blocks.1.motion_modules.0.proj_in",
|
348 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
349 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
350 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
351 |
+
"up_blocks.1.resnets.1.conv1",
|
352 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn2.to_q",
|
353 |
+
"up_blocks.2.resnets.2.conv2",
|
354 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
355 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
356 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.ff.net.2",
|
357 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
358 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
359 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.attn1.to_q",
|
360 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
361 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
362 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
363 |
+
"up_blocks.1.resnets.2.conv1",
|
364 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.ff.net.0.proj",
|
365 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
366 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
367 |
+
"mid_block.motion_modules.0.proj_out",
|
368 |
+
"up_blocks.3.resnets.2.conv_shortcut",
|
369 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
370 |
+
"down_blocks.0.motion_modules.1.proj_in",
|
371 |
+
"down_blocks.3.motion_modules.0.proj_out",
|
372 |
+
"mid_block.attentions.0.proj_in",
|
373 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
374 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
375 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
376 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_k",
|
377 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
378 |
+
"down_blocks.3.resnets.1.conv2",
|
379 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
380 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
381 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
382 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
383 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
384 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_q",
|
385 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
386 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
387 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
388 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
389 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_q",
|
390 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
391 |
+
"up_blocks.0.resnets.2.time_emb_proj",
|
392 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_q",
|
393 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
394 |
+
"up_blocks.3.resnets.0.conv1",
|
395 |
+
"up_blocks.1.attentions.0.proj_in",
|
396 |
+
"up_blocks.2.attentions.2.proj_in",
|
397 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
398 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
399 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
400 |
+
"up_blocks.3.resnets.1.conv_shortcut",
|
401 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.ff.net.0.proj",
|
402 |
+
"up_blocks.2.motion_modules.0.proj_in",
|
403 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
404 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
405 |
+
"down_blocks.0.resnets.1.conv1",
|
406 |
+
"down_blocks.2.attentions.0.proj_out",
|
407 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn1.to_k",
|
408 |
+
"up_blocks.1.motion_modules.0.proj_out",
|
409 |
+
"mid_block.resnets.1.time_emb_proj",
|
410 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn2.to_k",
|
411 |
+
"down_blocks.2.attentions.1.proj_in",
|
412 |
+
"mid_block.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
413 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
414 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
415 |
+
"up_blocks.2.resnets.2.conv1",
|
416 |
+
"down_blocks.3.resnets.0.time_emb_proj",
|
417 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_k",
|
418 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
419 |
+
"down_blocks.0.motion_modules.0.proj_in",
|
420 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
421 |
+
"up_blocks.3.attentions.0.proj_in",
|
422 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.ff.net.2",
|
423 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
424 |
+
"mid_block.motion_modules.0.proj_in",
|
425 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
426 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
427 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn2.to_q",
|
428 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
429 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
430 |
+
"mid_block.attentions.0.proj_out",
|
431 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
432 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
433 |
+
"up_blocks.2.resnets.0.conv_shortcut",
|
434 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
435 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
436 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
437 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_q",
|
438 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
439 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
440 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_k",
|
441 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
442 |
+
"down_blocks.2.resnets.0.conv1",
|
443 |
+
"down_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
444 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
445 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
446 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
447 |
+
"down_blocks.3.motion_modules.0.proj_in",
|
448 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
449 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_v",
|
450 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
451 |
+
"down_blocks.1.resnets.0.conv2",
|
452 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
453 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_q",
|
454 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
455 |
+
"down_blocks.2.motion_modules.0.proj_in",
|
456 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
457 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
458 |
+
"down_blocks.0.motion_modules.0.proj_out",
|
459 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_q",
|
460 |
+
"down_blocks.1.resnets.0.time_emb_proj",
|
461 |
+
"down_blocks.2.attentions.1.proj_out",
|
462 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_v",
|
463 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
464 |
+
"up_blocks.0.resnets.0.conv2",
|
465 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
466 |
+
"down_blocks.3.resnets.0.conv2",
|
467 |
+
"down_blocks.0.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
468 |
+
"up_blocks.1.attentions.0.proj_out",
|
469 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_out.0",
|
470 |
+
"up_blocks.2.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
471 |
+
"up_blocks.0.motion_modules.1.transformer_blocks.0.ff.net.2",
|
472 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
473 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
474 |
+
"up_blocks.1.resnets.1.time_emb_proj",
|
475 |
+
"up_blocks.1.motion_modules.0.proj_in",
|
476 |
+
"up_blocks.2.resnets.0.time_emb_proj",
|
477 |
+
"up_blocks.0.resnets.1.conv2",
|
478 |
+
"up_blocks.3.resnets.2.conv1",
|
479 |
+
"up_blocks.3.motion_modules.1.transformer_blocks.0.attn2.to_q",
|
480 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
481 |
+
"up_blocks.1.motion_modules.1.proj_in",
|
482 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.ff.net.0.proj",
|
483 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
484 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_v",
|
485 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
486 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
487 |
+
"up_blocks.3.attentions.2.proj_out",
|
488 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
489 |
+
"down_blocks.0.resnets.0.conv2",
|
490 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.ff.net.2",
|
491 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn2.to_k",
|
492 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_k",
|
493 |
+
"up_blocks.3.motion_modules.2.transformer_blocks.0.ff.net.2",
|
494 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_out.0",
|
495 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_q",
|
496 |
+
"up_blocks.3.motion_modules.2.proj_out",
|
497 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_v",
|
498 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
499 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_q",
|
500 |
+
"up_blocks.1.upsamplers.0.conv",
|
501 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.2",
|
502 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
503 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_q",
|
504 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn2.to_q",
|
505 |
+
"up_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
506 |
+
"down_blocks.2.resnets.0.time_emb_proj",
|
507 |
+
"down_blocks.3.motion_modules.1.proj_in",
|
508 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_q",
|
509 |
+
"down_blocks.1.motion_modules.1.proj_out",
|
510 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
511 |
+
"up_blocks.0.upsamplers.0.conv",
|
512 |
+
"down_blocks.2.motion_modules.0.transformer_blocks.0.ff.net.0.proj",
|
513 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.2",
|
514 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_k",
|
515 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
516 |
+
"up_blocks.2.motion_modules.0.proj_out",
|
517 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
518 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
519 |
+
"up_blocks.1.attentions.1.proj_in",
|
520 |
+
"mid_block.resnets.1.conv2",
|
521 |
+
"up_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_k",
|
522 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
523 |
+
"up_blocks.0.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
524 |
+
"down_blocks.1.resnets.0.conv1",
|
525 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_v",
|
526 |
+
"down_blocks.0.resnets.0.time_emb_proj",
|
527 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_k",
|
528 |
+
"down_blocks.2.motion_modules.1.transformer_blocks.0.attn1.to_q",
|
529 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.ff.net.2",
|
530 |
+
"up_blocks.1.resnets.2.conv2",
|
531 |
+
"down_blocks.3.motion_modules.1.transformer_blocks.0.ff.net.0.proj",
|
532 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_k",
|
533 |
+
"up_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_out.0",
|
534 |
+
"up_blocks.1.motion_modules.2.transformer_blocks.0.attn1.to_out.0",
|
535 |
+
"down_blocks.3.motion_modules.0.transformer_blocks.0.attn2.to_v",
|
536 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
537 |
+
"down_blocks.2.resnets.0.conv_shortcut",
|
538 |
+
"mid_block.motion_modules.0.transformer_blocks.0.attn1.to_k",
|
539 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.ff.net.2",
|
540 |
+
"up_blocks.2.motion_modules.2.transformer_blocks.0.attn1.to_k",
|
541 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
542 |
+
"down_blocks.1.motion_modules.0.transformer_blocks.0.attn1.to_v",
|
543 |
+
"up_blocks.0.resnets.1.conv1",
|
544 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.2",
|
545 |
+
"down_blocks.1.motion_modules.1.transformer_blocks.0.attn2.to_out.0",
|
546 |
+
"up_blocks.0.motion_modules.1.proj_out",
|
547 |
+
"up_blocks.1.motion_modules.1.transformer_blocks.0.attn1.to_v",
|
548 |
+
"up_blocks.0.motion_modules.2.transformer_blocks.0.attn1.to_v"
|
549 |
+
],
|
550 |
+
"use_dora": false,
|
551 |
+
"use_rslora": false
|
552 |
+
}
|
animatediff-laion/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:01c4ec4c931882cd18dd55e353f81c6296fb2792dbe93bbb778afc8f554e4c66
|
3 |
+
size 433506048
|
animatediff-laion/unet_lora/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fd317a22553e044b1f1510647bf4adb7364103be3934b40507fcef445fb543eb
|
3 |
+
size 433511344
|
modelscopet2v-3d-cartoon/adapter_config.json
ADDED
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": {
|
4 |
+
"base_model_class": "UNet3DConditionModel",
|
5 |
+
"parent_library": "diffusers.models.unets.unet_3d_condition"
|
6 |
+
},
|
7 |
+
"base_model_name_or_path": null,
|
8 |
+
"bias": "none",
|
9 |
+
"fan_in_fan_out": false,
|
10 |
+
"inference_mode": true,
|
11 |
+
"init_lora_weights": true,
|
12 |
+
"layer_replication": null,
|
13 |
+
"layers_pattern": null,
|
14 |
+
"layers_to_transform": null,
|
15 |
+
"loftq_config": {},
|
16 |
+
"lora_alpha": 64,
|
17 |
+
"lora_dropout": 0.0,
|
18 |
+
"megatron_config": null,
|
19 |
+
"megatron_core": "megatron.core",
|
20 |
+
"modules_to_save": null,
|
21 |
+
"peft_type": "LORA",
|
22 |
+
"r": 64,
|
23 |
+
"rank_pattern": {},
|
24 |
+
"revision": null,
|
25 |
+
"target_modules": [
|
26 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
27 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
28 |
+
"up_blocks.0.resnets.0.conv1",
|
29 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
30 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
31 |
+
"mid_block.temp_attentions.0.proj_in",
|
32 |
+
"down_blocks.1.attentions.0.proj_in",
|
33 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
34 |
+
"up_blocks.0.resnets.1.conv2",
|
35 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
36 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
37 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
38 |
+
"up_blocks.3.resnets.2.conv2",
|
39 |
+
"up_blocks.3.temp_attentions.1.proj_out",
|
40 |
+
"up_blocks.1.attentions.2.proj_out",
|
41 |
+
"down_blocks.2.resnets.1.conv2",
|
42 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
43 |
+
"transformer_in.transformer_blocks.0.ff.net.0.proj",
|
44 |
+
"up_blocks.1.attentions.0.proj_out",
|
45 |
+
"up_blocks.2.resnets.1.conv1",
|
46 |
+
"up_blocks.1.attentions.0.proj_in",
|
47 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
48 |
+
"mid_block.attentions.0.proj_out",
|
49 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
50 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
51 |
+
"up_blocks.0.resnets.2.conv_shortcut",
|
52 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
53 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
54 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
55 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
56 |
+
"up_blocks.2.attentions.1.proj_out",
|
57 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
58 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_k",
|
59 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
60 |
+
"down_blocks.2.resnets.1.time_emb_proj",
|
61 |
+
"down_blocks.0.temp_attentions.1.proj_in",
|
62 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
63 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_v",
|
64 |
+
"transformer_in.transformer_blocks.0.attn1.to_v",
|
65 |
+
"up_blocks.2.temp_attentions.2.proj_out",
|
66 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.2",
|
67 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
68 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
69 |
+
"transformer_in.transformer_blocks.0.ff.net.2",
|
70 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
71 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
72 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
73 |
+
"down_blocks.2.resnets.0.conv_shortcut",
|
74 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
75 |
+
"up_blocks.3.temp_attentions.1.proj_in",
|
76 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_q",
|
77 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
78 |
+
"transformer_in.proj_out",
|
79 |
+
"up_blocks.3.temp_attentions.2.proj_out",
|
80 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
81 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
82 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
83 |
+
"up_blocks.2.resnets.0.time_emb_proj",
|
84 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
85 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
86 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
87 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
88 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_v",
|
89 |
+
"up_blocks.1.temp_attentions.1.proj_in",
|
90 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
91 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
92 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
93 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
94 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
95 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
96 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.2",
|
97 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
98 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
99 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
100 |
+
"up_blocks.1.resnets.2.conv1",
|
101 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_v",
|
102 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
103 |
+
"up_blocks.0.resnets.2.conv1",
|
104 |
+
"down_blocks.1.resnets.0.conv2",
|
105 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
106 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
107 |
+
"down_blocks.1.resnets.0.time_emb_proj",
|
108 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_q",
|
109 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
110 |
+
"up_blocks.1.resnets.0.time_emb_proj",
|
111 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.2",
|
112 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
113 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
114 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
115 |
+
"transformer_in.transformer_blocks.0.attn1.to_q",
|
116 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
117 |
+
"up_blocks.2.resnets.1.conv2",
|
118 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
119 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_q",
|
120 |
+
"down_blocks.3.resnets.1.conv2",
|
121 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
122 |
+
"up_blocks.2.upsamplers.0.conv",
|
123 |
+
"up_blocks.3.resnets.1.conv2",
|
124 |
+
"mid_block.resnets.1.conv1",
|
125 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
126 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_v",
|
127 |
+
"down_blocks.3.resnets.0.conv1",
|
128 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
129 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
130 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
131 |
+
"up_blocks.3.attentions.1.proj_in",
|
132 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_k",
|
133 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
134 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
135 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
136 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
137 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
138 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
139 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
140 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_v",
|
141 |
+
"down_blocks.2.temp_attentions.1.proj_in",
|
142 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
143 |
+
"up_blocks.0.upsamplers.0.conv",
|
144 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
145 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
146 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
147 |
+
"up_blocks.3.resnets.1.time_emb_proj",
|
148 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
149 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
150 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
151 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_k",
|
152 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
153 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
154 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
155 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
156 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
157 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
158 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_k",
|
159 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
160 |
+
"down_blocks.1.resnets.1.time_emb_proj",
|
161 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
162 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
163 |
+
"transformer_in.transformer_blocks.0.attn2.to_q",
|
164 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
165 |
+
"up_blocks.2.resnets.0.conv_shortcut",
|
166 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_v",
|
167 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
168 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
169 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
170 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
171 |
+
"down_blocks.2.resnets.0.time_emb_proj",
|
172 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
173 |
+
"up_blocks.3.resnets.0.time_emb_proj",
|
174 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_q",
|
175 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_v",
|
176 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_q",
|
177 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
178 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.2",
|
179 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
180 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
181 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
182 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
183 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
184 |
+
"up_blocks.3.resnets.2.conv_shortcut",
|
185 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
186 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
187 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
188 |
+
"up_blocks.3.resnets.2.conv1",
|
189 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
190 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.2",
|
191 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.2",
|
192 |
+
"down_blocks.3.resnets.1.time_emb_proj",
|
193 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_q",
|
194 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
195 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_q",
|
196 |
+
"mid_block.temp_attentions.0.proj_out",
|
197 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
198 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_k",
|
199 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
200 |
+
"down_blocks.0.attentions.0.proj_out",
|
201 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
202 |
+
"down_blocks.0.resnets.1.time_emb_proj",
|
203 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_v",
|
204 |
+
"down_blocks.1.attentions.0.proj_out",
|
205 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
206 |
+
"transformer_in.transformer_blocks.0.attn1.to_k",
|
207 |
+
"up_blocks.3.attentions.1.proj_out",
|
208 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
209 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
210 |
+
"down_blocks.2.temp_attentions.0.proj_in",
|
211 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_v",
|
212 |
+
"down_blocks.0.resnets.1.conv2",
|
213 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
214 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_v",
|
215 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
216 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
217 |
+
"up_blocks.1.temp_attentions.1.proj_out",
|
218 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
219 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
220 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
221 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
222 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_k",
|
223 |
+
"up_blocks.3.attentions.2.proj_out",
|
224 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
225 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
226 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
227 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_v",
|
228 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
229 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
230 |
+
"mid_block.resnets.0.conv2",
|
231 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_k",
|
232 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
233 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
234 |
+
"down_blocks.0.downsamplers.0.conv",
|
235 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
236 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
237 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
238 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
239 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
240 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
241 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
242 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
243 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_v",
|
244 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
245 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
246 |
+
"down_blocks.1.resnets.1.conv1",
|
247 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_k",
|
248 |
+
"down_blocks.0.attentions.1.proj_in",
|
249 |
+
"down_blocks.1.temp_attentions.1.proj_out",
|
250 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
251 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
252 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
253 |
+
"up_blocks.2.temp_attentions.2.proj_in",
|
254 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
255 |
+
"up_blocks.3.resnets.1.conv1",
|
256 |
+
"up_blocks.3.temp_attentions.0.proj_out",
|
257 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
258 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
259 |
+
"up_blocks.1.resnets.2.conv2",
|
260 |
+
"down_blocks.2.attentions.1.proj_in",
|
261 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
262 |
+
"down_blocks.2.attentions.0.proj_out",
|
263 |
+
"up_blocks.1.resnets.1.conv_shortcut",
|
264 |
+
"up_blocks.1.resnets.1.conv1",
|
265 |
+
"up_blocks.2.resnets.2.time_emb_proj",
|
266 |
+
"up_blocks.2.temp_attentions.0.proj_out",
|
267 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
268 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
269 |
+
"up_blocks.2.attentions.0.proj_out",
|
270 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
271 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
272 |
+
"up_blocks.3.attentions.0.proj_in",
|
273 |
+
"transformer_in.transformer_blocks.0.attn1.to_out.0",
|
274 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
275 |
+
"down_blocks.1.resnets.1.conv2",
|
276 |
+
"up_blocks.2.attentions.1.proj_in",
|
277 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
278 |
+
"up_blocks.2.resnets.1.conv_shortcut",
|
279 |
+
"up_blocks.0.resnets.0.time_emb_proj",
|
280 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
281 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_q",
|
282 |
+
"down_blocks.2.downsamplers.0.conv",
|
283 |
+
"up_blocks.2.resnets.0.conv1",
|
284 |
+
"down_blocks.2.temp_attentions.0.proj_out",
|
285 |
+
"mid_block.resnets.0.conv1",
|
286 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
287 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
288 |
+
"up_blocks.3.resnets.0.conv2",
|
289 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.2",
|
290 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
291 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
292 |
+
"up_blocks.1.temp_attentions.0.proj_out",
|
293 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
294 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
295 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
296 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
297 |
+
"transformer_in.proj_in",
|
298 |
+
"up_blocks.3.temp_attentions.0.proj_in",
|
299 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_q",
|
300 |
+
"down_blocks.2.attentions.1.proj_out",
|
301 |
+
"up_blocks.3.resnets.1.conv_shortcut",
|
302 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_q",
|
303 |
+
"up_blocks.0.resnets.1.time_emb_proj",
|
304 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
305 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
306 |
+
"up_blocks.1.resnets.1.time_emb_proj",
|
307 |
+
"up_blocks.3.resnets.2.time_emb_proj",
|
308 |
+
"up_blocks.0.resnets.1.conv_shortcut",
|
309 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
310 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
311 |
+
"up_blocks.2.resnets.2.conv_shortcut",
|
312 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
313 |
+
"down_blocks.0.resnets.0.time_emb_proj",
|
314 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
315 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
316 |
+
"down_blocks.2.resnets.1.conv1",
|
317 |
+
"down_blocks.0.temp_attentions.1.proj_out",
|
318 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
319 |
+
"up_blocks.3.resnets.0.conv1",
|
320 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_k",
|
321 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
322 |
+
"mid_block.resnets.1.conv2",
|
323 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
324 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
325 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_q",
|
326 |
+
"up_blocks.1.attentions.2.proj_in",
|
327 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
328 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
329 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
330 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
331 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
332 |
+
"down_blocks.2.temp_attentions.1.proj_out",
|
333 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_v",
|
334 |
+
"up_blocks.1.temp_attentions.2.proj_in",
|
335 |
+
"up_blocks.2.attentions.0.proj_in",
|
336 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
337 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
338 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
339 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
340 |
+
"down_blocks.2.resnets.0.conv1",
|
341 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
342 |
+
"up_blocks.1.resnets.0.conv_shortcut",
|
343 |
+
"down_blocks.1.temp_attentions.1.proj_in",
|
344 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
345 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
346 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
347 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_q",
|
348 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
349 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
350 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
351 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
352 |
+
"up_blocks.0.resnets.0.conv2",
|
353 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
354 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
355 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.2",
|
356 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
357 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
358 |
+
"up_blocks.2.resnets.2.conv1",
|
359 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_q",
|
360 |
+
"up_blocks.3.temp_attentions.2.proj_in",
|
361 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_k",
|
362 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
363 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
364 |
+
"up_blocks.1.attentions.1.proj_in",
|
365 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
366 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
367 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
368 |
+
"down_blocks.1.temp_attentions.0.proj_in",
|
369 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
370 |
+
"mid_block.resnets.0.time_emb_proj",
|
371 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
372 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
373 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
374 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
375 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
376 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
377 |
+
"up_blocks.2.temp_attentions.1.proj_in",
|
378 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
379 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
380 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
381 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
382 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
383 |
+
"up_blocks.1.resnets.0.conv2",
|
384 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
385 |
+
"down_blocks.2.attentions.0.proj_in",
|
386 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
387 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
388 |
+
"down_blocks.0.attentions.0.proj_in",
|
389 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
390 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
391 |
+
"up_blocks.0.resnets.2.conv2",
|
392 |
+
"up_blocks.2.attentions.2.proj_in",
|
393 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
394 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
395 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
396 |
+
"up_blocks.1.temp_attentions.2.proj_out",
|
397 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
398 |
+
"up_blocks.1.resnets.1.conv2",
|
399 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
400 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_k",
|
401 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
402 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
403 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
404 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
405 |
+
"up_blocks.1.attentions.1.proj_out",
|
406 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
407 |
+
"up_blocks.0.resnets.0.conv_shortcut",
|
408 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_q",
|
409 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_k",
|
410 |
+
"mid_block.resnets.1.time_emb_proj",
|
411 |
+
"down_blocks.3.resnets.1.conv1",
|
412 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
413 |
+
"up_blocks.1.resnets.2.time_emb_proj",
|
414 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
415 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
416 |
+
"up_blocks.2.temp_attentions.1.proj_out",
|
417 |
+
"up_blocks.2.resnets.0.conv2",
|
418 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_v",
|
419 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
420 |
+
"down_blocks.1.attentions.1.proj_in",
|
421 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
422 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
423 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
424 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
425 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
426 |
+
"down_blocks.0.resnets.0.conv2",
|
427 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
428 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
429 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
430 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
431 |
+
"up_blocks.2.resnets.2.conv2",
|
432 |
+
"down_blocks.1.downsamplers.0.conv",
|
433 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
434 |
+
"down_blocks.0.temp_attentions.0.proj_out",
|
435 |
+
"up_blocks.2.resnets.1.time_emb_proj",
|
436 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
437 |
+
"transformer_in.transformer_blocks.0.attn2.to_v",
|
438 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
439 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
440 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
441 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
442 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_k",
|
443 |
+
"up_blocks.0.resnets.1.conv1",
|
444 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
445 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
446 |
+
"up_blocks.1.temp_attentions.0.proj_in",
|
447 |
+
"mid_block.attentions.0.proj_in",
|
448 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
449 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
450 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_k",
|
451 |
+
"up_blocks.3.attentions.2.proj_in",
|
452 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
453 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
454 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_q",
|
455 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
456 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
457 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_q",
|
458 |
+
"up_blocks.3.resnets.0.conv_shortcut",
|
459 |
+
"up_blocks.1.resnets.2.conv_shortcut",
|
460 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_k",
|
461 |
+
"up_blocks.1.upsamplers.0.conv",
|
462 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
463 |
+
"up_blocks.3.attentions.0.proj_out",
|
464 |
+
"transformer_in.transformer_blocks.0.attn2.to_k",
|
465 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
466 |
+
"up_blocks.2.temp_attentions.0.proj_in",
|
467 |
+
"transformer_in.transformer_blocks.0.attn2.to_out.0",
|
468 |
+
"down_blocks.3.resnets.0.time_emb_proj",
|
469 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
470 |
+
"down_blocks.1.temp_attentions.0.proj_out",
|
471 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
472 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
473 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
474 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
475 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_v",
|
476 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
477 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
478 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
479 |
+
"up_blocks.0.resnets.2.time_emb_proj",
|
480 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
481 |
+
"down_blocks.1.resnets.0.conv_shortcut",
|
482 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
483 |
+
"down_blocks.0.attentions.1.proj_out",
|
484 |
+
"down_blocks.3.resnets.0.conv2",
|
485 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
486 |
+
"down_blocks.1.attentions.1.proj_out",
|
487 |
+
"down_blocks.1.resnets.0.conv1",
|
488 |
+
"up_blocks.2.attentions.2.proj_out",
|
489 |
+
"up_blocks.1.resnets.0.conv1",
|
490 |
+
"down_blocks.0.temp_attentions.0.proj_in",
|
491 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
492 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
493 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_k",
|
494 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
495 |
+
"down_blocks.0.resnets.0.conv1",
|
496 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
497 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
498 |
+
"down_blocks.0.resnets.1.conv1",
|
499 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
500 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
501 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
502 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
503 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_v",
|
504 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
505 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
506 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
507 |
+
"down_blocks.2.resnets.0.conv2"
|
508 |
+
],
|
509 |
+
"task_type": null,
|
510 |
+
"use_dora": false,
|
511 |
+
"use_rslora": false
|
512 |
+
}
|
modelscopet2v-3d-cartoon/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa84058d41825fd1060d11d774f6d206590acbd5ae58ebce8ba6b0051b65a1e6
|
3 |
+
size 384239960
|
modelscopet2v-3d-cartoon/unet_lora/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:09e4416a1a238b91a319690208c0163e2a25eac23fade3f8a15a041c7b7b8127
|
3 |
+
size 384244776
|
modelscopet2v-anime/adapter_config.json
ADDED
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": {
|
4 |
+
"base_model_class": "UNet3DConditionModel",
|
5 |
+
"parent_library": "diffusers.models.unets.unet_3d_condition"
|
6 |
+
},
|
7 |
+
"base_model_name_or_path": null,
|
8 |
+
"bias": "none",
|
9 |
+
"fan_in_fan_out": false,
|
10 |
+
"inference_mode": true,
|
11 |
+
"init_lora_weights": true,
|
12 |
+
"layer_replication": null,
|
13 |
+
"layers_pattern": null,
|
14 |
+
"layers_to_transform": null,
|
15 |
+
"loftq_config": {},
|
16 |
+
"lora_alpha": 64,
|
17 |
+
"lora_dropout": 0.0,
|
18 |
+
"megatron_config": null,
|
19 |
+
"megatron_core": "megatron.core",
|
20 |
+
"modules_to_save": null,
|
21 |
+
"peft_type": "LORA",
|
22 |
+
"r": 64,
|
23 |
+
"rank_pattern": {},
|
24 |
+
"revision": null,
|
25 |
+
"target_modules": [
|
26 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
27 |
+
"up_blocks.3.attentions.0.proj_out",
|
28 |
+
"down_blocks.2.resnets.1.conv1",
|
29 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
30 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
31 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
32 |
+
"down_blocks.0.attentions.0.proj_in",
|
33 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
34 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
35 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
36 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.2",
|
37 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
38 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
39 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
40 |
+
"up_blocks.1.attentions.1.proj_out",
|
41 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
42 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
43 |
+
"up_blocks.2.resnets.0.conv2",
|
44 |
+
"down_blocks.1.resnets.1.time_emb_proj",
|
45 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
46 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_v",
|
47 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_q",
|
48 |
+
"down_blocks.3.resnets.1.conv1",
|
49 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
50 |
+
"down_blocks.0.temp_attentions.1.proj_out",
|
51 |
+
"up_blocks.2.resnets.1.conv2",
|
52 |
+
"up_blocks.3.temp_attentions.2.proj_in",
|
53 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
54 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
55 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
56 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_v",
|
57 |
+
"up_blocks.0.resnets.1.conv2",
|
58 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
59 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
60 |
+
"up_blocks.3.attentions.1.proj_out",
|
61 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
62 |
+
"up_blocks.3.temp_attentions.0.proj_in",
|
63 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
64 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_q",
|
65 |
+
"up_blocks.1.resnets.1.conv1",
|
66 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
67 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
68 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
69 |
+
"up_blocks.2.attentions.0.proj_out",
|
70 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_k",
|
71 |
+
"mid_block.resnets.0.conv1",
|
72 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
73 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_v",
|
74 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
75 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
76 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_v",
|
77 |
+
"down_blocks.2.resnets.0.conv1",
|
78 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
79 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
80 |
+
"up_blocks.3.attentions.2.proj_in",
|
81 |
+
"down_blocks.0.attentions.0.proj_out",
|
82 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
83 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
84 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
85 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
86 |
+
"up_blocks.1.resnets.1.time_emb_proj",
|
87 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_v",
|
88 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
89 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
90 |
+
"down_blocks.2.temp_attentions.0.proj_in",
|
91 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
92 |
+
"down_blocks.0.temp_attentions.0.proj_out",
|
93 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
94 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
95 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
96 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
97 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
98 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
99 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
100 |
+
"up_blocks.2.resnets.1.time_emb_proj",
|
101 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
102 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
103 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
104 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_v",
|
105 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
106 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_k",
|
107 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
108 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_q",
|
109 |
+
"down_blocks.0.attentions.1.proj_in",
|
110 |
+
"down_blocks.1.resnets.1.conv2",
|
111 |
+
"down_blocks.1.resnets.0.conv_shortcut",
|
112 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_k",
|
113 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
114 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
115 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
116 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
117 |
+
"up_blocks.1.attentions.1.proj_in",
|
118 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
119 |
+
"up_blocks.2.attentions.1.proj_in",
|
120 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
121 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_q",
|
122 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
123 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
124 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
125 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_q",
|
126 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
127 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
128 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
129 |
+
"mid_block.attentions.0.proj_out",
|
130 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
131 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
132 |
+
"transformer_in.transformer_blocks.0.attn1.to_q",
|
133 |
+
"down_blocks.2.attentions.1.proj_out",
|
134 |
+
"up_blocks.3.resnets.1.time_emb_proj",
|
135 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
136 |
+
"up_blocks.2.temp_attentions.0.proj_out",
|
137 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
138 |
+
"down_blocks.2.resnets.1.conv2",
|
139 |
+
"up_blocks.1.resnets.2.conv1",
|
140 |
+
"transformer_in.transformer_blocks.0.attn2.to_v",
|
141 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_k",
|
142 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
143 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
144 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
145 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
146 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
147 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
148 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
149 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
150 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
151 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
152 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
153 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
154 |
+
"up_blocks.1.temp_attentions.0.proj_in",
|
155 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
156 |
+
"down_blocks.2.temp_attentions.0.proj_out",
|
157 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
158 |
+
"down_blocks.1.attentions.0.proj_in",
|
159 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_k",
|
160 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_v",
|
161 |
+
"up_blocks.2.resnets.0.conv1",
|
162 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_q",
|
163 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
164 |
+
"up_blocks.2.temp_attentions.1.proj_out",
|
165 |
+
"up_blocks.3.temp_attentions.1.proj_out",
|
166 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
167 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
168 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
169 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
170 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
171 |
+
"down_blocks.2.downsamplers.0.conv",
|
172 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
173 |
+
"up_blocks.3.temp_attentions.0.proj_out",
|
174 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
175 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_k",
|
176 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
177 |
+
"up_blocks.1.temp_attentions.2.proj_out",
|
178 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_v",
|
179 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
180 |
+
"up_blocks.0.resnets.2.conv1",
|
181 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_k",
|
182 |
+
"down_blocks.2.resnets.1.time_emb_proj",
|
183 |
+
"up_blocks.1.upsamplers.0.conv",
|
184 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
185 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
186 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
187 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
188 |
+
"down_blocks.0.resnets.0.conv1",
|
189 |
+
"down_blocks.0.temp_attentions.0.proj_in",
|
190 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
191 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
192 |
+
"up_blocks.2.temp_attentions.1.proj_in",
|
193 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
194 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
195 |
+
"up_blocks.2.attentions.0.proj_in",
|
196 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
197 |
+
"up_blocks.1.attentions.2.proj_out",
|
198 |
+
"down_blocks.1.attentions.1.proj_in",
|
199 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
200 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
201 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.2",
|
202 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
203 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_k",
|
204 |
+
"transformer_in.transformer_blocks.0.attn2.to_out.0",
|
205 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
206 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_v",
|
207 |
+
"down_blocks.0.resnets.0.conv2",
|
208 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
209 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
210 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
211 |
+
"transformer_in.transformer_blocks.0.attn2.to_q",
|
212 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
213 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
214 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
215 |
+
"down_blocks.2.attentions.1.proj_in",
|
216 |
+
"down_blocks.0.resnets.1.conv1",
|
217 |
+
"transformer_in.proj_out",
|
218 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_q",
|
219 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
220 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
221 |
+
"up_blocks.3.resnets.2.conv1",
|
222 |
+
"transformer_in.transformer_blocks.0.attn1.to_out.0",
|
223 |
+
"down_blocks.0.resnets.0.time_emb_proj",
|
224 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
225 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
226 |
+
"up_blocks.3.temp_attentions.1.proj_in",
|
227 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
228 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
229 |
+
"up_blocks.1.temp_attentions.1.proj_in",
|
230 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
231 |
+
"up_blocks.3.resnets.0.conv2",
|
232 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
233 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
234 |
+
"up_blocks.3.resnets.1.conv_shortcut",
|
235 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
236 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
237 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
238 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_v",
|
239 |
+
"up_blocks.1.resnets.0.conv1",
|
240 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
241 |
+
"up_blocks.1.resnets.1.conv2",
|
242 |
+
"up_blocks.2.resnets.1.conv1",
|
243 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.2",
|
244 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
245 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
246 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
247 |
+
"down_blocks.1.temp_attentions.1.proj_out",
|
248 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_v",
|
249 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
250 |
+
"transformer_in.transformer_blocks.0.ff.net.2",
|
251 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
252 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
253 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
254 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
255 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
256 |
+
"up_blocks.3.resnets.0.conv_shortcut",
|
257 |
+
"down_blocks.0.attentions.1.proj_out",
|
258 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
259 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
260 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
261 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
262 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
263 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
264 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
265 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
266 |
+
"up_blocks.2.resnets.1.conv_shortcut",
|
267 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
268 |
+
"mid_block.resnets.1.time_emb_proj",
|
269 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_q",
|
270 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
271 |
+
"up_blocks.1.attentions.0.proj_in",
|
272 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
273 |
+
"down_blocks.3.resnets.0.time_emb_proj",
|
274 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
275 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_k",
|
276 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
277 |
+
"transformer_in.transformer_blocks.0.attn1.to_k",
|
278 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
279 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
280 |
+
"up_blocks.2.attentions.2.proj_out",
|
281 |
+
"up_blocks.3.resnets.0.time_emb_proj",
|
282 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
283 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.2",
|
284 |
+
"down_blocks.0.temp_attentions.1.proj_in",
|
285 |
+
"up_blocks.2.resnets.2.conv2",
|
286 |
+
"up_blocks.1.resnets.2.conv2",
|
287 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
288 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
289 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
290 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
291 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
292 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
293 |
+
"up_blocks.3.resnets.2.time_emb_proj",
|
294 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
295 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_k",
|
296 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_k",
|
297 |
+
"transformer_in.transformer_blocks.0.ff.net.0.proj",
|
298 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
299 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
300 |
+
"up_blocks.1.temp_attentions.2.proj_in",
|
301 |
+
"up_blocks.0.resnets.1.time_emb_proj",
|
302 |
+
"up_blocks.0.upsamplers.0.conv",
|
303 |
+
"mid_block.attentions.0.proj_in",
|
304 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
305 |
+
"up_blocks.3.resnets.2.conv_shortcut",
|
306 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_k",
|
307 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
308 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_q",
|
309 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
310 |
+
"down_blocks.1.attentions.0.proj_out",
|
311 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
312 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
313 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
314 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
315 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
316 |
+
"up_blocks.2.temp_attentions.2.proj_out",
|
317 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
318 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
319 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_v",
|
320 |
+
"down_blocks.1.resnets.0.conv2",
|
321 |
+
"up_blocks.0.resnets.1.conv1",
|
322 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
323 |
+
"up_blocks.1.attentions.2.proj_in",
|
324 |
+
"up_blocks.2.attentions.2.proj_in",
|
325 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_v",
|
326 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_k",
|
327 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
328 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
329 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
330 |
+
"up_blocks.3.attentions.2.proj_out",
|
331 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
332 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
333 |
+
"mid_block.resnets.1.conv1",
|
334 |
+
"up_blocks.1.temp_attentions.0.proj_out",
|
335 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
336 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
337 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
338 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
339 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
340 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
341 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
342 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
343 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
344 |
+
"up_blocks.1.resnets.0.time_emb_proj",
|
345 |
+
"down_blocks.1.temp_attentions.0.proj_in",
|
346 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
347 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
348 |
+
"down_blocks.2.temp_attentions.1.proj_out",
|
349 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
350 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
351 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
352 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
353 |
+
"down_blocks.1.downsamplers.0.conv",
|
354 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
355 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
356 |
+
"down_blocks.0.resnets.1.conv2",
|
357 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
358 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
359 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_q",
|
360 |
+
"mid_block.temp_attentions.0.proj_out",
|
361 |
+
"up_blocks.1.resnets.0.conv_shortcut",
|
362 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
363 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
364 |
+
"mid_block.resnets.0.time_emb_proj",
|
365 |
+
"mid_block.temp_attentions.0.proj_in",
|
366 |
+
"up_blocks.0.resnets.0.conv2",
|
367 |
+
"down_blocks.1.resnets.1.conv1",
|
368 |
+
"down_blocks.1.temp_attentions.0.proj_out",
|
369 |
+
"down_blocks.0.downsamplers.0.conv",
|
370 |
+
"down_blocks.1.attentions.1.proj_out",
|
371 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
372 |
+
"up_blocks.3.resnets.1.conv2",
|
373 |
+
"down_blocks.0.resnets.1.time_emb_proj",
|
374 |
+
"up_blocks.1.resnets.2.conv_shortcut",
|
375 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
376 |
+
"up_blocks.2.resnets.2.time_emb_proj",
|
377 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
378 |
+
"up_blocks.3.attentions.1.proj_in",
|
379 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
380 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
381 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
382 |
+
"up_blocks.0.resnets.2.conv2",
|
383 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
384 |
+
"transformer_in.proj_in",
|
385 |
+
"up_blocks.1.temp_attentions.1.proj_out",
|
386 |
+
"up_blocks.3.resnets.0.conv1",
|
387 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
388 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
389 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.2",
|
390 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
391 |
+
"up_blocks.2.temp_attentions.0.proj_in",
|
392 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
393 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_v",
|
394 |
+
"mid_block.resnets.1.conv2",
|
395 |
+
"up_blocks.1.resnets.2.time_emb_proj",
|
396 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
397 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
398 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
399 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
400 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
401 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
402 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
403 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.2",
|
404 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
405 |
+
"down_blocks.1.resnets.0.conv1",
|
406 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.2",
|
407 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
408 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
409 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
410 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
411 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.2",
|
412 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
413 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
414 |
+
"up_blocks.1.resnets.1.conv_shortcut",
|
415 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
416 |
+
"up_blocks.3.temp_attentions.2.proj_out",
|
417 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
418 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
419 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
420 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_k",
|
421 |
+
"up_blocks.0.resnets.0.conv1",
|
422 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
423 |
+
"down_blocks.2.attentions.0.proj_out",
|
424 |
+
"down_blocks.2.resnets.0.conv_shortcut",
|
425 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
426 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
427 |
+
"up_blocks.2.resnets.2.conv_shortcut",
|
428 |
+
"down_blocks.2.temp_attentions.1.proj_in",
|
429 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
430 |
+
"down_blocks.2.resnets.0.time_emb_proj",
|
431 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
432 |
+
"up_blocks.0.resnets.0.conv_shortcut",
|
433 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
434 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_q",
|
435 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
436 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
437 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
438 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_q",
|
439 |
+
"up_blocks.2.resnets.0.conv_shortcut",
|
440 |
+
"up_blocks.1.attentions.0.proj_out",
|
441 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
442 |
+
"up_blocks.2.resnets.0.time_emb_proj",
|
443 |
+
"down_blocks.3.resnets.1.time_emb_proj",
|
444 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
445 |
+
"up_blocks.0.resnets.0.time_emb_proj",
|
446 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
447 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
448 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
449 |
+
"down_blocks.1.resnets.0.time_emb_proj",
|
450 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
451 |
+
"up_blocks.0.resnets.2.time_emb_proj",
|
452 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
453 |
+
"down_blocks.2.resnets.0.conv2",
|
454 |
+
"down_blocks.3.resnets.1.conv2",
|
455 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
456 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
457 |
+
"up_blocks.3.resnets.1.conv1",
|
458 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
459 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
460 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_v",
|
461 |
+
"up_blocks.2.upsamplers.0.conv",
|
462 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
463 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_q",
|
464 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
465 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
466 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
467 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
468 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_k",
|
469 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
470 |
+
"transformer_in.transformer_blocks.0.attn2.to_k",
|
471 |
+
"mid_block.resnets.0.conv2",
|
472 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_q",
|
473 |
+
"down_blocks.1.temp_attentions.1.proj_in",
|
474 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
475 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
476 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
477 |
+
"down_blocks.3.resnets.0.conv1",
|
478 |
+
"up_blocks.2.temp_attentions.2.proj_in",
|
479 |
+
"transformer_in.transformer_blocks.0.attn1.to_v",
|
480 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
481 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
482 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_k",
|
483 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_q",
|
484 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
485 |
+
"down_blocks.3.resnets.0.conv2",
|
486 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_q",
|
487 |
+
"up_blocks.2.attentions.1.proj_out",
|
488 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
489 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
490 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
491 |
+
"up_blocks.2.resnets.2.conv1",
|
492 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
493 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
494 |
+
"up_blocks.3.resnets.2.conv2",
|
495 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
496 |
+
"up_blocks.1.resnets.0.conv2",
|
497 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
498 |
+
"up_blocks.3.attentions.0.proj_in",
|
499 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
500 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
501 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
502 |
+
"up_blocks.0.resnets.2.conv_shortcut",
|
503 |
+
"up_blocks.0.resnets.1.conv_shortcut",
|
504 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_v",
|
505 |
+
"down_blocks.2.attentions.0.proj_in",
|
506 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
507 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v"
|
508 |
+
],
|
509 |
+
"task_type": null,
|
510 |
+
"use_dora": false,
|
511 |
+
"use_rslora": false
|
512 |
+
}
|
modelscopet2v-anime/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:89a248488d085aaa22e7fdc5904897f392991089514c341b03fb7e5b14f52485
|
3 |
+
size 384239960
|
modelscopet2v-anime/unet_lora/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a2cc75e1b2c54f31f2eb19dd4bda198ee5e7750a0e89234cff5cd290848971e9
|
3 |
+
size 384244776
|
modelscopet2v-laion/adapter_config.json
ADDED
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": {
|
4 |
+
"base_model_class": "UNet3DConditionModel",
|
5 |
+
"parent_library": "diffusers.models.unets.unet_3d_condition"
|
6 |
+
},
|
7 |
+
"base_model_name_or_path": null,
|
8 |
+
"bias": "none",
|
9 |
+
"fan_in_fan_out": false,
|
10 |
+
"inference_mode": true,
|
11 |
+
"init_lora_weights": true,
|
12 |
+
"layer_replication": null,
|
13 |
+
"layers_pattern": null,
|
14 |
+
"layers_to_transform": null,
|
15 |
+
"loftq_config": {},
|
16 |
+
"lora_alpha": 64,
|
17 |
+
"lora_dropout": 0.0,
|
18 |
+
"megatron_config": null,
|
19 |
+
"megatron_core": "megatron.core",
|
20 |
+
"modules_to_save": null,
|
21 |
+
"peft_type": "LORA",
|
22 |
+
"r": 64,
|
23 |
+
"rank_pattern": {},
|
24 |
+
"revision": null,
|
25 |
+
"target_modules": [
|
26 |
+
"up_blocks.2.attentions.1.proj_out",
|
27 |
+
"transformer_in.proj_in",
|
28 |
+
"transformer_in.transformer_blocks.0.ff.net.0.proj",
|
29 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
30 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
31 |
+
"up_blocks.3.attentions.1.proj_in",
|
32 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
33 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
34 |
+
"down_blocks.1.attentions.1.proj_in",
|
35 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
36 |
+
"transformer_in.transformer_blocks.0.attn1.to_k",
|
37 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
38 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
39 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_q",
|
40 |
+
"up_blocks.1.resnets.0.time_emb_proj",
|
41 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
42 |
+
"up_blocks.0.resnets.1.conv2",
|
43 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
44 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
45 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
46 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
47 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
48 |
+
"up_blocks.3.resnets.1.time_emb_proj",
|
49 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
50 |
+
"mid_block.attentions.0.proj_in",
|
51 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
52 |
+
"transformer_in.transformer_blocks.0.attn2.to_v",
|
53 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
54 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
55 |
+
"down_blocks.2.attentions.0.proj_out",
|
56 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
57 |
+
"up_blocks.3.temp_attentions.0.proj_out",
|
58 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
59 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
60 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
61 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
62 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
63 |
+
"down_blocks.0.resnets.1.conv2",
|
64 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
65 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_v",
|
66 |
+
"up_blocks.0.resnets.0.conv1",
|
67 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
68 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
69 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
70 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_k",
|
71 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
72 |
+
"up_blocks.0.resnets.1.time_emb_proj",
|
73 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
74 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
75 |
+
"down_blocks.2.resnets.0.conv_shortcut",
|
76 |
+
"down_blocks.0.temp_attentions.1.proj_in",
|
77 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
78 |
+
"down_blocks.1.resnets.0.time_emb_proj",
|
79 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
80 |
+
"down_blocks.1.downsamplers.0.conv",
|
81 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
82 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_q",
|
83 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
84 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
85 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
86 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
87 |
+
"down_blocks.1.attentions.0.proj_out",
|
88 |
+
"up_blocks.3.temp_attentions.2.proj_in",
|
89 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_q",
|
90 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
91 |
+
"down_blocks.1.resnets.1.conv2",
|
92 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.2",
|
93 |
+
"up_blocks.1.resnets.1.time_emb_proj",
|
94 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
95 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
96 |
+
"up_blocks.2.temp_attentions.1.proj_out",
|
97 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_v",
|
98 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
99 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
100 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
101 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
102 |
+
"down_blocks.0.resnets.1.conv1",
|
103 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
104 |
+
"up_blocks.1.attentions.2.proj_in",
|
105 |
+
"down_blocks.2.resnets.1.conv1",
|
106 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
107 |
+
"up_blocks.2.temp_attentions.1.proj_in",
|
108 |
+
"up_blocks.1.attentions.1.proj_out",
|
109 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
110 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
111 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
112 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
113 |
+
"up_blocks.0.resnets.2.time_emb_proj",
|
114 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
115 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_q",
|
116 |
+
"up_blocks.3.resnets.0.time_emb_proj",
|
117 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
118 |
+
"up_blocks.1.resnets.0.conv1",
|
119 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
120 |
+
"up_blocks.0.upsamplers.0.conv",
|
121 |
+
"down_blocks.1.temp_attentions.1.proj_in",
|
122 |
+
"mid_block.temp_attentions.0.proj_out",
|
123 |
+
"up_blocks.3.attentions.0.proj_out",
|
124 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
125 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_k",
|
126 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
127 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
128 |
+
"transformer_in.proj_out",
|
129 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
130 |
+
"up_blocks.1.attentions.0.proj_in",
|
131 |
+
"up_blocks.3.resnets.2.conv2",
|
132 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
133 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
134 |
+
"down_blocks.1.resnets.1.conv1",
|
135 |
+
"up_blocks.0.resnets.0.conv2",
|
136 |
+
"down_blocks.2.temp_attentions.1.proj_in",
|
137 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
138 |
+
"up_blocks.1.resnets.2.conv1",
|
139 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
140 |
+
"up_blocks.2.resnets.1.conv1",
|
141 |
+
"down_blocks.2.temp_attentions.1.proj_out",
|
142 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
143 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
144 |
+
"up_blocks.3.resnets.0.conv2",
|
145 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
146 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
147 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
148 |
+
"down_blocks.2.temp_attentions.0.proj_in",
|
149 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
150 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
151 |
+
"transformer_in.transformer_blocks.0.attn1.to_v",
|
152 |
+
"down_blocks.1.resnets.1.time_emb_proj",
|
153 |
+
"down_blocks.2.resnets.0.time_emb_proj",
|
154 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.2",
|
155 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
156 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
157 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
158 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
159 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
160 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
161 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
162 |
+
"up_blocks.2.temp_attentions.2.proj_in",
|
163 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
164 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
165 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
166 |
+
"up_blocks.1.temp_attentions.1.proj_out",
|
167 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
168 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
169 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
170 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
171 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_v",
|
172 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
173 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
174 |
+
"up_blocks.0.resnets.0.time_emb_proj",
|
175 |
+
"up_blocks.3.attentions.2.proj_out",
|
176 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_v",
|
177 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
178 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
179 |
+
"up_blocks.3.resnets.2.conv_shortcut",
|
180 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_k",
|
181 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.2",
|
182 |
+
"down_blocks.0.attentions.1.proj_in",
|
183 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
184 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
185 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
186 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
187 |
+
"up_blocks.2.upsamplers.0.conv",
|
188 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_k",
|
189 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
190 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_q",
|
191 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
192 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
193 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
194 |
+
"up_blocks.1.temp_attentions.0.proj_in",
|
195 |
+
"down_blocks.1.resnets.0.conv_shortcut",
|
196 |
+
"down_blocks.0.attentions.0.proj_in",
|
197 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_v",
|
198 |
+
"up_blocks.1.temp_attentions.0.proj_out",
|
199 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
200 |
+
"transformer_in.transformer_blocks.0.attn2.to_k",
|
201 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_v",
|
202 |
+
"up_blocks.2.resnets.2.conv2",
|
203 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
204 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
205 |
+
"transformer_in.transformer_blocks.0.ff.net.2",
|
206 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
207 |
+
"down_blocks.2.attentions.1.proj_out",
|
208 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
209 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
210 |
+
"down_blocks.2.resnets.0.conv1",
|
211 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_k",
|
212 |
+
"down_blocks.0.temp_attentions.0.proj_in",
|
213 |
+
"up_blocks.1.resnets.2.conv_shortcut",
|
214 |
+
"mid_block.resnets.1.conv2",
|
215 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.2",
|
216 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
217 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
218 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
219 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
220 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
221 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
222 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
223 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
224 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_v",
|
225 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
226 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
227 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
228 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
229 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.2",
|
230 |
+
"up_blocks.2.temp_attentions.0.proj_out",
|
231 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
232 |
+
"up_blocks.1.resnets.1.conv_shortcut",
|
233 |
+
"down_blocks.1.attentions.0.proj_in",
|
234 |
+
"mid_block.temp_attentions.0.proj_in",
|
235 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
236 |
+
"up_blocks.3.attentions.1.proj_out",
|
237 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_k",
|
238 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
239 |
+
"down_blocks.0.temp_attentions.1.proj_out",
|
240 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
241 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.2",
|
242 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
243 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_k",
|
244 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
245 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
246 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
247 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
248 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
249 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
250 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
251 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
252 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
253 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
254 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_k",
|
255 |
+
"up_blocks.1.resnets.1.conv1",
|
256 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
257 |
+
"up_blocks.2.resnets.2.conv_shortcut",
|
258 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
259 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
260 |
+
"down_blocks.2.resnets.0.conv2",
|
261 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
262 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
263 |
+
"up_blocks.2.resnets.2.time_emb_proj",
|
264 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
265 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_v",
|
266 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
267 |
+
"up_blocks.3.resnets.2.conv1",
|
268 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
269 |
+
"mid_block.attentions.0.proj_out",
|
270 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
271 |
+
"down_blocks.1.temp_attentions.0.proj_in",
|
272 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
273 |
+
"down_blocks.1.temp_attentions.1.proj_out",
|
274 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
275 |
+
"up_blocks.1.attentions.0.proj_out",
|
276 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
277 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
278 |
+
"up_blocks.0.resnets.2.conv2",
|
279 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_k",
|
280 |
+
"up_blocks.1.upsamplers.0.conv",
|
281 |
+
"up_blocks.0.resnets.2.conv1",
|
282 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.2",
|
283 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
284 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
285 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
286 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
287 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
288 |
+
"up_blocks.0.resnets.1.conv_shortcut",
|
289 |
+
"down_blocks.0.resnets.0.time_emb_proj",
|
290 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
291 |
+
"down_blocks.3.resnets.0.conv1",
|
292 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
293 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
294 |
+
"up_blocks.2.resnets.1.conv_shortcut",
|
295 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
296 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
297 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
298 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_v",
|
299 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
300 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
301 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
302 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
303 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
304 |
+
"up_blocks.1.attentions.1.proj_in",
|
305 |
+
"down_blocks.1.resnets.0.conv2",
|
306 |
+
"up_blocks.3.resnets.0.conv1",
|
307 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
308 |
+
"up_blocks.2.resnets.0.time_emb_proj",
|
309 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_k",
|
310 |
+
"up_blocks.2.resnets.0.conv1",
|
311 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
312 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
313 |
+
"transformer_in.transformer_blocks.0.attn1.to_q",
|
314 |
+
"up_blocks.2.attentions.0.proj_in",
|
315 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
316 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_k",
|
317 |
+
"mid_block.resnets.0.conv1",
|
318 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
319 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
320 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
321 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
322 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
323 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
324 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
325 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
326 |
+
"down_blocks.3.resnets.1.conv2",
|
327 |
+
"transformer_in.transformer_blocks.0.attn2.to_q",
|
328 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
329 |
+
"up_blocks.1.resnets.2.conv2",
|
330 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_q",
|
331 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
332 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
333 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
334 |
+
"down_blocks.2.resnets.1.time_emb_proj",
|
335 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
336 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
337 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
338 |
+
"up_blocks.2.attentions.2.proj_out",
|
339 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
340 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
341 |
+
"transformer_in.transformer_blocks.0.attn1.to_out.0",
|
342 |
+
"up_blocks.2.attentions.1.proj_in",
|
343 |
+
"down_blocks.0.resnets.0.conv1",
|
344 |
+
"down_blocks.2.downsamplers.0.conv",
|
345 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
346 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
347 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_q",
|
348 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
349 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
350 |
+
"up_blocks.1.temp_attentions.2.proj_in",
|
351 |
+
"up_blocks.2.temp_attentions.0.proj_in",
|
352 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
353 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
354 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_v",
|
355 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
356 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_q",
|
357 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
358 |
+
"up_blocks.1.resnets.1.conv2",
|
359 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
360 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_v",
|
361 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
362 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
363 |
+
"up_blocks.3.temp_attentions.0.proj_in",
|
364 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
365 |
+
"up_blocks.0.resnets.2.conv_shortcut",
|
366 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
367 |
+
"up_blocks.0.resnets.0.conv_shortcut",
|
368 |
+
"up_blocks.2.resnets.2.conv1",
|
369 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
370 |
+
"down_blocks.0.temp_attentions.0.proj_out",
|
371 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_q",
|
372 |
+
"down_blocks.0.attentions.1.proj_out",
|
373 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
374 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
375 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
376 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
377 |
+
"up_blocks.1.temp_attentions.2.proj_out",
|
378 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
379 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
380 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
381 |
+
"mid_block.resnets.0.time_emb_proj",
|
382 |
+
"down_blocks.2.attentions.0.proj_in",
|
383 |
+
"up_blocks.3.resnets.0.conv_shortcut",
|
384 |
+
"up_blocks.1.resnets.0.conv_shortcut",
|
385 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
386 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
387 |
+
"up_blocks.3.resnets.2.time_emb_proj",
|
388 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
389 |
+
"up_blocks.3.attentions.2.proj_in",
|
390 |
+
"up_blocks.1.resnets.2.time_emb_proj",
|
391 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_v",
|
392 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_v",
|
393 |
+
"mid_block.resnets.1.time_emb_proj",
|
394 |
+
"up_blocks.3.temp_attentions.1.proj_in",
|
395 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
396 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
397 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_q",
|
398 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
399 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
400 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
401 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
402 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
403 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_q",
|
404 |
+
"up_blocks.3.resnets.1.conv1",
|
405 |
+
"down_blocks.1.resnets.0.conv1",
|
406 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
407 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
408 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
409 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
410 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
411 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_v",
|
412 |
+
"down_blocks.1.temp_attentions.0.proj_out",
|
413 |
+
"up_blocks.2.resnets.0.conv_shortcut",
|
414 |
+
"up_blocks.0.resnets.1.conv1",
|
415 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
416 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
417 |
+
"down_blocks.3.resnets.1.time_emb_proj",
|
418 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
419 |
+
"down_blocks.1.attentions.1.proj_out",
|
420 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
421 |
+
"up_blocks.1.attentions.2.proj_out",
|
422 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
423 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
424 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
425 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_q",
|
426 |
+
"down_blocks.0.attentions.0.proj_out",
|
427 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
428 |
+
"up_blocks.3.attentions.0.proj_in",
|
429 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
430 |
+
"up_blocks.3.temp_attentions.1.proj_out",
|
431 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_k",
|
432 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
433 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
434 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
435 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
436 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_v",
|
437 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
438 |
+
"down_blocks.3.resnets.0.conv2",
|
439 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
440 |
+
"down_blocks.2.resnets.1.conv2",
|
441 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
442 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
443 |
+
"down_blocks.2.attentions.1.proj_in",
|
444 |
+
"up_blocks.1.resnets.0.conv2",
|
445 |
+
"up_blocks.3.temp_attentions.2.proj_out",
|
446 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
447 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
448 |
+
"up_blocks.2.temp_attentions.2.proj_out",
|
449 |
+
"mid_block.resnets.1.conv1",
|
450 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
451 |
+
"transformer_in.transformer_blocks.0.attn2.to_out.0",
|
452 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
453 |
+
"up_blocks.1.temp_attentions.1.proj_in",
|
454 |
+
"down_blocks.0.downsamplers.0.conv",
|
455 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
456 |
+
"up_blocks.2.resnets.1.conv2",
|
457 |
+
"down_blocks.3.resnets.0.time_emb_proj",
|
458 |
+
"mid_block.resnets.0.conv2",
|
459 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
460 |
+
"up_blocks.2.attentions.2.proj_in",
|
461 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
462 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
463 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
464 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
465 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
466 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
467 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
468 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
469 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
470 |
+
"up_blocks.2.resnets.0.conv2",
|
471 |
+
"up_blocks.3.resnets.1.conv2",
|
472 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
473 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
474 |
+
"up_blocks.3.resnets.1.conv_shortcut",
|
475 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_q",
|
476 |
+
"down_blocks.0.resnets.1.time_emb_proj",
|
477 |
+
"up_blocks.2.attentions.0.proj_out",
|
478 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_q",
|
479 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
480 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
481 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
482 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
483 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_k",
|
484 |
+
"up_blocks.2.resnets.1.time_emb_proj",
|
485 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
486 |
+
"down_blocks.0.resnets.0.conv2",
|
487 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_q",
|
488 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
489 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
490 |
+
"down_blocks.2.temp_attentions.0.proj_out",
|
491 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
492 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
493 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
494 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
495 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
496 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_v",
|
497 |
+
"down_blocks.3.resnets.1.conv1",
|
498 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_k",
|
499 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
500 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_q",
|
501 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
502 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
503 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
504 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_k",
|
505 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
506 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.2",
|
507 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_k"
|
508 |
+
],
|
509 |
+
"task_type": null,
|
510 |
+
"use_dora": false,
|
511 |
+
"use_rslora": false
|
512 |
+
}
|
modelscopet2v-laion/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c607b07b5c7287c692e6145acce36fff8effe449a0a4b845bca835d3676155d9
|
3 |
+
size 384239960
|
modelscopet2v-laion/unet_lora/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:82e4ceeb199bfb14ab72c5f41663abe485b31f9bb7c856ee261dd0a9eddbd91f
|
3 |
+
size 384244776
|
modelscopet2v-real/adapter_config.json
ADDED
@@ -0,0 +1,504 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": {
|
4 |
+
"base_model_class": "UNet3DConditionModel",
|
5 |
+
"parent_library": "diffusers.models.unets.unet_3d_condition"
|
6 |
+
},
|
7 |
+
"bias": "none",
|
8 |
+
"fan_in_fan_out": false,
|
9 |
+
"inference_mode": true,
|
10 |
+
"init_lora_weights": true,
|
11 |
+
"loftq_config": {},
|
12 |
+
"lora_alpha": 64,
|
13 |
+
"lora_dropout": 0.0,
|
14 |
+
"megatron_core": "megatron.core",
|
15 |
+
"peft_type": "LORA",
|
16 |
+
"r": 64,
|
17 |
+
"rank_pattern": {},
|
18 |
+
"target_modules": [
|
19 |
+
"down_blocks.1.attentions.1.proj_in",
|
20 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
21 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
22 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
23 |
+
"down_blocks.3.resnets.0.conv1",
|
24 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_v",
|
25 |
+
"up_blocks.1.temp_attentions.2.proj_out",
|
26 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
27 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
28 |
+
"up_blocks.3.resnets.1.time_emb_proj",
|
29 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
30 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
31 |
+
"up_blocks.3.temp_attentions.1.proj_in",
|
32 |
+
"down_blocks.0.attentions.0.proj_in",
|
33 |
+
"up_blocks.0.resnets.2.conv_shortcut",
|
34 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
35 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_k",
|
36 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
37 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
38 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_v",
|
39 |
+
"transformer_in.transformer_blocks.0.ff.net.0.proj",
|
40 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.2",
|
41 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
42 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
43 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
44 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
45 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
46 |
+
"up_blocks.1.temp_attentions.0.proj_in",
|
47 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
48 |
+
"transformer_in.transformer_blocks.0.attn1.to_q",
|
49 |
+
"down_blocks.1.resnets.0.conv_shortcut",
|
50 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
51 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
52 |
+
"down_blocks.0.resnets.1.time_emb_proj",
|
53 |
+
"up_blocks.2.resnets.0.conv_shortcut",
|
54 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
55 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
56 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_k",
|
57 |
+
"up_blocks.2.temp_attentions.1.proj_in",
|
58 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
59 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
60 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_v",
|
61 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
62 |
+
"up_blocks.2.resnets.0.conv1",
|
63 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
64 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
65 |
+
"up_blocks.1.attentions.2.proj_out",
|
66 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
67 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
68 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_q",
|
69 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
70 |
+
"up_blocks.2.resnets.1.conv2",
|
71 |
+
"down_blocks.1.temp_attentions.1.proj_out",
|
72 |
+
"mid_block.resnets.0.conv2",
|
73 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_k",
|
74 |
+
"up_blocks.3.temp_attentions.2.proj_out",
|
75 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
76 |
+
"mid_block.resnets.1.conv2",
|
77 |
+
"up_blocks.3.attentions.2.proj_in",
|
78 |
+
"down_blocks.0.attentions.0.proj_out",
|
79 |
+
"down_blocks.1.resnets.1.conv1",
|
80 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
81 |
+
"up_blocks.1.temp_attentions.0.proj_out",
|
82 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
83 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
84 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
85 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
86 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
87 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
88 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
89 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
90 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
91 |
+
"mid_block.temp_attentions.0.proj_in",
|
92 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
93 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
94 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
95 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
96 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
97 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
98 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
99 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
100 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
101 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
102 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
103 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
104 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
105 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
106 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
107 |
+
"up_blocks.2.resnets.1.conv1",
|
108 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_q",
|
109 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
110 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
111 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
112 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
113 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
114 |
+
"transformer_in.transformer_blocks.0.attn2.to_v",
|
115 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
116 |
+
"up_blocks.3.resnets.1.conv2",
|
117 |
+
"up_blocks.1.attentions.0.proj_in",
|
118 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_v",
|
119 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_q",
|
120 |
+
"up_blocks.1.attentions.2.proj_in",
|
121 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
122 |
+
"mid_block.resnets.1.time_emb_proj",
|
123 |
+
"up_blocks.1.resnets.1.conv2",
|
124 |
+
"down_blocks.3.resnets.0.time_emb_proj",
|
125 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
126 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
127 |
+
"up_blocks.3.resnets.1.conv1",
|
128 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
129 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
130 |
+
"down_blocks.1.attentions.1.proj_out",
|
131 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
132 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_q",
|
133 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
134 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
135 |
+
"down_blocks.1.attentions.0.proj_in",
|
136 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
137 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
138 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
139 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
140 |
+
"up_blocks.3.attentions.1.proj_in",
|
141 |
+
"up_blocks.3.temp_attentions.0.proj_in",
|
142 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
143 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_k",
|
144 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_v",
|
145 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
146 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
147 |
+
"up_blocks.0.upsamplers.0.conv",
|
148 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
149 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
150 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
151 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
152 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.2",
|
153 |
+
"down_blocks.2.attentions.0.proj_out",
|
154 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
155 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
156 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_q",
|
157 |
+
"down_blocks.2.downsamplers.0.conv",
|
158 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
159 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_v",
|
160 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_k",
|
161 |
+
"up_blocks.1.resnets.2.conv1",
|
162 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
163 |
+
"down_blocks.1.resnets.1.time_emb_proj",
|
164 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
165 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
166 |
+
"down_blocks.1.resnets.0.conv1",
|
167 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
168 |
+
"up_blocks.2.resnets.2.conv2",
|
169 |
+
"up_blocks.2.attentions.0.proj_out",
|
170 |
+
"down_blocks.2.resnets.1.time_emb_proj",
|
171 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
172 |
+
"up_blocks.0.resnets.2.time_emb_proj",
|
173 |
+
"transformer_in.transformer_blocks.0.attn2.to_out.0",
|
174 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
175 |
+
"down_blocks.2.attentions.0.proj_in",
|
176 |
+
"up_blocks.0.resnets.1.conv2",
|
177 |
+
"mid_block.resnets.0.conv1",
|
178 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
179 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.2",
|
180 |
+
"down_blocks.2.resnets.0.conv1",
|
181 |
+
"down_blocks.0.resnets.1.conv1",
|
182 |
+
"down_blocks.2.resnets.0.conv2",
|
183 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
184 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
185 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
186 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
187 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
188 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
189 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
190 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
191 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
192 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
193 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
194 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_k",
|
195 |
+
"down_blocks.3.resnets.1.time_emb_proj",
|
196 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
197 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
198 |
+
"up_blocks.2.upsamplers.0.conv",
|
199 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
200 |
+
"up_blocks.3.resnets.2.time_emb_proj",
|
201 |
+
"up_blocks.3.attentions.1.proj_out",
|
202 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_q",
|
203 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
204 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
205 |
+
"up_blocks.2.temp_attentions.1.proj_out",
|
206 |
+
"down_blocks.2.temp_attentions.1.proj_in",
|
207 |
+
"down_blocks.1.temp_attentions.1.proj_in",
|
208 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
209 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
210 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
211 |
+
"down_blocks.1.temp_attentions.0.proj_in",
|
212 |
+
"mid_block.attentions.0.proj_in",
|
213 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
214 |
+
"down_blocks.3.resnets.1.conv1",
|
215 |
+
"up_blocks.1.resnets.0.conv2",
|
216 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
217 |
+
"up_blocks.3.resnets.2.conv_shortcut",
|
218 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
219 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
220 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_q",
|
221 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_v",
|
222 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
223 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_k",
|
224 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
225 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
226 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
227 |
+
"up_blocks.1.resnets.2.conv_shortcut",
|
228 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
229 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
230 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_v",
|
231 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_k",
|
232 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
233 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
234 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
235 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.2",
|
236 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
237 |
+
"up_blocks.2.resnets.2.conv1",
|
238 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
239 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_v",
|
240 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
241 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_q",
|
242 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
243 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
244 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
245 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
246 |
+
"transformer_in.transformer_blocks.0.attn2.to_q",
|
247 |
+
"down_blocks.0.resnets.1.conv2",
|
248 |
+
"up_blocks.0.resnets.1.time_emb_proj",
|
249 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
250 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
251 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
252 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
253 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
254 |
+
"up_blocks.2.temp_attentions.0.proj_in",
|
255 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
256 |
+
"up_blocks.0.resnets.1.conv_shortcut",
|
257 |
+
"transformer_in.transformer_blocks.0.attn1.to_out.0",
|
258 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
259 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_q",
|
260 |
+
"down_blocks.2.resnets.0.time_emb_proj",
|
261 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
262 |
+
"up_blocks.3.resnets.0.conv2",
|
263 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
264 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
265 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
266 |
+
"up_blocks.2.temp_attentions.2.proj_out",
|
267 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
268 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
269 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_q",
|
270 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
271 |
+
"transformer_in.transformer_blocks.0.attn1.to_v",
|
272 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_q",
|
273 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
274 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.2",
|
275 |
+
"up_blocks.3.temp_attentions.1.proj_out",
|
276 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
277 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
278 |
+
"up_blocks.1.resnets.0.conv1",
|
279 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
280 |
+
"up_blocks.2.attentions.2.proj_in",
|
281 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
282 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
283 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
284 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
285 |
+
"up_blocks.3.resnets.0.time_emb_proj",
|
286 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
287 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
288 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
289 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
290 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_v",
|
291 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
292 |
+
"up_blocks.0.resnets.2.conv2",
|
293 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
294 |
+
"up_blocks.2.attentions.1.proj_in",
|
295 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
296 |
+
"down_blocks.1.attentions.0.proj_out",
|
297 |
+
"down_blocks.1.downsamplers.0.conv",
|
298 |
+
"up_blocks.1.temp_attentions.1.proj_in",
|
299 |
+
"up_blocks.2.resnets.0.time_emb_proj",
|
300 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.2",
|
301 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
302 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
303 |
+
"down_blocks.1.temp_attentions.0.proj_out",
|
304 |
+
"up_blocks.1.attentions.0.proj_out",
|
305 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
306 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
307 |
+
"up_blocks.2.resnets.2.time_emb_proj",
|
308 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
309 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
310 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
311 |
+
"mid_block.resnets.1.conv1",
|
312 |
+
"down_blocks.0.downsamplers.0.conv",
|
313 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
314 |
+
"down_blocks.2.resnets.0.conv_shortcut",
|
315 |
+
"up_blocks.3.temp_attentions.2.proj_in",
|
316 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
317 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_q",
|
318 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
319 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
320 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
321 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
322 |
+
"up_blocks.1.resnets.1.conv_shortcut",
|
323 |
+
"down_blocks.0.attentions.1.proj_out",
|
324 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
325 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
326 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
327 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
328 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
329 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
330 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
331 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
332 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
333 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
334 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_v",
|
335 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
336 |
+
"up_blocks.1.temp_attentions.1.proj_out",
|
337 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_k",
|
338 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
339 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
340 |
+
"up_blocks.2.resnets.2.conv_shortcut",
|
341 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_q",
|
342 |
+
"up_blocks.1.resnets.2.time_emb_proj",
|
343 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
344 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
345 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
346 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
347 |
+
"up_blocks.2.temp_attentions.2.proj_in",
|
348 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
349 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
350 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_k",
|
351 |
+
"up_blocks.0.resnets.0.conv_shortcut",
|
352 |
+
"down_blocks.0.temp_attentions.1.proj_in",
|
353 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
354 |
+
"down_blocks.0.resnets.0.time_emb_proj",
|
355 |
+
"up_blocks.2.resnets.0.conv2",
|
356 |
+
"up_blocks.2.attentions.2.proj_out",
|
357 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
358 |
+
"up_blocks.1.attentions.1.proj_out",
|
359 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
360 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
361 |
+
"down_blocks.0.resnets.0.conv2",
|
362 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
363 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
364 |
+
"up_blocks.3.resnets.2.conv1",
|
365 |
+
"up_blocks.1.attentions.1.proj_in",
|
366 |
+
"up_blocks.0.resnets.2.conv1",
|
367 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_v",
|
368 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
369 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
370 |
+
"up_blocks.0.resnets.0.conv1",
|
371 |
+
"up_blocks.2.resnets.1.conv_shortcut",
|
372 |
+
"down_blocks.2.attentions.1.proj_out",
|
373 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
374 |
+
"up_blocks.0.resnets.0.time_emb_proj",
|
375 |
+
"down_blocks.0.temp_attentions.0.proj_out",
|
376 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
377 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
378 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
379 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.2",
|
380 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
381 |
+
"down_blocks.0.temp_attentions.0.proj_in",
|
382 |
+
"transformer_in.transformer_blocks.0.ff.net.2",
|
383 |
+
"up_blocks.0.resnets.0.conv2",
|
384 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
385 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
386 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
387 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
388 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
389 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
390 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_k",
|
391 |
+
"mid_block.temp_attentions.0.proj_out",
|
392 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
393 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
394 |
+
"down_blocks.0.temp_attentions.1.proj_out",
|
395 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_v",
|
396 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
397 |
+
"transformer_in.transformer_blocks.0.attn2.to_k",
|
398 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
399 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
400 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_q",
|
401 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
402 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
403 |
+
"up_blocks.1.upsamplers.0.conv",
|
404 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
405 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.2",
|
406 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
407 |
+
"down_blocks.0.resnets.0.conv1",
|
408 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
409 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
410 |
+
"down_blocks.3.resnets.0.conv2",
|
411 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
412 |
+
"up_blocks.3.resnets.1.conv_shortcut",
|
413 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
414 |
+
"down_blocks.2.attentions.1.proj_in",
|
415 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
416 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
417 |
+
"mid_block.attentions.0.proj_out",
|
418 |
+
"transformer_in.transformer_blocks.0.attn1.to_k",
|
419 |
+
"down_blocks.2.temp_attentions.0.proj_out",
|
420 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
421 |
+
"up_blocks.3.temp_attentions.0.proj_out",
|
422 |
+
"up_blocks.3.resnets.0.conv_shortcut",
|
423 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_k",
|
424 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
425 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
426 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
427 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
428 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
429 |
+
"up_blocks.1.temp_attentions.2.proj_in",
|
430 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
431 |
+
"up_blocks.1.resnets.2.conv2",
|
432 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
433 |
+
"down_blocks.1.resnets.0.time_emb_proj",
|
434 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
435 |
+
"down_blocks.2.resnets.1.conv1",
|
436 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
437 |
+
"up_blocks.3.attentions.0.proj_out",
|
438 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_k",
|
439 |
+
"up_blocks.2.attentions.1.proj_out",
|
440 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
441 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_k",
|
442 |
+
"up_blocks.1.resnets.1.time_emb_proj",
|
443 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_k",
|
444 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
445 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
446 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_v",
|
447 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
448 |
+
"down_blocks.1.resnets.1.conv2",
|
449 |
+
"up_blocks.2.attentions.0.proj_in",
|
450 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
451 |
+
"up_blocks.1.resnets.0.time_emb_proj",
|
452 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
453 |
+
"transformer_in.proj_in",
|
454 |
+
"up_blocks.3.attentions.2.proj_out",
|
455 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_q",
|
456 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
457 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
458 |
+
"down_blocks.2.resnets.1.conv2",
|
459 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_q",
|
460 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_v",
|
461 |
+
"up_blocks.0.resnets.1.conv1",
|
462 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_v",
|
463 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
464 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
465 |
+
"up_blocks.1.resnets.0.conv_shortcut",
|
466 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
467 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
468 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
469 |
+
"down_blocks.2.temp_attentions.0.proj_in",
|
470 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
471 |
+
"mid_block.resnets.0.time_emb_proj",
|
472 |
+
"up_blocks.3.resnets.0.conv1",
|
473 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
474 |
+
"transformer_in.proj_out",
|
475 |
+
"up_blocks.2.temp_attentions.0.proj_out",
|
476 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
477 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
478 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_k",
|
479 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
480 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
481 |
+
"down_blocks.0.attentions.1.proj_in",
|
482 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
483 |
+
"down_blocks.3.resnets.1.conv2",
|
484 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
485 |
+
"up_blocks.3.attentions.0.proj_in",
|
486 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
487 |
+
"up_blocks.2.resnets.1.time_emb_proj",
|
488 |
+
"up_blocks.3.resnets.2.conv2",
|
489 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
490 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
491 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
492 |
+
"down_blocks.1.resnets.0.conv2",
|
493 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
494 |
+
"down_blocks.2.temp_attentions.1.proj_out",
|
495 |
+
"up_blocks.1.resnets.1.conv1",
|
496 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
497 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
498 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
499 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
500 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k"
|
501 |
+
],
|
502 |
+
"use_dora": false,
|
503 |
+
"use_rslora": false
|
504 |
+
}
|
modelscopet2v-real/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6ae288f72f613111e81ea67a7f387a095a993cee2dd553e383d93bd6953f37f
|
3 |
+
size 384239960
|
modelscopet2v-real/unet_lora/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca6850f1c880538da15570e3486075524fd14a07f5e2c58ee3e53aa8e369b51a
|
3 |
+
size 384244776
|
modelscopet2v-webvid/adapter_config.json
ADDED
@@ -0,0 +1,504 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": {
|
4 |
+
"base_model_class": "UNet3DConditionModel",
|
5 |
+
"parent_library": "diffusers.models.unets.unet_3d_condition"
|
6 |
+
},
|
7 |
+
"bias": "none",
|
8 |
+
"fan_in_fan_out": false,
|
9 |
+
"inference_mode": true,
|
10 |
+
"init_lora_weights": true,
|
11 |
+
"loftq_config": {},
|
12 |
+
"lora_alpha": 64,
|
13 |
+
"lora_dropout": 0.0,
|
14 |
+
"megatron_core": "megatron.core",
|
15 |
+
"peft_type": "LORA",
|
16 |
+
"r": 64,
|
17 |
+
"rank_pattern": {},
|
18 |
+
"target_modules": [
|
19 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
20 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
21 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_v",
|
22 |
+
"down_blocks.2.attentions.0.proj_in",
|
23 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.2",
|
24 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_k",
|
25 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
26 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
27 |
+
"up_blocks.3.temp_attentions.2.proj_out",
|
28 |
+
"transformer_in.transformer_blocks.0.ff.net.2",
|
29 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
30 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
31 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
32 |
+
"down_blocks.1.resnets.0.time_emb_proj",
|
33 |
+
"transformer_in.transformer_blocks.0.attn1.to_k",
|
34 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
35 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
36 |
+
"transformer_in.transformer_blocks.0.attn2.to_v",
|
37 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
38 |
+
"up_blocks.2.upsamplers.0.conv",
|
39 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
40 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
41 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
42 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
43 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
44 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
45 |
+
"up_blocks.3.temp_attentions.1.proj_out",
|
46 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
47 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
48 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
49 |
+
"down_blocks.0.resnets.0.conv1",
|
50 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
51 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
52 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
53 |
+
"down_blocks.1.resnets.0.conv1",
|
54 |
+
"up_blocks.2.attentions.0.proj_in",
|
55 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
56 |
+
"up_blocks.1.temp_attentions.1.proj_out",
|
57 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
58 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
59 |
+
"down_blocks.2.resnets.1.conv2",
|
60 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
61 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
62 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_q",
|
63 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
64 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
65 |
+
"down_blocks.2.attentions.1.proj_out",
|
66 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
67 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.2",
|
68 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
69 |
+
"down_blocks.2.temp_attentions.1.proj_out",
|
70 |
+
"down_blocks.1.attentions.0.proj_out",
|
71 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_q",
|
72 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_k",
|
73 |
+
"up_blocks.0.resnets.0.conv_shortcut",
|
74 |
+
"up_blocks.3.attentions.1.proj_in",
|
75 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
76 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
77 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_v",
|
78 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
79 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
80 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
81 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_q",
|
82 |
+
"down_blocks.3.resnets.1.conv2",
|
83 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
84 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_q",
|
85 |
+
"down_blocks.1.resnets.1.conv2",
|
86 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
87 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_k",
|
88 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
89 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
90 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_v",
|
91 |
+
"up_blocks.1.resnets.2.conv2",
|
92 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.2",
|
93 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
94 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_v",
|
95 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
96 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
97 |
+
"down_blocks.1.resnets.0.conv2",
|
98 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_q",
|
99 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
100 |
+
"up_blocks.1.resnets.0.conv2",
|
101 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_k",
|
102 |
+
"down_blocks.1.resnets.0.conv_shortcut",
|
103 |
+
"down_blocks.2.temp_attentions.0.proj_out",
|
104 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
105 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
106 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.ff.net.2",
|
107 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
108 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
109 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
110 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
111 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
112 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
113 |
+
"down_blocks.0.temp_attentions.1.proj_out",
|
114 |
+
"down_blocks.2.attentions.1.proj_in",
|
115 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
116 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
117 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
118 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
119 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_v",
|
120 |
+
"up_blocks.3.attentions.2.proj_out",
|
121 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
122 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
123 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
124 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_q",
|
125 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_q",
|
126 |
+
"down_blocks.0.temp_attentions.0.proj_out",
|
127 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
128 |
+
"up_blocks.1.attentions.2.proj_in",
|
129 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_v",
|
130 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
131 |
+
"up_blocks.2.resnets.0.time_emb_proj",
|
132 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
133 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
134 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_q",
|
135 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
136 |
+
"up_blocks.2.temp_attentions.0.proj_out",
|
137 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
138 |
+
"up_blocks.2.resnets.2.conv2",
|
139 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_k",
|
140 |
+
"up_blocks.1.resnets.2.conv_shortcut",
|
141 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
142 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
143 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
144 |
+
"down_blocks.3.resnets.0.conv2",
|
145 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
146 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_v",
|
147 |
+
"up_blocks.0.resnets.0.time_emb_proj",
|
148 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
149 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
150 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_v",
|
151 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
152 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
153 |
+
"up_blocks.0.upsamplers.0.conv",
|
154 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
155 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
156 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
157 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
158 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
159 |
+
"up_blocks.3.resnets.0.conv_shortcut",
|
160 |
+
"up_blocks.1.attentions.1.proj_in",
|
161 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_k",
|
162 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
163 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
164 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
165 |
+
"up_blocks.1.resnets.0.conv1",
|
166 |
+
"up_blocks.0.resnets.2.conv1",
|
167 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
168 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_k",
|
169 |
+
"up_blocks.3.temp_attentions.1.proj_in",
|
170 |
+
"up_blocks.1.temp_attentions.1.proj_in",
|
171 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
172 |
+
"up_blocks.2.attentions.1.proj_out",
|
173 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
174 |
+
"up_blocks.3.resnets.1.time_emb_proj",
|
175 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
176 |
+
"up_blocks.0.resnets.0.conv1",
|
177 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_q",
|
178 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
179 |
+
"up_blocks.0.resnets.1.conv_shortcut",
|
180 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
181 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
182 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
183 |
+
"mid_block.resnets.0.time_emb_proj",
|
184 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
185 |
+
"up_blocks.3.resnets.2.conv_shortcut",
|
186 |
+
"up_blocks.1.attentions.0.proj_out",
|
187 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
188 |
+
"mid_block.resnets.0.conv1",
|
189 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
190 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
191 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
192 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
193 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
194 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
195 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_v",
|
196 |
+
"up_blocks.3.attentions.2.proj_in",
|
197 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
198 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
199 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_k",
|
200 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
201 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_v",
|
202 |
+
"up_blocks.1.attentions.1.proj_out",
|
203 |
+
"down_blocks.2.resnets.1.time_emb_proj",
|
204 |
+
"up_blocks.1.temp_attentions.0.proj_in",
|
205 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
206 |
+
"down_blocks.1.temp_attentions.1.proj_out",
|
207 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
208 |
+
"up_blocks.1.resnets.1.conv2",
|
209 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
210 |
+
"up_blocks.2.resnets.1.conv_shortcut",
|
211 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
212 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
213 |
+
"mid_block.temp_attentions.0.proj_in",
|
214 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
215 |
+
"up_blocks.3.resnets.1.conv1",
|
216 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
217 |
+
"down_blocks.0.resnets.1.conv2",
|
218 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
219 |
+
"down_blocks.0.temp_attentions.1.proj_in",
|
220 |
+
"up_blocks.1.temp_attentions.2.proj_out",
|
221 |
+
"down_blocks.1.attentions.1.proj_out",
|
222 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn2.to_q",
|
223 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
224 |
+
"up_blocks.1.temp_attentions.2.proj_in",
|
225 |
+
"up_blocks.1.upsamplers.0.conv",
|
226 |
+
"down_blocks.2.temp_attentions.1.proj_in",
|
227 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_q",
|
228 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
229 |
+
"down_blocks.0.resnets.1.conv1",
|
230 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
231 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_out.0",
|
232 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
233 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.0.proj",
|
234 |
+
"mid_block.temp_attentions.0.proj_out",
|
235 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
236 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
237 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
238 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_q",
|
239 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
240 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
241 |
+
"transformer_in.transformer_blocks.0.attn2.to_out.0",
|
242 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
243 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_q",
|
244 |
+
"mid_block.resnets.1.conv1",
|
245 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_v",
|
246 |
+
"down_blocks.1.temp_attentions.0.proj_in",
|
247 |
+
"up_blocks.3.temp_attentions.2.proj_in",
|
248 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.ff.net.2",
|
249 |
+
"up_blocks.3.resnets.2.conv2",
|
250 |
+
"down_blocks.2.temp_attentions.0.proj_in",
|
251 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
252 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
253 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.0.proj",
|
254 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
255 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_q",
|
256 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
257 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
258 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
259 |
+
"down_blocks.0.resnets.0.conv2",
|
260 |
+
"up_blocks.3.temp_attentions.0.proj_out",
|
261 |
+
"mid_block.resnets.1.conv2",
|
262 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
263 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
264 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn1.to_k",
|
265 |
+
"down_blocks.2.downsamplers.0.conv",
|
266 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
267 |
+
"up_blocks.2.resnets.0.conv1",
|
268 |
+
"transformer_in.proj_in",
|
269 |
+
"up_blocks.1.attentions.2.proj_out",
|
270 |
+
"down_blocks.1.attentions.0.proj_in",
|
271 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn2.to_v",
|
272 |
+
"down_blocks.1.resnets.1.time_emb_proj",
|
273 |
+
"down_blocks.0.resnets.1.time_emb_proj",
|
274 |
+
"up_blocks.0.resnets.2.time_emb_proj",
|
275 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
276 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
277 |
+
"mid_block.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
278 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
279 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
280 |
+
"up_blocks.1.resnets.0.conv_shortcut",
|
281 |
+
"up_blocks.3.attentions.1.proj_out",
|
282 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
283 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_k",
|
284 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_q",
|
285 |
+
"down_blocks.3.resnets.0.conv1",
|
286 |
+
"down_blocks.0.temp_attentions.0.proj_in",
|
287 |
+
"down_blocks.2.resnets.0.conv_shortcut",
|
288 |
+
"up_blocks.3.resnets.1.conv_shortcut",
|
289 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_k",
|
290 |
+
"up_blocks.2.attentions.0.proj_out",
|
291 |
+
"down_blocks.0.attentions.0.proj_in",
|
292 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
293 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.ff.net.2",
|
294 |
+
"down_blocks.2.resnets.1.conv1",
|
295 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
296 |
+
"down_blocks.0.downsamplers.0.conv",
|
297 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
298 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_k",
|
299 |
+
"up_blocks.3.resnets.0.time_emb_proj",
|
300 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
301 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
302 |
+
"up_blocks.3.resnets.2.conv1",
|
303 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
304 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
305 |
+
"transformer_in.proj_out",
|
306 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_k",
|
307 |
+
"down_blocks.1.downsamplers.0.conv",
|
308 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
309 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
310 |
+
"mid_block.attentions.0.proj_in",
|
311 |
+
"up_blocks.0.resnets.1.conv2",
|
312 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
313 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
314 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
315 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
316 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_q",
|
317 |
+
"up_blocks.0.resnets.2.conv2",
|
318 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
319 |
+
"up_blocks.2.temp_attentions.2.proj_out",
|
320 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
321 |
+
"up_blocks.2.resnets.2.time_emb_proj",
|
322 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
323 |
+
"up_blocks.1.resnets.0.time_emb_proj",
|
324 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
325 |
+
"down_blocks.1.temp_attentions.0.proj_out",
|
326 |
+
"up_blocks.2.resnets.0.conv_shortcut",
|
327 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn2.to_k",
|
328 |
+
"down_blocks.2.resnets.0.conv2",
|
329 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_k",
|
330 |
+
"up_blocks.2.temp_attentions.1.proj_in",
|
331 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
332 |
+
"mid_block.attentions.0.transformer_blocks.0.ff.net.2",
|
333 |
+
"up_blocks.2.temp_attentions.0.proj_in",
|
334 |
+
"up_blocks.0.resnets.1.conv1",
|
335 |
+
"down_blocks.3.resnets.1.conv1",
|
336 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_v",
|
337 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
338 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn2.to_v",
|
339 |
+
"up_blocks.3.resnets.1.conv2",
|
340 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
341 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_q",
|
342 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
343 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.ff.net.2",
|
344 |
+
"transformer_in.transformer_blocks.0.attn2.to_q",
|
345 |
+
"up_blocks.1.resnets.1.conv1",
|
346 |
+
"up_blocks.2.resnets.1.conv2",
|
347 |
+
"transformer_in.transformer_blocks.0.attn1.to_out.0",
|
348 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_k",
|
349 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
350 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
351 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_k",
|
352 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
353 |
+
"up_blocks.2.resnets.1.time_emb_proj",
|
354 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
355 |
+
"up_blocks.2.attentions.2.proj_in",
|
356 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
357 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
358 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_v",
|
359 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_out.0",
|
360 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn1.to_k",
|
361 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
362 |
+
"up_blocks.3.attentions.0.proj_out",
|
363 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
364 |
+
"transformer_in.transformer_blocks.0.ff.net.0.proj",
|
365 |
+
"up_blocks.1.resnets.1.conv_shortcut",
|
366 |
+
"up_blocks.3.attentions.0.proj_in",
|
367 |
+
"up_blocks.0.resnets.1.time_emb_proj",
|
368 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_q",
|
369 |
+
"mid_block.attentions.0.proj_out",
|
370 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_v",
|
371 |
+
"transformer_in.transformer_blocks.0.attn1.to_v",
|
372 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_k",
|
373 |
+
"down_blocks.0.attentions.1.proj_out",
|
374 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
375 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_k",
|
376 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
377 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
378 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_k",
|
379 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
380 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
381 |
+
"up_blocks.1.attentions.0.proj_in",
|
382 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.ff.net.2",
|
383 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn1.to_v",
|
384 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
385 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_v",
|
386 |
+
"up_blocks.2.temp_attentions.2.proj_in",
|
387 |
+
"up_blocks.2.temp_attentions.1.proj_out",
|
388 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.2",
|
389 |
+
"up_blocks.0.resnets.0.conv2",
|
390 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_v",
|
391 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
392 |
+
"mid_block.resnets.1.time_emb_proj",
|
393 |
+
"up_blocks.1.resnets.2.time_emb_proj",
|
394 |
+
"down_blocks.2.attentions.1.transformer_blocks.0.attn1.to_q",
|
395 |
+
"up_blocks.2.resnets.0.conv2",
|
396 |
+
"up_blocks.2.attentions.2.proj_out",
|
397 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
398 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.ff.net.0.proj",
|
399 |
+
"transformer_in.transformer_blocks.0.attn1.to_q",
|
400 |
+
"down_blocks.2.resnets.0.time_emb_proj",
|
401 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn2.to_v",
|
402 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
403 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_k",
|
404 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.ff.net.2",
|
405 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
406 |
+
"down_blocks.2.resnets.0.conv1",
|
407 |
+
"mid_block.resnets.0.conv2",
|
408 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
409 |
+
"down_blocks.0.attentions.0.proj_out",
|
410 |
+
"up_blocks.2.attentions.1.transformer_blocks.0.ff.net.2",
|
411 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
412 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_q",
|
413 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
414 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
415 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
416 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
417 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
418 |
+
"down_blocks.1.attentions.1.proj_in",
|
419 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
420 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
421 |
+
"down_blocks.0.resnets.0.time_emb_proj",
|
422 |
+
"up_blocks.1.temp_attentions.0.proj_out",
|
423 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.ff.net.2",
|
424 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_out.0",
|
425 |
+
"up_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
426 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
427 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
428 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
429 |
+
"down_blocks.0.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
430 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn2.to_k",
|
431 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_v",
|
432 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
433 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
434 |
+
"down_blocks.0.attentions.0.transformer_blocks.0.attn2.to_q",
|
435 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
436 |
+
"up_blocks.3.attentions.0.transformer_blocks.0.attn2.to_k",
|
437 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.ff.net.0.proj",
|
438 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
439 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
440 |
+
"transformer_in.transformer_blocks.0.attn2.to_k",
|
441 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
442 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
443 |
+
"down_blocks.2.attentions.0.proj_out",
|
444 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn2.to_q",
|
445 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_out.0",
|
446 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.ff.net.2",
|
447 |
+
"down_blocks.2.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
448 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_out.0",
|
449 |
+
"down_blocks.2.temp_attentions.1.transformer_blocks.0.attn1.to_v",
|
450 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_v",
|
451 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_v",
|
452 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
453 |
+
"up_blocks.2.temp_attentions.2.transformer_blocks.0.attn1.to_k",
|
454 |
+
"down_blocks.1.temp_attentions.1.proj_in",
|
455 |
+
"up_blocks.2.temp_attentions.1.transformer_blocks.0.attn2.to_k",
|
456 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_q",
|
457 |
+
"down_blocks.1.attentions.0.transformer_blocks.0.attn1.to_out.0",
|
458 |
+
"up_blocks.3.resnets.2.time_emb_proj",
|
459 |
+
"down_blocks.1.temp_attentions.1.transformer_blocks.0.attn2.to_v",
|
460 |
+
"up_blocks.2.resnets.1.conv1",
|
461 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn2.to_q",
|
462 |
+
"down_blocks.1.resnets.1.conv1",
|
463 |
+
"up_blocks.0.resnets.2.conv_shortcut",
|
464 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn1.to_v",
|
465 |
+
"up_blocks.3.resnets.0.conv2",
|
466 |
+
"mid_block.temp_attentions.0.transformer_blocks.0.ff.net.2",
|
467 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
468 |
+
"up_blocks.1.resnets.2.conv1",
|
469 |
+
"up_blocks.2.temp_attentions.0.transformer_blocks.0.attn1.to_out.0",
|
470 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn1.to_v",
|
471 |
+
"up_blocks.3.temp_attentions.0.proj_in",
|
472 |
+
"up_blocks.2.resnets.2.conv_shortcut",
|
473 |
+
"up_blocks.2.attentions.1.proj_in",
|
474 |
+
"up_blocks.1.resnets.1.time_emb_proj",
|
475 |
+
"up_blocks.3.temp_attentions.2.transformer_blocks.0.attn1.to_v",
|
476 |
+
"down_blocks.3.resnets.0.time_emb_proj",
|
477 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn1.to_q",
|
478 |
+
"down_blocks.3.resnets.1.time_emb_proj",
|
479 |
+
"up_blocks.3.attentions.1.transformer_blocks.0.attn2.to_q",
|
480 |
+
"mid_block.attentions.0.transformer_blocks.0.attn2.to_out.0",
|
481 |
+
"up_blocks.3.temp_attentions.1.transformer_blocks.0.attn2.to_out.0",
|
482 |
+
"up_blocks.1.temp_attentions.1.transformer_blocks.0.attn1.to_k",
|
483 |
+
"up_blocks.1.attentions.0.transformer_blocks.0.attn2.to_q",
|
484 |
+
"down_blocks.0.attentions.1.proj_in",
|
485 |
+
"up_blocks.3.resnets.0.conv1",
|
486 |
+
"down_blocks.2.temp_attentions.0.transformer_blocks.0.attn2.to_q",
|
487 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.ff.net.0.proj",
|
488 |
+
"up_blocks.1.attentions.1.transformer_blocks.0.attn1.to_k",
|
489 |
+
"down_blocks.0.attentions.1.transformer_blocks.0.attn2.to_q",
|
490 |
+
"up_blocks.1.attentions.2.transformer_blocks.0.attn2.to_v",
|
491 |
+
"down_blocks.0.temp_attentions.1.transformer_blocks.0.ff.net.0.proj",
|
492 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn1.to_out.0",
|
493 |
+
"up_blocks.3.attentions.2.transformer_blocks.0.attn1.to_k",
|
494 |
+
"up_blocks.2.resnets.2.conv1",
|
495 |
+
"up_blocks.2.attentions.2.transformer_blocks.0.attn2.to_v",
|
496 |
+
"up_blocks.1.temp_attentions.2.transformer_blocks.0.attn2.to_out.0",
|
497 |
+
"down_blocks.1.temp_attentions.0.transformer_blocks.0.attn2.to_k",
|
498 |
+
"down_blocks.1.attentions.1.transformer_blocks.0.attn1.to_out.0",
|
499 |
+
"up_blocks.2.attentions.0.transformer_blocks.0.attn1.to_q",
|
500 |
+
"up_blocks.3.temp_attentions.0.transformer_blocks.0.attn2.to_q"
|
501 |
+
],
|
502 |
+
"use_dora": false,
|
503 |
+
"use_rslora": false
|
504 |
+
}
|
modelscopet2v-webvid/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c4edd9be5374a273a3498c6d2e0a440d5296d3ad1582b34c1165b51694278961
|
3 |
+
size 384239960
|
modelscopet2v-webvid/unet_lora/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a6a420cf94cda3689dd3f643de29b37c01b6ab970398205fe0e60b978306f1c3
|
3 |
+
size 384244776
|