├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── comfy_latent_interposer.py ├── config ├── ca-to-v1.yaml ├── ca-to-v3.yaml ├── ca-to-xl.yaml ├── fx-to-v1.yaml ├── fx-to-v3.yaml ├── fx-to-xl.yaml ├── v1-to-v3.yaml ├── v1-to-xl.yaml ├── v3-to-v1.yaml ├── v3-to-xl.yaml ├── xl-to-v1.yaml └── xl-to-v3.yaml ├── dataset.py ├── interposer.py ├── pyproject.toml ├── train.py └── vae.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/__init__.py -------------------------------------------------------------------------------- /comfy_latent_interposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/comfy_latent_interposer.py -------------------------------------------------------------------------------- /config/ca-to-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/ca-to-v1.yaml -------------------------------------------------------------------------------- /config/ca-to-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/ca-to-v3.yaml -------------------------------------------------------------------------------- /config/ca-to-xl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/ca-to-xl.yaml -------------------------------------------------------------------------------- /config/fx-to-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/fx-to-v1.yaml -------------------------------------------------------------------------------- /config/fx-to-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/fx-to-v3.yaml -------------------------------------------------------------------------------- /config/fx-to-xl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/fx-to-xl.yaml -------------------------------------------------------------------------------- /config/v1-to-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/v1-to-v3.yaml -------------------------------------------------------------------------------- /config/v1-to-xl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/v1-to-xl.yaml -------------------------------------------------------------------------------- /config/v3-to-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/v3-to-v1.yaml -------------------------------------------------------------------------------- /config/v3-to-xl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/v3-to-xl.yaml -------------------------------------------------------------------------------- /config/xl-to-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/xl-to-v1.yaml -------------------------------------------------------------------------------- /config/xl-to-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/config/xl-to-v3.yaml -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/dataset.py -------------------------------------------------------------------------------- /interposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/interposer.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/train.py -------------------------------------------------------------------------------- /vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/city96/SD-Latent-Interposer/HEAD/vae.py --------------------------------------------------------------------------------