hlky
5240a47ee6
k-samplers fix 🔥
...
now THIS should fix it
2022-08-25 04:19:55 +01:00
bryanlyon
9caf41f5a1
Fix GFPGAN color errors.
...
GFPGAN requires images in BGR color space. Using the wrong color space leads to color-shift of the face after it's put through GFPGAN. To fix, convert the color space before sending to GFPGAN and again when it's returned.
2022-08-24 20:18:29 -07:00
hlky
07e4d738d5
Fix default selection of sampling checkbox
...
k-lms -> k_lms
2022-08-25 04:07:14 +01:00
hlky
77c06f829f
KDiffusionSampler fix
2022-08-25 03:55:15 +01:00
hlky
7143234939
description k_lms = default k-diffusion + max batch size increase
...
more k-diffusion samplers available now so clarify that k_lms is the same as was used before
2022-08-25 03:44:13 +01:00
hlky
3be4ce4fbd
Merge branch 'master' of https://github.com/hlky/stable-diffusion-webui
2022-08-25 03:31:44 +01:00
hlky
1ca4a3ec42
other k-diffusion samplers
2022-08-25 03:31:40 +01:00
hlky
905786bf47
Merge pull request #11 from EyeDeck/master
...
Fix crash display
2022-08-25 01:44:15 +01:00
EyeDeck
0afb4ca285
Fix crash display
...
Output tuple was changed;
also, fix text so it isn't black-on-black with light UI theme
2022-08-24 20:36:28 -04:00
hlky
a6452fbaa5
Flagging fix
...
🚩 🚩 🚩 🚩
2022-08-25 01:28:23 +01:00
hlky
2d87a58ebe
Merge branch 'master' of https://github.com/hlky/stable-diffusion-webui
2022-08-25 00:18:57 +01:00
hlky
e2941dcbdf
relauncher.py sync
2022-08-25 00:17:50 +01:00
hlky
4b81d08c0c
Merge pull request #9 from hlky/img2img-mask
...
img2img-mask 💯 🔥
2022-08-25 00:10:41 +01:00
hlky
9927f7c38a
img2img-mask
...
Great work, thanks anon!! 💯 🔥
2022-08-25 00:03:47 +01:00
hlky
8d6c046a08
Textual inversion support
...
Enabled only if textual-inversion exists. i.e.
> config (configs/stable-diffusion/v1-inference.yaml) is updated for textual inversion
> ldm/modules/embedding_manager.py exists (copied from textual-inversion repo)
> ldm/data/personalized.py exists (copied from textual-inversion repo)
> ldm/data/personalized_style.py exists (copied from textual-inversion repo)
> ldm/models/diffusion/ddpm.py is replaced with textual-inversion version
> ldm/util.py is replaced with textual-inversion version
Without textual-inversion installed script will function as normal
Please note:
Once textual-inversion changes have been applied do not remove personalization_config from config .yaml without also replacing the files changed with the original versions
2022-08-24 22:28:32 +01:00
hlky
22e225ad1e
Queue
...
Fix for Issue#7
2022-08-24 21:38:29 +01:00
hlky
e726be2965
fix ? sync workflow
2022-08-24 20:50:34 +01:00
hlky
4c8cc9d881
sync workflow
...
sync webui.py to hlky/stable-diffusion
2022-08-24 20:46:42 +01:00
hlky
b00be410c7
Merge pull request #5 from xraxra/master
...
Prompt Weighting
2022-08-24 19:15:39 +01:00
xra
c099aa8185
prompt weighting
...
was missing the grid gradio options last time
2022-08-25 02:58:45 +09:00
xra
c861d42feb
Merge branch 'master' of https://github.com/xraxra/stable-diffusion-webui
...
# Conflicts:
# webui.py
2022-08-25 02:54:40 +09:00
xra
f502897a06
updated weights code to match latest
2022-08-25 02:51:28 +09:00
hlky
75a7cadf3b
Revert "Merge pull request #4 from xraxra/master"
...
This reverts commit eae4ec82be
, reversing
changes made to 5ae104bd99
.
2022-08-24 18:23:52 +01:00
hlky
eae4ec82be
Merge pull request #4 from xraxra/master
...
weighted prompts similar to Midjourney
2022-08-24 18:15:04 +01:00
hlky
5ae104bd99
Merge pull request #3 from ShinkoNet/master
...
added support for words in seeds
2022-08-24 18:14:30 +01:00
hlky
e460676043
Merge branch 'master' into master
2022-08-24 18:14:16 +01:00
hlky
56a93f37c3
Fix skip save individual images and skip grid with loopback
...
Fix skip save individual images and skip grid with loopback
2022-08-24 18:02:26 +01:00
xra
f2f866e67f
weighted prompts similar to Midjourney
...
adds support for doing stuff like `a forest under night sky: by Studio Ghibli:1.8 in the style of Starry Night:2.3`
the : are treated as splits in the prompt, so the above turns into 3 prompts-
a forest under night sky 19.6%
by Studio Ghibli 35.2%
in the style of Starry Night 45.0%
the prompts are added together with torch.add using their weight as alpha
if a weight is negative it has the effect of subtracting (same result as torch.sub)
by default all values are normalized to try to add up to 1.0
If you want more control you can disable normalization, but values going far below 0 and 1 will cause artifacts
2022-08-25 01:51:22 +09:00
netcavy
b58c3038f9
added support for words in seeds
2022-08-25 02:42:29 +10:00
hlky
0f9c93808d
jpg quality 💯
...
jpg quality 💯 %
2022-08-24 17:36:45 +01:00
hlky
a743e60e0e
Skip grid/skip save + DDIM img2img!!
...
Added checkboxes for skip grid/skip individual save
+
DDIM for img2img!! (PLMS unsupported??)
2022-08-24 17:32:55 +01:00
hlky
62ea12ca49
Merge pull request #2 from ShinkoNet/master
...
Better crash display
2022-08-24 17:28:12 +01:00
ShinkoNet
51cadc2cd5
Merge branch 'master' into master
2022-08-25 01:58:58 +10:00
netcavy
3401e1944d
Better crash display
2022-08-25 01:54:41 +10:00
netcavy
2137bb1ada
Better crash display
2022-08-25 01:53:35 +10:00
netcavy
ae70eaeb5c
Better crash display
2022-08-25 01:47:34 +10:00
netcavy
7b855f7022
Better crash display
2022-08-25 01:45:55 +10:00
hlky
065ad3239d
local network support
2022-08-24 16:06:11 +01:00
hlky
741182aee8
Ready for theme support
...
Currently, only the 'default' theme is supported
wait Gradio to do the needful theme support
2022-08-24 16:05:14 +01:00
hlky
b2685b0a1b
jpg grid
...
f u
2022-08-24 15:44:34 +01:00
hlky
10c856011c
image_grid
...
CONFLIIIIICT
2022-08-24 15:38:48 +01:00
hlky
e59b0ef903
do_not_save_grid
...
merge conflict again
2022-08-24 15:33:25 +01:00
hlky
87e2703c65
loopback fix
...
messed up on merge due to conflicts
2022-08-24 15:30:02 +01:00
hlky
c7b950aa11
Merge branch 'AUTOMATIC1111:master' into master
2022-08-24 15:22:53 +01:00
hlky
0ed0dd7e90
Merge pull request #1 from ShinkoNet/master
...
Memory Patch
2022-08-24 15:22:09 +01:00
hlky
60c81774da
Merge branch 'master' into master
2022-08-24 15:21:58 +01:00
netcavy
2ca56e3434
Fix img2img stats with new loopback feature
2022-08-25 00:14:23 +10:00
hlky
95423e2798
pynvml mem usage
...
pynvml mem usage
2022-08-24 15:12:20 +01:00
hlky
47d79b2ac9
Revert "Merge branch 'master' into master"
...
This reverts commit 15a700bbe5
, reversing
changes made to abb83239e5
.
2022-08-24 15:11:12 +01:00
ShinkoNet
accbdee516
Merge branch 'master' into master
2022-08-25 00:04:17 +10:00