├── .dockerignore ├── .github └── workflows │ ├── docker-publish.yml │ └── docker-publish.yml.orig ├── .gitignore ├── Dockerfile ├── Dockerfile.models ├── README.md ├── README_cn.md ├── latent.ipynb ├── latent.ipynb.orig ├── latent.py ├── majesty.py ├── previous_versions └── latent_v1_3.ipynb ├── requirements.txt └── v.ipynb /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/.github/workflows/docker-publish.yml.orig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | models -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.models: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/README_cn.md -------------------------------------------------------------------------------- /latent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/latent.ipynb -------------------------------------------------------------------------------- /latent.ipynb.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/latent.ipynb.orig -------------------------------------------------------------------------------- /latent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/latent.py -------------------------------------------------------------------------------- /majesty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/majesty.py -------------------------------------------------------------------------------- /previous_versions/latent_v1_3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/previous_versions/latent_v1_3.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/requirements.txt -------------------------------------------------------------------------------- /v.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareAI/majesty-diffusion/HEAD/v.ipynb --------------------------------------------------------------------------------