hearmeneigh commited on
Commit
c410aea
1 Parent(s): 69b85ec

Create AUTOCOMPLETE.md

Browse files
Files changed (1) hide show
  1. AUTOCOMPLETE.md +32 -0
AUTOCOMPLETE.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Tag Autocomplete
2
+
3
+ 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:
4
+
5
+ 1. Download [`rising-v3.csv`](https://huggingface.co/datasets/hearmeneigh/e621-rising-v3-preliminary-data/resolve/main/rising-v3.csv) and copy it to `<stable-diffusion-webui>/extensions/a1111-sd-webui-tagcomplete/tags`
6
+ 2. In WebUI, navigate to `Settings > Tag Autocomplete`
7
+ 3. Select `rising-v3.csv` as the `Tag filename`
8
+ 4. Restart WebUI
9
+ 5. For more information, [see here](https://github.com/DominikDoom/a1111-sd-webui-tagcomplete/blob/main/README.md).
10
+
11
+
12
+ ### Configuring Colors
13
+
14
+ This is an optional convenience setting.
15
+
16
+ 1. In the same settings view from above, scroll down to `configure colors`.
17
+ 1. Add the following to the JSON object:
18
+
19
+ ```json
20
+ "rising-v3": {
21
+ "-1": ["red", "maroon"],
22
+ "0": ["lightblue", "dodgerblue"],
23
+ "1": ["gold", "goldenrod"],
24
+ "3": ["violet", "darkorchid"],
25
+ "4": ["lightgreen", "darkgreen"],
26
+ "5": ["tomato", "darksalmon"],
27
+ "6": ["red", "maroon"],
28
+ "7": ["whitesmoke", "black"],
29
+ "8": ["seagreen", "darkseagreen"]
30
+ }
31
+ ```
32
+