File size: 2,159 Bytes
786ca45
 
 
0412079
786ca45
0412079
 
786ca45
 
 
 
 
 
dea7d76
786ca45
 
 
 
 
 
 
 
 
 
 
dea7d76
786ca45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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 `<stable-diffusion-webui>/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 `<stable-diffusion-webui>/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 `<stable-diffusion-webui>/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 `<stable-diffusion-webui>/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"]
    }
    ```