easydiffusion/README.md

50 lines
3.4 KiB
Markdown
Raw Normal View History

2022-08-24 09:43:50 +02:00
A simple way to install and use [Stable Diffusion](https://replicate.com/stability-ai/stable-diffusion) on your local computer. Provides a browser UI for generating images from text prompts. Just enter your text prompt, and see the generated image.
2022-08-23 22:28:18 +02:00
2022-08-24 07:28:22 +02:00
# What does this do?
Two things:
1. Automatically downloads and installs Stable Diffusion on your local computer (no need to mess with conda or environments)
2. Gives you a simple browser-based UI to talk to your local Stable Diffusion. Enter text prompts and view the generated image. No API keys required.
2022-08-23 22:45:07 +02:00
All the processing will happen on your local computer, it does not transmit your prompts or process on any remote server.
![Screenshot of tool](shot-v1.jpg?raw=true)
2022-08-23 22:28:18 +02:00
# System Requirements
2022-08-24 17:20:16 +02:00
1. Requires [Docker](https://docs.docker.com/engine/install/), [docker-compose v1.29](https://docs.docker.com/compose/install/), [nvidia-container-toolkit](https://stackoverflow.com/a/58432877) and [Python](https://www.python.org/downloads/) (3.6 or higher).
2022-08-24 07:28:22 +02:00
2. Linux or Windows 11 (with [WSL](https://docs.microsoft.com/en-us/windows/wsl/install)). Basically if your system can run [Stable Diffusion](https://replicate.com/stability-ai/stable-diffusion).
2022-08-23 22:28:18 +02:00
# Installation
2022-08-23 22:57:42 +02:00
1. Download [Quick UI](https://github.com/cmdr2/stable-diffusion-ui/archive/refs/heads/main.zip) (this project)
2022-08-23 22:28:18 +02:00
2. Unzip: `unzip main.zip`
2022-08-23 22:58:24 +02:00
3. Enter: `cd stable-diffusion-ui-main`
2022-08-24 17:19:50 +02:00
4. Run: `docker-compose up` (warning: this will take some time during the first run, since it'll download Stable Diffusion's [docker image](https://replicate.com/stability-ai/stable-diffusion), nearly 17 GiB)
5. Open http://localhost:8000 in your browser
2022-08-23 22:28:18 +02:00
# Usage
2022-08-24 17:19:50 +02:00
1. Open http://localhost:8000 in your browser (after running `docker-compose up` from step 4 previously)
2022-08-23 22:28:18 +02:00
2. Enter a text prompt, like `a photograph of an astronaut riding a horse` in the textbox.
2022-08-24 09:39:36 +02:00
3. Press `Make Image`. This will take some time, depending on your system's processing power.
2022-08-23 22:28:18 +02:00
4. See the image generated using your prompt. If there's an error, the status message at the top will show 'error' in red.
2022-08-24 12:19:41 +02:00
Please [let me know](mailto:sd@cmdr2.org) if this worked (or didn't) for you!
# Advanced Settings
You can also set the configuration like `seed`, `width`, `height`, `num_outputs`, `num_inference_steps` and `guidance_scale` using the 'show' button next to 'Advanced settings'.
Use the same `seed` number to get the same image for a certain prompt. This is useful for refining a prompt without losing the basic image design. Use a seed of `-1` to get random images.
![Screenshot of advanced settings](config-v1.jpg?raw=true)
2022-08-24 07:28:22 +02:00
# Behind the scenes
This project is a quick way to get started with Stable Diffusion. You do not need to have Stable Diffusion already installed, and do not need any API keys. This project will automatically download Stable Diffusion's docker image, the first time it is run.
This project runs Stable Diffusion in a docker container behind the scenes, using Stable Diffusion's [official Docker image](https://replicate.com/stability-ai/stable-diffusion) on replicate.com.
2022-08-23 22:28:18 +02:00
# Bugs reports and code contributions welcome
2022-08-24 09:35:33 +02:00
This was built in a few hours for fun. So if there are any problems or suggestions, please feel free to [email me](mailto:sd@cmdr2.org) or [file an issue](https://github.com/cmdr2/stable-diffusion-ui/issues).
2022-08-23 22:28:18 +02:00
2022-08-24 07:28:22 +02:00
Also, please feel free to submit a pull request, if you have any code contributions in mind.
2022-08-23 22:45:07 +02:00
# Disclaimer
2022-08-24 14:06:19 +02:00
I am not responsible for any images generated using this interface.