├── .gitignore ├── README.md ├── app.py ├── images ├── dreambooth-webui.png ├── huggingface-token.png └── setup-sd-model.png ├── language └── en_US.json ├── requirements.txt ├── sd-men-prompts.json ├── sd-women-prompts.json ├── setup-stable-diffusion.sh ├── start-other-services.sh ├── start.sh ├── static ├── css │ └── style.css ├── img │ └── wedo-logo.png └── js │ └── countdown.js ├── stop-other-services.sh ├── templates ├── index.html ├── messages.html ├── setup.html └── txt2img.html └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/app.py -------------------------------------------------------------------------------- /images/dreambooth-webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/images/dreambooth-webui.png -------------------------------------------------------------------------------- /images/huggingface-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/images/huggingface-token.png -------------------------------------------------------------------------------- /images/setup-sd-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/images/setup-sd-model.png -------------------------------------------------------------------------------- /language/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/language/en_US.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /sd-men-prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/sd-men-prompts.json -------------------------------------------------------------------------------- /sd-women-prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/sd-women-prompts.json -------------------------------------------------------------------------------- /setup-stable-diffusion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/setup-stable-diffusion.sh -------------------------------------------------------------------------------- /start-other-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/start-other-services.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/start.sh -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/wedo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/static/img/wedo-logo.png -------------------------------------------------------------------------------- /static/js/countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/static/js/countdown.js -------------------------------------------------------------------------------- /stop-other-services.sh: -------------------------------------------------------------------------------- 1 | sudo systemctl stop stable-diffusion.service -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/templates/messages.html -------------------------------------------------------------------------------- /templates/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/templates/setup.html -------------------------------------------------------------------------------- /templates/txt2img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/templates/txt2img.html -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlgira/dreambooth-webui/HEAD/train.py --------------------------------------------------------------------------------