# Using with Stable Diffusion WebUI ## Setting Up 1. Download [`sd21-e621-rising-v2-epoch29.fp16.safetensors`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v2/resolve/main/sd21-e621-rising-v2-epoch-29.fp16.safetensors) and [`sd21-e621-rising-v2-epoch29.fp16.yaml`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v2/resolve/main/sd21-e621-rising-v2-epoch-29.fp16.yaml) and copy them to `/models/Stable-diffusion` 3. Reload WebUI checkpoints 4. 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-v2.csv`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v2/resolve/main/guides/autocomplete/rising-v2.csv) and copy it to `/extensions/a1111-sd-webui-tagcomplete/tags` 2. Download [`config.json`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v2/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-v2.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"] } ```