easydiffusion/README.md

80 lines
5.4 KiB
Markdown
Raw Normal View History

2022-08-26 03:54:38 +02:00
# Stable Diffusion UI
2022-08-26 03:59:08 +02:00
### A simple way to install and use [Stable Diffusion](https://replicate.com/stability-ai/stable-diffusion) on your own computer
2022-08-26 03:54:38 +02:00
2022-09-01 08:31:56 +02:00
[![Discord Server](https://badgen.net/badge/icon/discord?icon=discord&label)](https://discord.com/invite/u9yhsFmEkB) (for support, and development discussion)
2022-09-01 08:29:46 +02:00
2022-08-26 03:54:38 +02:00
---
2022-08-23 22:28:18 +02:00
2022-08-24 07:28:22 +02:00
# What does this do?
Two things:
2022-08-26 03:59:08 +02:00
1. Automatically downloads and installs Stable Diffusion on your own computer (no need to mess with conda or environments)
2022-08-24 07:28:22 +02:00
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
2022-08-26 03:59:08 +02:00
All the processing will happen on your computer locally, it does not transmit your prompts or process on any remote server.
2022-08-23 22:45:07 +02:00
<img src="https://github.com/cmdr2/stable-diffusion-ui/raw/main/media/shot-v8.jpg" height="600" />
2022-08-26 16:23:10 +02:00
2022-08-23 22:28:18 +02:00
# System Requirements
2022-08-25 07:36:46 +02:00
1. Computer capable of running Stable Diffusion.
2022-08-25 07:37:21 +02:00
2. Linux or Windows 11 (with [WSL](https://docs.microsoft.com/en-us/windows/wsl/install)) or Windows 10 v2004+ (Build 19041+) with [WSL](https://docs.microsoft.com/en-us/windows/wsl/install).
2022-08-25 07:38:14 +02:00
3. Requires (a) [Docker](https://docs.docker.com/engine/install/), (b) [docker-compose v1.29](https://docs.docker.com/compose/install/), and (c) [nvidia-container-toolkit](https://stackoverflow.com/a/58432877).
2022-08-23 22:28:18 +02:00
2022-08-24 20:42:32 +02:00
**Important:** If you're using Windows, please install docker inside your [WSL](https://docs.microsoft.com/en-us/windows/wsl/install)'s Linux. Install docker for the Linux distro in your WSL. **Don't install Docker for Windows.**
2022-08-23 22:28:18 +02:00
# Installation
2022-08-25 19:59:03 +02:00
1. Clone this repository: `git clone https://github.com/cmdr2/stable-diffusion-ui.git` or [download the zip file](https://github.com/cmdr2/stable-diffusion-ui/archive/refs/heads/main.zip) and unzip.
2. Open your terminal, and in the project directory 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)
3. Open http://localhost:9000 in your browser. That's it!
2022-08-23 22:28:18 +02:00
2022-08-26 19:23:42 +02:00
If you're getting errors, please check the [Troubleshooting](https://github.com/cmdr2/stable-diffusion-ui/wiki/Troubleshooting) page.
2022-08-25 07:44:13 +02:00
To stop the server, please run `docker-compose down`
2022-08-26 03:45:19 +02:00
2022-08-23 22:28:18 +02:00
# Usage
Open http://localhost:9000 in your browser (after running `docker-compose up &` from step 2 previously).
2022-08-26 03:45:19 +02:00
## With a text description
1. Enter a text prompt, like `a photograph of an astronaut riding a horse` in the textbox.
2. Press `Make Image`. This will take some time, depending on your system's processing power.
3. See the image generated using your prompt.
## With an image
1. Click `Browse..` next to `Initial Image`. Select your desired image.
2. An optional text prompt can help you further describe the kind of image you want to generate.
3. Press `Make Image`. See the image generated using your prompt.
2022-08-25 20:39:54 +02:00
2022-08-26 15:34:04 +02:00
You can also set an `Image Mask` for telling Stable Diffusion to draw in only the black areas in your image mask. White areas in your mask will be ignored.
2022-08-25 20:39:54 +02:00
**Pro tip:** You can also click `Use as Input` on a generated image, to use it as the input image for your next generation. This can be useful for sequentially refining the generated image with a single click.
2022-08-23 22:28:18 +02:00
2022-08-26 03:45:19 +02:00
**Another tip:** Images with the same aspect ratio of your generated image work best. E.g. 1:1 if you're generating images sized 512x512.
2022-08-24 12:19:41 +02:00
2022-08-26 03:45:19 +02:00
## Problems?
Please [file an issue](https://github.com/cmdr2/stable-diffusion-ui/issues) if this did not work for you (after trying the common [troubleshooting](#troubleshooting) steps)!
2022-08-24 17:37:42 +02:00
# 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'.
2022-08-25 20:39:54 +02:00
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. Enable the `random images` checkbox to get random images.
2022-08-31 08:55:03 +02:00
![Screenshot of advanced settings](media/config-v4.jpg?raw=true)
2022-08-25 07:36:46 +02:00
# Troubleshooting
2022-08-26 19:23:42 +02:00
The [Troubleshooting wiki page](https://github.com/cmdr2/stable-diffusion-ui/wiki/Troubleshooting) contains some common errors and their solutions. Please check that, and if it doesn't work, feel free to [file an issue](https://github.com/cmdr2/stable-diffusion-ui/issues).
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.
2022-08-24 18:56:42 +02:00
This project runs Stable Diffusion in a docker container behind the scenes, using Stable Diffusion's [Docker image](https://replicate.com/stability-ai/stable-diffusion) on replicate.com.
2022-08-24 07:28:22 +02:00
2022-08-23 22:28:18 +02:00
# Bugs reports and code contributions welcome
2022-08-25 11:31:09 +02:00
If there are any problems or suggestions, please feel free to [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-25 14:46:24 +02:00
The authors of this project are not responsible for any content generated using this interface.
2022-08-25 19:59:03 +02:00
This license of this software forbids you from sharing any content that violates any laws, produce any harm to a person, disseminate any personal information that would be meant for harm, spread misinformation and target vulnerable groups. For the full list of restrictions please read [the license](LICENSE).