|
## 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-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` |
|
2. In WebUI, navigate to `Settings > Tag Autocomplete` |
|
3. Select `rising-v3.csv` as the `Tag filename` |
|
4. Restart WebUI |
|
5. For more information, [see here](https://github.com/DominikDoom/a1111-sd-webui-tagcomplete/blob/main/README.md). |
|
|
|
|
|
### Configuring Colors |
|
|
|
This is an optional convenience setting. |
|
|
|
1. In the same settings view from above, scroll down to `configure colors`. |
|
1. Add the following to the JSON object: |
|
|
|
```json |
|
"rising-v3": { |
|
"-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"] |
|
} |
|
``` |
|
|
|
|