You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: You think somethings is broken in the UI
3
+
title: "[Bug]: "
4
+
labels: ["bug-report"]
5
+
6
+
body:
7
+
- type: checkboxes
8
+
attributes:
9
+
label: Is there an existing issue for this?
10
+
description: Please search to see if an issue already exists for the bug you encountered, and that it hasn't been fixed in a recent build/commit.
11
+
options:
12
+
- label: I have searched the existing issues and checked the recent builds/commits
13
+
required: true
14
+
- type: markdown
15
+
attributes:
16
+
value: |
17
+
*Please fill this form with as much information as possible, don't forget to fill "What OS..." and "What browsers" and *provide screenshots if possible**
18
+
- type: textarea
19
+
id: what-did
20
+
attributes:
21
+
label: What happened?
22
+
description: Tell us what happened in a very clear and simple way
23
+
validations:
24
+
required: true
25
+
- type: textarea
26
+
id: steps
27
+
attributes:
28
+
label: Steps to reproduce the problem
29
+
description: Please provide us with precise step by step information on how to reproduce the bug
30
+
value: |
31
+
1. Go to ....
32
+
2. Press ....
33
+
3. ...
34
+
validations:
35
+
required: true
36
+
- type: textarea
37
+
id: what-should
38
+
attributes:
39
+
label: What should have happened?
40
+
description: tell what you think the normal behavior should be
41
+
validations:
42
+
required: true
43
+
- type: input
44
+
id: commit
45
+
attributes:
46
+
label: Commit where the problem happens
47
+
description: Which commit are you running ? (copy the **Commit hash** shown in the cmd/terminal when you launch the UI)
48
+
validations:
49
+
required: true
50
+
- type: dropdown
51
+
id: platforms
52
+
attributes:
53
+
label: What platforms do you use to access UI ?
54
+
multiple: true
55
+
options:
56
+
- Windows
57
+
- Linux
58
+
- MacOS
59
+
- iOS
60
+
- Android
61
+
- Other/Cloud
62
+
- type: dropdown
63
+
id: browsers
64
+
attributes:
65
+
label: What browsers do you use to access the UI ?
66
+
multiple: true
67
+
options:
68
+
- Mozilla Firefox
69
+
- Google Chrome
70
+
- Brave
71
+
- Apple Safari
72
+
- Microsoft Edge
73
+
- type: textarea
74
+
id: cmdargs
75
+
attributes:
76
+
label: Command Line Arguments
77
+
description: Are you using any launching parameters/command line arguments (modified webui-user.py) ? If yes, please write them below
78
+
render: Shell
79
+
- type: textarea
80
+
id: misc
81
+
attributes:
82
+
label: Additional information, context and logs
83
+
description: Please provide us with any relevant additional info, context or log output.
Copy file name to clipboardExpand all lines: README.md
+41-8Lines changed: 41 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ Check the [custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-web
11
11
- One click install and run script (but you still must install python and git)
12
12
- Outpainting
13
13
- Inpainting
14
+
- Color Sketch
14
15
- Prompt Matrix
15
16
- Stable Diffusion Upscale
16
17
- Attention, specify parts of text that the model should pay more attention to
@@ -23,6 +24,7 @@ Check the [custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-web
23
24
- have as many embeddings as you want and use any names you like for them
24
25
- use multiple embeddings with different numbers of vectors per token
25
26
- works with half precision floating point numbers
27
+
- train embeddings on 8GB (also reports of 6GB working)
26
28
- Extras tab with:
27
29
- GFPGAN, neural network that fixes faces
28
30
- CodeFormer, face restoration tool as an alternative to GFPGAN
@@ -37,14 +39,14 @@ Check the [custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-web
37
39
- Interrupt processing at any time
38
40
- 4GB video card support (also reports of 2GB working)
39
41
- Correct seeds for batches
40
-
- Prompt length validation
41
-
- get length of prompt in tokens as you type
42
-
- get a warning after generation if some text was truncated
42
+
- Live prompt token length validation
43
43
- Generation parameters
44
44
- parameters you used to generate images are saved with that image
45
45
- in PNG chunks for PNG, in EXIF for JPEG
46
46
- can drag the image to PNG info tab to restore generation parameters and automatically copy them into UI
47
47
- can be disabled in settings
48
+
- drag and drop an image/text-parameters to promptbox
49
+
- Read Generation Parameters Button, loads parameters in promptbox to UI
48
50
- Settings page
49
51
- Running arbitrary python code from UI (must run with --allow-code to enable)
50
52
- Mouseover hints for most UI elements
@@ -59,25 +61,56 @@ Check the [custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-web
59
61
- CLIP interrogator, a button that tries to guess prompt from an image
60
62
- Prompt Editing, a way to change prompt mid-generation, say to start making a watermelon and switch to anime girl midway
61
63
- Batch Processing, process a group of files using img2img
62
-
- Img2img Alternative
64
+
- Img2img Alternative, reverse Euler method of cross attention control
63
65
- Highres Fix, a convenience option to produce high resolution pictures in one click without usual distortions
64
66
- Reloading checkpoints on the fly
65
-
- Checkpoint Merger, a tab that allows you to merge two checkpoints into one
67
+
- Checkpoint Merger, a tab that allows you to merge up to 3 checkpoints into one
66
68
-[Custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Scripts) with many extensions from community
67
69
-[Composable-Diffusion](https://energy-based-model.github.io/Compositional-Visual-Generation-with-Composable-Diffusion-Models/), a way to use multiple prompts at once
68
70
- separate prompts using uppercase `AND`
69
71
- also supports weights for prompts: `a cat :1.2 AND a dog AND a penguin :2.2`
70
72
- No token limit for prompts (original stable diffusion lets you use up to 75 tokens)
71
73
- DeepDanbooru integration, creates danbooru style tags for anime prompts (add --deepdanbooru to commandline args)
72
74
-[xformers](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Xformers), major speed increase for select cards: (add --xformers to commandline args)
75
+
- via extension: [History tab](https://github.com/yfszzx/stable-diffusion-webui-images-browser): view, direct and delete images conveniently within the UI
76
+
- Generate forever option
77
+
- Training tab
78
+
- hypernetworks and embeddings options
79
+
- Preprocessing images: cropping, mirroring, autotagging using BLIP or deepdanbooru (for anime)
80
+
- Clip skip
81
+
- Use Hypernetworks
82
+
- Use VAEs
83
+
- Estimated completion time in progress bar
84
+
- API
85
+
- Support for dedicated [inpainting model](https://github.com/runwayml/stable-diffusion#inpainting-with-stable-diffusion) by RunwayML.
86
+
- via extension: [Aesthetic Gradients](https://github.com/AUTOMATIC1111/stable-diffusion-webui-aesthetic-gradients), a way to generate images with a specific aesthetic by using clip images embds (implementation of [https://github.com/vicgalle/stable-diffusion-aesthetic-gradients](https://github.com/vicgalle/stable-diffusion-aesthetic-gradients))
87
+
88
+
## Where are Aesthetic Gradients?!?!
89
+
Aesthetic Gradients are now an extension. You can install it using git:
After running this command, make sure that you have `images-browser` dir in webui's `extensions` directory and restart
106
+
the UI. The interface for Image browser should appear exactly the same as it was.
73
107
74
108
## Installation and Running
75
109
Make sure the required [dependencies](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Dependencies) are met and follow the instructions available for both [NVidia](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-NVidia-GPUs) (recommended) and [AMD](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-AMD-GPUs) GPUs.
76
110
77
-
Alternatively, use Google Colab:
111
+
Alternatively, use online services (like Google Colab):
78
112
79
-
-[Colab, maintained by Akaibu](https://colab.research.google.com/drive/1kw3egmSn-KgWsikYvOMjJkVDsPLjEMzl)
80
-
-[Colab, original by me, outdated](https://colab.research.google.com/drive/1Iy-xW9t1-OQWhb0hNxueGij8phCyluOh).
113
+
-[List of Online Services](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services)
81
114
82
115
### Automatic Installation on Windows
83
116
1. Install [Python 3.10.6](https://www.python.org/downloads/windows/), checking "Add Python to PATH"
0 commit comments