Add files using upload-large-folder tool
Browse files- env/.gitignore +2 -0
- env/bin/activate +76 -0
- env/bin/activate.csh +27 -0
- env/bin/activate.fish +69 -0
- env/bin/hf +8 -0
- env/bin/pip +8 -0
- env/pyvenv.cfg +5 -0
- scheduler/scheduler_config.json +7 -0
- text_encoder/config.json +30 -0
- text_encoder/generation_config.json +13 -0
- text_encoder/model-00001-of-00003.safetensors +3 -0
- text_encoder/model-00002-of-00003.safetensors +3 -0
- text_encoder/model-00003-of-00003.safetensors +3 -0
- text_encoder/model.safetensors.index.json +405 -0
- transformer/config.json +31 -0
- transformer/diffusion_pytorch_model-00001-of-00003.safetensors +3 -0
- transformer/diffusion_pytorch_model.safetensors.index.json +528 -0
- upload_code.py +7 -0
- vae/config.json +38 -0
- vae/diffusion_pytorch_model.safetensors +3 -0
env/.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Created by venv; see https://docs.python.org/3/library/venv.html
|
| 2 |
+
*
|
env/bin/activate
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file must be used with "source bin/activate" *from bash*
|
| 2 |
+
# You cannot run it directly
|
| 3 |
+
|
| 4 |
+
deactivate () {
|
| 5 |
+
# reset old environment variables
|
| 6 |
+
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
|
| 7 |
+
PATH="${_OLD_VIRTUAL_PATH:-}"
|
| 8 |
+
export PATH
|
| 9 |
+
unset _OLD_VIRTUAL_PATH
|
| 10 |
+
fi
|
| 11 |
+
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
|
| 12 |
+
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
|
| 13 |
+
export PYTHONHOME
|
| 14 |
+
unset _OLD_VIRTUAL_PYTHONHOME
|
| 15 |
+
fi
|
| 16 |
+
|
| 17 |
+
# Call hash to forget past locations. Without forgetting
|
| 18 |
+
# past locations the $PATH changes we made may not be respected.
|
| 19 |
+
# See "man bash" for more details. hash is usually a builtin of your shell
|
| 20 |
+
hash -r 2> /dev/null
|
| 21 |
+
|
| 22 |
+
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
|
| 23 |
+
PS1="${_OLD_VIRTUAL_PS1:-}"
|
| 24 |
+
export PS1
|
| 25 |
+
unset _OLD_VIRTUAL_PS1
|
| 26 |
+
fi
|
| 27 |
+
|
| 28 |
+
unset VIRTUAL_ENV
|
| 29 |
+
unset VIRTUAL_ENV_PROMPT
|
| 30 |
+
if [ ! "${1:-}" = "nondestructive" ] ; then
|
| 31 |
+
# Self destruct!
|
| 32 |
+
unset -f deactivate
|
| 33 |
+
fi
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
# unset irrelevant variables
|
| 37 |
+
deactivate nondestructive
|
| 38 |
+
|
| 39 |
+
# on Windows, a path can contain colons and backslashes and has to be converted:
|
| 40 |
+
case "$(uname)" in
|
| 41 |
+
CYGWIN*|MSYS*|MINGW*)
|
| 42 |
+
# transform D:\path\to\venv to /d/path/to/venv on MSYS and MINGW
|
| 43 |
+
# and to /cygdrive/d/path/to/venv on Cygwin
|
| 44 |
+
VIRTUAL_ENV=$(cygpath /home/jxngrx/Work/MINE_DEMO_PROECTS/Z-Image-Turbo/env)
|
| 45 |
+
export VIRTUAL_ENV
|
| 46 |
+
;;
|
| 47 |
+
*)
|
| 48 |
+
# use the path as-is
|
| 49 |
+
export VIRTUAL_ENV=/home/jxngrx/Work/MINE_DEMO_PROECTS/Z-Image-Turbo/env
|
| 50 |
+
;;
|
| 51 |
+
esac
|
| 52 |
+
|
| 53 |
+
_OLD_VIRTUAL_PATH="$PATH"
|
| 54 |
+
PATH="$VIRTUAL_ENV/"bin":$PATH"
|
| 55 |
+
export PATH
|
| 56 |
+
|
| 57 |
+
VIRTUAL_ENV_PROMPT=env
|
| 58 |
+
export VIRTUAL_ENV_PROMPT
|
| 59 |
+
|
| 60 |
+
# unset PYTHONHOME if set
|
| 61 |
+
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
|
| 62 |
+
# could use `if (set -u; : $PYTHONHOME) ;` in bash
|
| 63 |
+
if [ -n "${PYTHONHOME:-}" ] ; then
|
| 64 |
+
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
|
| 65 |
+
unset PYTHONHOME
|
| 66 |
+
fi
|
| 67 |
+
|
| 68 |
+
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
|
| 69 |
+
_OLD_VIRTUAL_PS1="${PS1:-}"
|
| 70 |
+
PS1="("env") ${PS1:-}"
|
| 71 |
+
export PS1
|
| 72 |
+
fi
|
| 73 |
+
|
| 74 |
+
# Call hash to forget past commands. Without forgetting
|
| 75 |
+
# past commands the $PATH changes we made may not be respected
|
| 76 |
+
hash -r 2> /dev/null
|
env/bin/activate.csh
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file must be used with "source bin/activate.csh" *from csh*.
|
| 2 |
+
# You cannot run it directly.
|
| 3 |
+
|
| 4 |
+
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
| 5 |
+
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
|
| 6 |
+
|
| 7 |
+
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate'
|
| 8 |
+
|
| 9 |
+
# Unset irrelevant variables.
|
| 10 |
+
deactivate nondestructive
|
| 11 |
+
|
| 12 |
+
setenv VIRTUAL_ENV /home/jxngrx/Work/MINE_DEMO_PROECTS/Z-Image-Turbo/env
|
| 13 |
+
|
| 14 |
+
set _OLD_VIRTUAL_PATH="$PATH"
|
| 15 |
+
setenv PATH "$VIRTUAL_ENV/"bin":$PATH"
|
| 16 |
+
setenv VIRTUAL_ENV_PROMPT env
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
set _OLD_VIRTUAL_PROMPT="$prompt"
|
| 20 |
+
|
| 21 |
+
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
|
| 22 |
+
set prompt = "("env") $prompt:q"
|
| 23 |
+
endif
|
| 24 |
+
|
| 25 |
+
alias pydoc python -m pydoc
|
| 26 |
+
|
| 27 |
+
rehash
|
env/bin/activate.fish
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file must be used with "source <venv>/bin/activate.fish" *from fish*
|
| 2 |
+
# (https://fishshell.com/). You cannot run it directly.
|
| 3 |
+
|
| 4 |
+
function deactivate -d "Exit virtual environment and return to normal shell environment"
|
| 5 |
+
# reset old environment variables
|
| 6 |
+
if test -n "$_OLD_VIRTUAL_PATH"
|
| 7 |
+
set -gx PATH $_OLD_VIRTUAL_PATH
|
| 8 |
+
set -e _OLD_VIRTUAL_PATH
|
| 9 |
+
end
|
| 10 |
+
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
|
| 11 |
+
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
|
| 12 |
+
set -e _OLD_VIRTUAL_PYTHONHOME
|
| 13 |
+
end
|
| 14 |
+
|
| 15 |
+
if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
|
| 16 |
+
set -e _OLD_FISH_PROMPT_OVERRIDE
|
| 17 |
+
# prevents error when using nested fish instances (Issue #93858)
|
| 18 |
+
if functions -q _old_fish_prompt
|
| 19 |
+
functions -e fish_prompt
|
| 20 |
+
functions -c _old_fish_prompt fish_prompt
|
| 21 |
+
functions -e _old_fish_prompt
|
| 22 |
+
end
|
| 23 |
+
end
|
| 24 |
+
|
| 25 |
+
set -e VIRTUAL_ENV
|
| 26 |
+
set -e VIRTUAL_ENV_PROMPT
|
| 27 |
+
if test "$argv[1]" != "nondestructive"
|
| 28 |
+
# Self-destruct!
|
| 29 |
+
functions -e deactivate
|
| 30 |
+
end
|
| 31 |
+
end
|
| 32 |
+
|
| 33 |
+
# Unset irrelevant variables.
|
| 34 |
+
deactivate nondestructive
|
| 35 |
+
|
| 36 |
+
set -gx VIRTUAL_ENV /home/jxngrx/Work/MINE_DEMO_PROECTS/Z-Image-Turbo/env
|
| 37 |
+
|
| 38 |
+
set -gx _OLD_VIRTUAL_PATH $PATH
|
| 39 |
+
set -gx PATH "$VIRTUAL_ENV/"bin $PATH
|
| 40 |
+
set -gx VIRTUAL_ENV_PROMPT env
|
| 41 |
+
|
| 42 |
+
# Unset PYTHONHOME if set.
|
| 43 |
+
if set -q PYTHONHOME
|
| 44 |
+
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
|
| 45 |
+
set -e PYTHONHOME
|
| 46 |
+
end
|
| 47 |
+
|
| 48 |
+
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
|
| 49 |
+
# fish uses a function instead of an env var to generate the prompt.
|
| 50 |
+
|
| 51 |
+
# Save the current fish_prompt function as the function _old_fish_prompt.
|
| 52 |
+
functions -c fish_prompt _old_fish_prompt
|
| 53 |
+
|
| 54 |
+
# With the original prompt function renamed, we can override with our own.
|
| 55 |
+
function fish_prompt
|
| 56 |
+
# Save the return status of the last command.
|
| 57 |
+
set -l old_status $status
|
| 58 |
+
|
| 59 |
+
# Output the venv prompt; color taken from the blue of the Python logo.
|
| 60 |
+
printf "%s(%s)%s " (set_color 4B8BBE) env (set_color normal)
|
| 61 |
+
|
| 62 |
+
# Restore the return status of the previous command.
|
| 63 |
+
echo "exit $old_status" | .
|
| 64 |
+
# Output the original/"old" prompt.
|
| 65 |
+
_old_fish_prompt
|
| 66 |
+
end
|
| 67 |
+
|
| 68 |
+
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
|
| 69 |
+
end
|
env/bin/hf
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/home/jxngrx/Work/MINE_DEMO_PROECTS/Z-Image-Turbo/env/bin/python3
|
| 2 |
+
# -*- coding: utf-8 -*-
|
| 3 |
+
import re
|
| 4 |
+
import sys
|
| 5 |
+
from huggingface_hub.cli.hf import main
|
| 6 |
+
if __name__ == '__main__':
|
| 7 |
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
+
sys.exit(main())
|
env/bin/pip
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/home/jxngrx/Work/MINE_DEMO_PROECTS/Z-Image-Turbo/env/bin/python3
|
| 2 |
+
# -*- coding: utf-8 -*-
|
| 3 |
+
import re
|
| 4 |
+
import sys
|
| 5 |
+
from pip._internal.cli.main import main
|
| 6 |
+
if __name__ == '__main__':
|
| 7 |
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
+
sys.exit(main())
|
env/pyvenv.cfg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
home = /usr/bin
|
| 2 |
+
include-system-site-packages = false
|
| 3 |
+
version = 3.13.7
|
| 4 |
+
executable = /usr/bin/python3.13
|
| 5 |
+
command = /usr/bin/python3 -m venv /home/jxngrx/Work/MINE_DEMO_PROECTS/Z-Image-Turbo/env
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "FlowMatchEulerDiscreteScheduler",
|
| 3 |
+
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
+
"num_train_timesteps": 1000,
|
| 5 |
+
"use_dynamic_shifting": false,
|
| 6 |
+
"shift": 3.0
|
| 7 |
+
}
|
text_encoder/config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 2560,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 9728,
|
| 14 |
+
"max_position_embeddings": 40960,
|
| 15 |
+
"max_window_layers": 36,
|
| 16 |
+
"model_type": "qwen3",
|
| 17 |
+
"num_attention_heads": 32,
|
| 18 |
+
"num_hidden_layers": 36,
|
| 19 |
+
"num_key_value_heads": 8,
|
| 20 |
+
"rms_norm_eps": 1e-06,
|
| 21 |
+
"rope_scaling": null,
|
| 22 |
+
"rope_theta": 1000000,
|
| 23 |
+
"sliding_window": null,
|
| 24 |
+
"tie_word_embeddings": true,
|
| 25 |
+
"torch_dtype": "bfloat16",
|
| 26 |
+
"transformers_version": "4.51.0",
|
| 27 |
+
"use_cache": true,
|
| 28 |
+
"use_sliding_window": false,
|
| 29 |
+
"vocab_size": 151936
|
| 30 |
+
}
|
text_encoder/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"temperature": 0.6,
|
| 10 |
+
"top_k": 20,
|
| 11 |
+
"top_p": 0.95,
|
| 12 |
+
"transformers_version": "4.51.0"
|
| 13 |
+
}
|
text_encoder/model-00001-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d6bbd89b4d9c76f9727ec4dad64bf19ccf9fa1cf8d676ebffa9f34112c6b6d6
|
| 3 |
+
size 135
|
text_encoder/model-00002-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2f39e27cfc3ee873124c0c8c09df9591430894eae2d56225cc2331a8591f697
|
| 3 |
+
size 135
|
text_encoder/model-00003-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a3f629d0ab0c698a1cc0218e61e9e04557d52e31c9ad5b42b1569d23289cb24
|
| 3 |
+
size 133
|
text_encoder/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,405 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 8044936192
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
| 7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 12 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 18 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 19 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 20 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 21 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 22 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 23 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 24 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 29 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 30 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 31 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 32 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 33 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 34 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 35 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 36 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 40 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 41 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 42 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 43 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 44 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 45 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 46 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 47 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 51 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 52 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 53 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 54 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 55 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 56 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 57 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 58 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 59 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 62 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 63 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 64 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 65 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 66 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 67 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 68 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 69 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 70 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 73 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 74 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 75 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 76 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 77 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 78 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 79 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 80 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 84 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 85 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 86 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 87 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 88 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 89 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 90 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 91 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 93 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 94 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 95 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 96 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 97 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 98 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 99 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 100 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 101 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 102 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 103 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 104 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 105 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 106 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 107 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 108 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 109 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 110 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 111 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 112 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 113 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 115 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 116 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 117 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 118 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 119 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 120 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 121 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 122 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 123 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 124 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 125 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 126 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 127 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 128 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 129 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 130 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 131 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 132 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 133 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 134 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 135 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 139 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 140 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 141 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 142 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 143 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 144 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 145 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 146 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 147 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 148 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 149 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 150 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 151 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 152 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 153 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 154 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 155 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 156 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 157 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 161 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 162 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 163 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 164 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 165 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 166 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 167 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 168 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 169 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 170 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 171 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 172 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 173 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 174 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 175 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 176 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 177 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 178 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 179 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 180 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 181 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 182 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 183 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 184 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 185 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 186 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 187 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 188 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 189 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 190 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 191 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 192 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 193 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 194 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 195 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 196 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 197 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 198 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 199 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 200 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 201 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 202 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 203 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 204 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 205 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 206 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 207 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 208 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 209 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 210 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 211 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 212 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 213 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 214 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 215 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 216 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 217 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 218 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 219 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 220 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 221 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 222 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 223 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 224 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 225 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 226 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 227 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 228 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 229 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 230 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 231 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 232 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 233 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 234 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 235 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 236 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 237 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 238 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 239 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 240 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 241 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 242 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 243 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 244 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 245 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 246 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 247 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 248 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 249 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 250 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 251 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 252 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 253 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 254 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 255 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 256 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 257 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 258 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 259 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 260 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 261 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 262 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 263 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 264 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 265 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 271 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 272 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 273 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 274 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 275 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 276 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 277 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 278 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 279 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 280 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 281 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 282 |
+
"model.layers.31.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 283 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 284 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 285 |
+
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 286 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 287 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 288 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 289 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 290 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 291 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 292 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 293 |
+
"model.layers.32.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 294 |
+
"model.layers.32.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 295 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 296 |
+
"model.layers.32.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 297 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 298 |
+
"model.layers.32.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 299 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 300 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 301 |
+
"model.layers.32.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 302 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 303 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 304 |
+
"model.layers.33.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 305 |
+
"model.layers.33.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 306 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 307 |
+
"model.layers.33.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 308 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 309 |
+
"model.layers.33.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 310 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 311 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 312 |
+
"model.layers.33.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 313 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 314 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 315 |
+
"model.layers.34.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 316 |
+
"model.layers.34.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 317 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 318 |
+
"model.layers.34.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 319 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 320 |
+
"model.layers.34.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 321 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 322 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 323 |
+
"model.layers.34.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 324 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 325 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 326 |
+
"model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 327 |
+
"model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 328 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 329 |
+
"model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 330 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 331 |
+
"model.layers.35.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 332 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 333 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 334 |
+
"model.layers.35.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 335 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 336 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 337 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 338 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 339 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 340 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 341 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 342 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 343 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 344 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 345 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 346 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 347 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 348 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 349 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 350 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 351 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 352 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 353 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 354 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 355 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 356 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 357 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 358 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 359 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 360 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 361 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 362 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 363 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 364 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 365 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 366 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 367 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 368 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 369 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 370 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 371 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 372 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 373 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 374 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 375 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 376 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 377 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 378 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 379 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 380 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 381 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 382 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 383 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 384 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 385 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 386 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 387 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 388 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 389 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 390 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 391 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 392 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 393 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 394 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 395 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 396 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 397 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 398 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 399 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 400 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 401 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 402 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 403 |
+
"model.norm.weight": "model-00003-of-00003.safetensors"
|
| 404 |
+
}
|
| 405 |
+
}
|
transformer/config.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "ZImageTransformer2DModel",
|
| 3 |
+
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
+
"all_f_patch_size": [
|
| 5 |
+
1
|
| 6 |
+
],
|
| 7 |
+
"all_patch_size": [
|
| 8 |
+
2
|
| 9 |
+
],
|
| 10 |
+
"axes_dims": [
|
| 11 |
+
32,
|
| 12 |
+
48,
|
| 13 |
+
48
|
| 14 |
+
],
|
| 15 |
+
"axes_lens": [
|
| 16 |
+
1536,
|
| 17 |
+
512,
|
| 18 |
+
512
|
| 19 |
+
],
|
| 20 |
+
"cap_feat_dim": 2560,
|
| 21 |
+
"dim": 3840,
|
| 22 |
+
"in_channels": 16,
|
| 23 |
+
"n_heads": 30,
|
| 24 |
+
"n_kv_heads": 30,
|
| 25 |
+
"n_layers": 30,
|
| 26 |
+
"n_refiner_layers": 2,
|
| 27 |
+
"norm_eps": 1e-05,
|
| 28 |
+
"qk_norm": true,
|
| 29 |
+
"rope_theta": 256.0,
|
| 30 |
+
"t_scale": 1000.0
|
| 31 |
+
}
|
transformer/diffusion_pytorch_model-00001-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c0ec345393bca42e7a4997bd39001bf5db6a9c52bd0ed7fc0be7bea9ece6cc0
|
| 3 |
+
size 135
|
transformer/diffusion_pytorch_model.safetensors.index.json
ADDED
|
@@ -0,0 +1,528 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 24619634944
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"all_final_layer.2-1.adaLN_modulation.1.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 7 |
+
"all_final_layer.2-1.adaLN_modulation.1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 8 |
+
"all_final_layer.2-1.linear.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 9 |
+
"all_final_layer.2-1.linear.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 10 |
+
"all_x_embedder.2-1.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 11 |
+
"all_x_embedder.2-1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 12 |
+
"cap_embedder.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 13 |
+
"cap_embedder.1.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 14 |
+
"cap_embedder.1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 15 |
+
"cap_pad_token": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 16 |
+
"context_refiner.0.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 17 |
+
"context_refiner.0.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 18 |
+
"context_refiner.0.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 19 |
+
"context_refiner.0.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 20 |
+
"context_refiner.0.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 21 |
+
"context_refiner.0.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 22 |
+
"context_refiner.0.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 23 |
+
"context_refiner.0.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 24 |
+
"context_refiner.0.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 25 |
+
"context_refiner.0.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 26 |
+
"context_refiner.0.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 27 |
+
"context_refiner.0.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 28 |
+
"context_refiner.0.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 29 |
+
"context_refiner.1.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 30 |
+
"context_refiner.1.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 31 |
+
"context_refiner.1.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 32 |
+
"context_refiner.1.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 33 |
+
"context_refiner.1.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 34 |
+
"context_refiner.1.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 35 |
+
"context_refiner.1.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 36 |
+
"context_refiner.1.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 37 |
+
"context_refiner.1.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 38 |
+
"context_refiner.1.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 39 |
+
"context_refiner.1.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 40 |
+
"context_refiner.1.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 41 |
+
"context_refiner.1.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 42 |
+
"layers.0.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 43 |
+
"layers.0.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 44 |
+
"layers.0.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 45 |
+
"layers.0.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 46 |
+
"layers.0.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 47 |
+
"layers.0.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 48 |
+
"layers.0.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 49 |
+
"layers.0.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 50 |
+
"layers.0.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 51 |
+
"layers.0.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 52 |
+
"layers.0.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 53 |
+
"layers.0.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 54 |
+
"layers.0.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 55 |
+
"layers.0.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 56 |
+
"layers.0.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 57 |
+
"layers.1.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 58 |
+
"layers.1.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 59 |
+
"layers.1.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 60 |
+
"layers.1.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 61 |
+
"layers.1.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 62 |
+
"layers.1.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 63 |
+
"layers.1.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 64 |
+
"layers.1.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 65 |
+
"layers.1.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 66 |
+
"layers.1.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 67 |
+
"layers.1.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 68 |
+
"layers.1.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 69 |
+
"layers.1.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 70 |
+
"layers.1.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 71 |
+
"layers.1.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 72 |
+
"layers.10.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 73 |
+
"layers.10.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 74 |
+
"layers.10.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 75 |
+
"layers.10.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 76 |
+
"layers.10.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 77 |
+
"layers.10.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 78 |
+
"layers.10.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 79 |
+
"layers.10.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 80 |
+
"layers.10.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 81 |
+
"layers.10.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 82 |
+
"layers.10.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 83 |
+
"layers.10.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 84 |
+
"layers.10.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 85 |
+
"layers.10.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 86 |
+
"layers.10.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 87 |
+
"layers.11.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 88 |
+
"layers.11.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 89 |
+
"layers.11.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 90 |
+
"layers.11.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 91 |
+
"layers.11.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 92 |
+
"layers.11.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 93 |
+
"layers.11.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 94 |
+
"layers.11.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 95 |
+
"layers.11.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 96 |
+
"layers.11.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 97 |
+
"layers.11.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 98 |
+
"layers.11.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 99 |
+
"layers.11.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 100 |
+
"layers.11.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 101 |
+
"layers.11.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 102 |
+
"layers.12.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 103 |
+
"layers.12.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 104 |
+
"layers.12.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 105 |
+
"layers.12.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 106 |
+
"layers.12.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 107 |
+
"layers.12.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 108 |
+
"layers.12.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 109 |
+
"layers.12.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 110 |
+
"layers.12.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 111 |
+
"layers.12.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 112 |
+
"layers.12.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 113 |
+
"layers.12.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 114 |
+
"layers.12.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 115 |
+
"layers.12.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 116 |
+
"layers.12.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 117 |
+
"layers.13.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 118 |
+
"layers.13.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 119 |
+
"layers.13.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 120 |
+
"layers.13.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 121 |
+
"layers.13.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 122 |
+
"layers.13.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 123 |
+
"layers.13.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 124 |
+
"layers.13.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 125 |
+
"layers.13.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 126 |
+
"layers.13.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 127 |
+
"layers.13.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 128 |
+
"layers.13.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 129 |
+
"layers.13.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 130 |
+
"layers.13.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 131 |
+
"layers.13.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 132 |
+
"layers.14.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 133 |
+
"layers.14.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 134 |
+
"layers.14.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 135 |
+
"layers.14.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 136 |
+
"layers.14.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 137 |
+
"layers.14.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 138 |
+
"layers.14.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 139 |
+
"layers.14.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 140 |
+
"layers.14.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 141 |
+
"layers.14.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 142 |
+
"layers.14.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 143 |
+
"layers.14.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 144 |
+
"layers.14.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 145 |
+
"layers.14.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 146 |
+
"layers.14.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 147 |
+
"layers.15.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 148 |
+
"layers.15.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 149 |
+
"layers.15.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 150 |
+
"layers.15.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 151 |
+
"layers.15.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 152 |
+
"layers.15.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 153 |
+
"layers.15.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 154 |
+
"layers.15.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 155 |
+
"layers.15.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 156 |
+
"layers.15.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 157 |
+
"layers.15.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 158 |
+
"layers.15.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 159 |
+
"layers.15.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 160 |
+
"layers.15.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 161 |
+
"layers.15.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 162 |
+
"layers.16.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 163 |
+
"layers.16.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 164 |
+
"layers.16.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 165 |
+
"layers.16.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 166 |
+
"layers.16.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 167 |
+
"layers.16.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 168 |
+
"layers.16.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 169 |
+
"layers.16.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 170 |
+
"layers.16.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 171 |
+
"layers.16.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 172 |
+
"layers.16.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 173 |
+
"layers.16.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 174 |
+
"layers.16.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 175 |
+
"layers.16.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 176 |
+
"layers.16.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 177 |
+
"layers.17.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 178 |
+
"layers.17.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 179 |
+
"layers.17.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 180 |
+
"layers.17.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 181 |
+
"layers.17.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 182 |
+
"layers.17.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 183 |
+
"layers.17.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 184 |
+
"layers.17.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 185 |
+
"layers.17.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 186 |
+
"layers.17.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 187 |
+
"layers.17.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 188 |
+
"layers.17.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 189 |
+
"layers.17.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 190 |
+
"layers.17.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 191 |
+
"layers.17.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 192 |
+
"layers.18.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 193 |
+
"layers.18.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 194 |
+
"layers.18.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 195 |
+
"layers.18.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 196 |
+
"layers.18.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 197 |
+
"layers.18.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 198 |
+
"layers.18.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 199 |
+
"layers.18.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 200 |
+
"layers.18.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 201 |
+
"layers.18.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 202 |
+
"layers.18.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 203 |
+
"layers.18.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 204 |
+
"layers.18.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 205 |
+
"layers.18.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 206 |
+
"layers.18.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 207 |
+
"layers.19.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 208 |
+
"layers.19.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 209 |
+
"layers.19.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 210 |
+
"layers.19.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 211 |
+
"layers.19.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 212 |
+
"layers.19.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 213 |
+
"layers.19.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 214 |
+
"layers.19.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 215 |
+
"layers.19.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 216 |
+
"layers.19.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 217 |
+
"layers.19.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 218 |
+
"layers.19.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 219 |
+
"layers.19.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 220 |
+
"layers.19.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 221 |
+
"layers.19.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 222 |
+
"layers.2.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 223 |
+
"layers.2.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 224 |
+
"layers.2.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 225 |
+
"layers.2.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 226 |
+
"layers.2.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 227 |
+
"layers.2.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 228 |
+
"layers.2.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 229 |
+
"layers.2.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 230 |
+
"layers.2.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 231 |
+
"layers.2.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 232 |
+
"layers.2.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 233 |
+
"layers.2.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 234 |
+
"layers.2.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 235 |
+
"layers.2.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 236 |
+
"layers.2.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 237 |
+
"layers.20.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 238 |
+
"layers.20.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 239 |
+
"layers.20.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 240 |
+
"layers.20.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 241 |
+
"layers.20.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 242 |
+
"layers.20.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 243 |
+
"layers.20.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 244 |
+
"layers.20.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 245 |
+
"layers.20.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 246 |
+
"layers.20.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 247 |
+
"layers.20.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 248 |
+
"layers.20.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 249 |
+
"layers.20.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 250 |
+
"layers.20.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 251 |
+
"layers.20.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 252 |
+
"layers.21.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 253 |
+
"layers.21.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 254 |
+
"layers.21.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 255 |
+
"layers.21.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 256 |
+
"layers.21.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 257 |
+
"layers.21.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 258 |
+
"layers.21.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 259 |
+
"layers.21.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 260 |
+
"layers.21.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 261 |
+
"layers.21.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 262 |
+
"layers.21.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 263 |
+
"layers.21.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 264 |
+
"layers.21.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 265 |
+
"layers.21.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 266 |
+
"layers.21.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 267 |
+
"layers.22.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 268 |
+
"layers.22.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 269 |
+
"layers.22.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 270 |
+
"layers.22.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 271 |
+
"layers.22.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 272 |
+
"layers.22.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 273 |
+
"layers.22.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 274 |
+
"layers.22.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 275 |
+
"layers.22.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 276 |
+
"layers.22.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 277 |
+
"layers.22.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 278 |
+
"layers.22.feed_forward.w2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 279 |
+
"layers.22.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 280 |
+
"layers.22.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 281 |
+
"layers.22.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 282 |
+
"layers.23.adaLN_modulation.0.bias": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 283 |
+
"layers.23.adaLN_modulation.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 284 |
+
"layers.23.attention.norm_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 285 |
+
"layers.23.attention.norm_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 286 |
+
"layers.23.attention.to_k.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 287 |
+
"layers.23.attention.to_out.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 288 |
+
"layers.23.attention.to_q.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 289 |
+
"layers.23.attention.to_v.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 290 |
+
"layers.23.attention_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 291 |
+
"layers.23.attention_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 292 |
+
"layers.23.feed_forward.w1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 293 |
+
"layers.23.feed_forward.w2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 294 |
+
"layers.23.feed_forward.w3.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 295 |
+
"layers.23.ffn_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 296 |
+
"layers.23.ffn_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 297 |
+
"layers.24.adaLN_modulation.0.bias": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 298 |
+
"layers.24.adaLN_modulation.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 299 |
+
"layers.24.attention.norm_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 300 |
+
"layers.24.attention.norm_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 301 |
+
"layers.24.attention.to_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 302 |
+
"layers.24.attention.to_out.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 303 |
+
"layers.24.attention.to_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 304 |
+
"layers.24.attention.to_v.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 305 |
+
"layers.24.attention_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 306 |
+
"layers.24.attention_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 307 |
+
"layers.24.feed_forward.w1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 308 |
+
"layers.24.feed_forward.w2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 309 |
+
"layers.24.feed_forward.w3.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 310 |
+
"layers.24.ffn_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 311 |
+
"layers.24.ffn_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 312 |
+
"layers.25.adaLN_modulation.0.bias": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 313 |
+
"layers.25.adaLN_modulation.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 314 |
+
"layers.25.attention.norm_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 315 |
+
"layers.25.attention.norm_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 316 |
+
"layers.25.attention.to_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 317 |
+
"layers.25.attention.to_out.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 318 |
+
"layers.25.attention.to_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 319 |
+
"layers.25.attention.to_v.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 320 |
+
"layers.25.attention_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 321 |
+
"layers.25.attention_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 322 |
+
"layers.25.feed_forward.w1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 323 |
+
"layers.25.feed_forward.w2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 324 |
+
"layers.25.feed_forward.w3.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 325 |
+
"layers.25.ffn_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 326 |
+
"layers.25.ffn_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 327 |
+
"layers.26.adaLN_modulation.0.bias": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 328 |
+
"layers.26.adaLN_modulation.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 329 |
+
"layers.26.attention.norm_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 330 |
+
"layers.26.attention.norm_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 331 |
+
"layers.26.attention.to_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 332 |
+
"layers.26.attention.to_out.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 333 |
+
"layers.26.attention.to_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 334 |
+
"layers.26.attention.to_v.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 335 |
+
"layers.26.attention_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 336 |
+
"layers.26.attention_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 337 |
+
"layers.26.feed_forward.w1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 338 |
+
"layers.26.feed_forward.w2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 339 |
+
"layers.26.feed_forward.w3.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 340 |
+
"layers.26.ffn_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 341 |
+
"layers.26.ffn_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 342 |
+
"layers.27.adaLN_modulation.0.bias": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 343 |
+
"layers.27.adaLN_modulation.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 344 |
+
"layers.27.attention.norm_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 345 |
+
"layers.27.attention.norm_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 346 |
+
"layers.27.attention.to_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 347 |
+
"layers.27.attention.to_out.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 348 |
+
"layers.27.attention.to_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 349 |
+
"layers.27.attention.to_v.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 350 |
+
"layers.27.attention_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 351 |
+
"layers.27.attention_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 352 |
+
"layers.27.feed_forward.w1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 353 |
+
"layers.27.feed_forward.w2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 354 |
+
"layers.27.feed_forward.w3.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 355 |
+
"layers.27.ffn_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 356 |
+
"layers.27.ffn_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 357 |
+
"layers.28.adaLN_modulation.0.bias": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 358 |
+
"layers.28.adaLN_modulation.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 359 |
+
"layers.28.attention.norm_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 360 |
+
"layers.28.attention.norm_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 361 |
+
"layers.28.attention.to_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 362 |
+
"layers.28.attention.to_out.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 363 |
+
"layers.28.attention.to_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 364 |
+
"layers.28.attention.to_v.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 365 |
+
"layers.28.attention_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 366 |
+
"layers.28.attention_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 367 |
+
"layers.28.feed_forward.w1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 368 |
+
"layers.28.feed_forward.w2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 369 |
+
"layers.28.feed_forward.w3.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 370 |
+
"layers.28.ffn_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 371 |
+
"layers.28.ffn_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 372 |
+
"layers.29.adaLN_modulation.0.bias": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 373 |
+
"layers.29.adaLN_modulation.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 374 |
+
"layers.29.attention.norm_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 375 |
+
"layers.29.attention.norm_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 376 |
+
"layers.29.attention.to_k.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 377 |
+
"layers.29.attention.to_out.0.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 378 |
+
"layers.29.attention.to_q.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 379 |
+
"layers.29.attention.to_v.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 380 |
+
"layers.29.attention_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 381 |
+
"layers.29.attention_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 382 |
+
"layers.29.feed_forward.w1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 383 |
+
"layers.29.feed_forward.w2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 384 |
+
"layers.29.feed_forward.w3.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 385 |
+
"layers.29.ffn_norm1.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 386 |
+
"layers.29.ffn_norm2.weight": "diffusion_pytorch_model-00003-of-00003.safetensors",
|
| 387 |
+
"layers.3.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 388 |
+
"layers.3.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 389 |
+
"layers.3.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 390 |
+
"layers.3.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 391 |
+
"layers.3.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 392 |
+
"layers.3.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 393 |
+
"layers.3.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 394 |
+
"layers.3.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 395 |
+
"layers.3.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 396 |
+
"layers.3.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 397 |
+
"layers.3.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 398 |
+
"layers.3.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 399 |
+
"layers.3.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 400 |
+
"layers.3.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 401 |
+
"layers.3.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 402 |
+
"layers.4.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 403 |
+
"layers.4.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 404 |
+
"layers.4.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 405 |
+
"layers.4.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 406 |
+
"layers.4.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 407 |
+
"layers.4.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 408 |
+
"layers.4.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 409 |
+
"layers.4.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 410 |
+
"layers.4.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 411 |
+
"layers.4.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 412 |
+
"layers.4.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 413 |
+
"layers.4.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 414 |
+
"layers.4.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 415 |
+
"layers.4.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 416 |
+
"layers.4.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 417 |
+
"layers.5.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 418 |
+
"layers.5.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 419 |
+
"layers.5.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 420 |
+
"layers.5.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 421 |
+
"layers.5.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 422 |
+
"layers.5.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 423 |
+
"layers.5.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 424 |
+
"layers.5.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 425 |
+
"layers.5.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 426 |
+
"layers.5.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 427 |
+
"layers.5.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 428 |
+
"layers.5.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 429 |
+
"layers.5.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 430 |
+
"layers.5.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 431 |
+
"layers.5.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 432 |
+
"layers.6.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 433 |
+
"layers.6.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 434 |
+
"layers.6.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 435 |
+
"layers.6.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 436 |
+
"layers.6.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 437 |
+
"layers.6.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 438 |
+
"layers.6.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 439 |
+
"layers.6.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 440 |
+
"layers.6.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 441 |
+
"layers.6.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 442 |
+
"layers.6.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 443 |
+
"layers.6.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 444 |
+
"layers.6.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 445 |
+
"layers.6.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 446 |
+
"layers.6.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 447 |
+
"layers.7.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 448 |
+
"layers.7.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 449 |
+
"layers.7.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 450 |
+
"layers.7.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 451 |
+
"layers.7.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 452 |
+
"layers.7.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 453 |
+
"layers.7.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 454 |
+
"layers.7.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 455 |
+
"layers.7.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 456 |
+
"layers.7.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 457 |
+
"layers.7.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 458 |
+
"layers.7.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 459 |
+
"layers.7.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 460 |
+
"layers.7.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 461 |
+
"layers.7.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 462 |
+
"layers.8.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 463 |
+
"layers.8.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 464 |
+
"layers.8.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 465 |
+
"layers.8.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 466 |
+
"layers.8.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 467 |
+
"layers.8.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 468 |
+
"layers.8.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 469 |
+
"layers.8.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 470 |
+
"layers.8.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 471 |
+
"layers.8.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 472 |
+
"layers.8.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 473 |
+
"layers.8.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 474 |
+
"layers.8.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 475 |
+
"layers.8.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 476 |
+
"layers.8.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 477 |
+
"layers.9.adaLN_modulation.0.bias": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 478 |
+
"layers.9.adaLN_modulation.0.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 479 |
+
"layers.9.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 480 |
+
"layers.9.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 481 |
+
"layers.9.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 482 |
+
"layers.9.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 483 |
+
"layers.9.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 484 |
+
"layers.9.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 485 |
+
"layers.9.attention_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 486 |
+
"layers.9.attention_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 487 |
+
"layers.9.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 488 |
+
"layers.9.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 489 |
+
"layers.9.feed_forward.w3.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 490 |
+
"layers.9.ffn_norm1.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 491 |
+
"layers.9.ffn_norm2.weight": "diffusion_pytorch_model-00002-of-00003.safetensors",
|
| 492 |
+
"noise_refiner.0.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 493 |
+
"noise_refiner.0.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 494 |
+
"noise_refiner.0.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 495 |
+
"noise_refiner.0.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 496 |
+
"noise_refiner.0.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 497 |
+
"noise_refiner.0.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 498 |
+
"noise_refiner.0.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 499 |
+
"noise_refiner.0.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 500 |
+
"noise_refiner.0.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 501 |
+
"noise_refiner.0.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 502 |
+
"noise_refiner.0.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 503 |
+
"noise_refiner.0.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 504 |
+
"noise_refiner.0.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 505 |
+
"noise_refiner.0.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 506 |
+
"noise_refiner.0.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 507 |
+
"noise_refiner.1.adaLN_modulation.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 508 |
+
"noise_refiner.1.adaLN_modulation.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 509 |
+
"noise_refiner.1.attention.norm_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 510 |
+
"noise_refiner.1.attention.norm_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 511 |
+
"noise_refiner.1.attention.to_k.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 512 |
+
"noise_refiner.1.attention.to_out.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 513 |
+
"noise_refiner.1.attention.to_q.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 514 |
+
"noise_refiner.1.attention.to_v.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 515 |
+
"noise_refiner.1.attention_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 516 |
+
"noise_refiner.1.attention_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 517 |
+
"noise_refiner.1.feed_forward.w1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 518 |
+
"noise_refiner.1.feed_forward.w2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 519 |
+
"noise_refiner.1.feed_forward.w3.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 520 |
+
"noise_refiner.1.ffn_norm1.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 521 |
+
"noise_refiner.1.ffn_norm2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 522 |
+
"t_embedder.mlp.0.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 523 |
+
"t_embedder.mlp.0.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 524 |
+
"t_embedder.mlp.2.bias": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 525 |
+
"t_embedder.mlp.2.weight": "diffusion_pytorch_model-00001-of-00003.safetensors",
|
| 526 |
+
"x_pad_token": "diffusion_pytorch_model-00001-of-00003.safetensors"
|
| 527 |
+
}
|
| 528 |
+
}
|
upload_code.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from huggingface_hub import login, upload_folder
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
login()
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
upload_folder(folder_path=".", repo_id="not-pegasus/IMAGE_MODAL", repo_type="model")
|
vae/config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKL",
|
| 3 |
+
"_diffusers_version": "0.36.0.dev0",
|
| 4 |
+
"_name_or_path": "flux-dev",
|
| 5 |
+
"act_fn": "silu",
|
| 6 |
+
"block_out_channels": [
|
| 7 |
+
128,
|
| 8 |
+
256,
|
| 9 |
+
512,
|
| 10 |
+
512
|
| 11 |
+
],
|
| 12 |
+
"down_block_types": [
|
| 13 |
+
"DownEncoderBlock2D",
|
| 14 |
+
"DownEncoderBlock2D",
|
| 15 |
+
"DownEncoderBlock2D",
|
| 16 |
+
"DownEncoderBlock2D"
|
| 17 |
+
],
|
| 18 |
+
"force_upcast": true,
|
| 19 |
+
"in_channels": 3,
|
| 20 |
+
"latent_channels": 16,
|
| 21 |
+
"latents_mean": null,
|
| 22 |
+
"latents_std": null,
|
| 23 |
+
"layers_per_block": 2,
|
| 24 |
+
"mid_block_add_attention": true,
|
| 25 |
+
"norm_num_groups": 32,
|
| 26 |
+
"out_channels": 3,
|
| 27 |
+
"sample_size": 1024,
|
| 28 |
+
"scaling_factor": 0.3611,
|
| 29 |
+
"shift_factor": 0.1159,
|
| 30 |
+
"up_block_types": [
|
| 31 |
+
"UpDecoderBlock2D",
|
| 32 |
+
"UpDecoderBlock2D",
|
| 33 |
+
"UpDecoderBlock2D",
|
| 34 |
+
"UpDecoderBlock2D"
|
| 35 |
+
],
|
| 36 |
+
"use_post_quant_conv": false,
|
| 37 |
+
"use_quant_conv": false
|
| 38 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:463ff8c6e86d75cf837f8adb92fd83259f7b38030680e4c3554f416bb11ece46
|
| 3 |
+
size 134
|