hearmeneigh commited on
Commit
786ca45
1 Parent(s): 0de0af1

Create WEBUI.md

Browse files
Files changed (1) hide show
  1. guides/WEBUI.md +45 -0
guides/WEBUI.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Using with Stable Diffusion WebUI
2
+
3
+ ## Setting Up
4
+ 1. Download [`sd21-e621-rising-v2-epoch29.ckpt`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v2/resolve/main/sd21-e621-rising-v2-epoch-29.ckpt) and [`sd21-e621-rising-v2-epoch29.yaml`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v2/resolve/main/sd21-e621-rising-v2-epoch-29.yaml) and
5
+ copy them to `<stable-diffusion-webui>/models/Stable-diffusion`
6
+ 2. Reload WebUI checkpoints
7
+ 3. For more information, [see here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#basic-models).
8
+
9
+
10
+ ## Tag Autocomplete
11
+
12
+ 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:
13
+
14
+ 1. Download [`rising.csv`](https://huggingface.co/hearmeneigh/sd21-e621-rising-v2/resolve/main/guides/autocomplete/rising.csv) and copy it to `<stable-diffusion-webui>/extensions/a1111-sd-webui-tagcomplete/tags`
15
+ 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`
16
+ 3. Restart WebUI
17
+ 4. For more information, [see here](https://github.com/DominikDoom/a1111-sd-webui-tagcomplete/blob/main/README.md).
18
+
19
+
20
+ ### Recommended Tag Autocomplete Config
21
+
22
+ (Ignore this if using `config.json` from above)
23
+
24
+ Make the following changes to `<stable-diffusion-webui>/extensions/a1111-sd-webui-tagcomplete/tags/config.json`:
25
+
26
+ 1. Set `tagFile` to `"rising.csv"`
27
+ 2. Set `replaceUnderscores` to `false`
28
+ 3. Set `escapeParentheses` to `true`
29
+ 4. Set `appendComma` to `true`
30
+ 5. Add the following to `colors`:
31
+
32
+ ```json
33
+ "rising": {
34
+ "-1": ["red", "maroon"],
35
+ "0": ["lightblue", "dodgerblue"],
36
+ "1": ["gold", "goldenrod"],
37
+ "3": ["violet", "darkorchid"],
38
+ "4": ["lightgreen", "darkgreen"],
39
+ "5": ["tomato", "darksalmon"],
40
+ "6": ["red", "maroon"],
41
+ "7": ["whitesmoke", "black"],
42
+ "8": ["seagreen", "darkseagreen"]
43
+ }
44
+ ```
45
+