# Using with Stable Diffusion WebUI ## Setting Up 1. Download [`sd21-e621-rising-v1-epoch19.ckpt`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v1-ckpt/resolve/main/sd21-e621-rising-v1-epoch19.ckpt) and [`sd21-e621-rising-v1-epoch19.yaml`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v1-ckpt/resolve/main/sd21-e621-rising-v1-epoch19.yaml) and copy them to `/models/Stable-diffusion` 2. Reload WebUI checkpoints 3. For more information, [see here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#basic-models). ## Tag Autocomplete If you use [`a1111-sd-webui-tagcomplete`](https://github.com/DominikDoom/a1111-sd-webui-tagcomplete/blob/main/README.md), you can configure it to use E621 Rising's tags like this: 1. Download [`rising.csv`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v1/resolve/main/guides/autocomplete/rising.csv) and copy it to `/extensions/a1111-sd-webui-tagcomplete/tags` 2. Download [`config.json`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v1/resolve/main/guides/autocomplete/config.json) and copy it to `/extensions/a1111-sd-webui-tagcomplete/tags` 3. Restart WebUI 4. For more information, [see here](https://github.com/DominikDoom/a1111-sd-webui-tagcomplete/blob/main/README.md). ### Recommended Tag Autocomplete Config (Ignore this if using `config.json` from above) Make the following changes to `/extensions/a1111-sd-webui-tagcomplete/tags/config.json`: 1. Set `tagFile` to `"rising.csv"` 2. Set `replaceUnderscores` to `false` 3. Set `escapeParentheses` to `true` 4. Set `appendComma` to `true` 5. Add the following to `colors`: ```json "rising": { "-1": ["red", "maroon"], "0": ["lightblue", "dodgerblue"], "1": ["gold", "goldenrod"], "3": ["violet", "darkorchid"], "4": ["lightgreen", "darkgreen"], "5": ["tomato", "darksalmon"], "6": ["red", "maroon"], "7": ["whitesmoke", "black"], "8": ["seagreen", "darkseagreen"] } ```