| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
implement train api
|
| |/ / / / / |
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
load_with_extra
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
fix(api): don't save extras output to disk
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add an option for faster low quality previews
|
| |/ / / / |
|
| | | | |
| | | | |
| | | | |
| | | | | |
extensions to override it
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Removed lenght in sd_model at line 115
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
Commit eba60a4 is what is causing this error, delete the length check in sd_model starting at line 115 and it's fine.
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/5971#issuecomment-1364507379
|
|\ \ \ \
| | | | |
| | | | | |
Make the generated image count in desktop notifications only count new gens in the currently active tab
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add SafeTensors support to LDSR
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
fix: fallback model_checkpoint if it's empty
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This fixes the following error when SD attempts to start with a deleted checkpoint:
```
Traceback (most recent call last):
File "D:\Web\stable-diffusion-webui\launch.py", line 295, in <module>
start()
File "D:\Web\stable-diffusion-webui\launch.py", line 290, in start
webui.webui()
File "D:\Web\stable-diffusion-webui\webui.py", line 132, in webui
initialize()
File "D:\Web\stable-diffusion-webui\webui.py", line 62, in initialize
modules.sd_models.load_model()
File "D:\Web\stable-diffusion-webui\modules\sd_models.py", line 283, in load_model
checkpoint_info = checkpoint_info or select_checkpoint()
File "D:\Web\stable-diffusion-webui\modules\sd_models.py", line 117, in select_checkpoint
checkpoint_info = checkpoints_list.get(model_checkpoint, None)
TypeError: unhashable type: 'list'
```
|
|\ \ \ \ \
| | | | | |
| | | | | | |
API endpoint to refresh checkpoints
|
| |/ / / /
| | | | |
| | | | | |
API endpoint to refresh checkpoints
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Better should_hijack_inpainting detection
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Update hints.js - DPM adaptive
|
| | |/ / / /
| |/| | | |
| | | | | | |
Added mouse-over for DPM adaptive
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Bugfix: Use /usr/bin/env bash instead of just /bin/bash
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The problem: Some Linux distrubutions, like NixOS, use a
non-standard filesystem. This causes the bash program to not
be at /bin/bash (though /usr/bin/env is always there).
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Improve prompts-from-file script to support negative prompts and sampler-by-name
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
script
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Save hypernetwork hash and fix hypernetwork parameter restoring
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Add latent upscale option to img2img
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Recently, the option to do latent upscale was added to txt2img highres
fix. This feature runs by scaling the latent sample of the image, and
then running a second pass of img2img.
But, in this edition of highres fix, the image and parameters cannot be
changed between the first pass and second pass. We might want to do a
fixup in img2img before doing the second pass, or might want to run the
second pass at a different resolution.
This change adds the option for img2img to perform its upscale in latent
space, rather than image space, giving very similar results to highres
fix with latent upscale. The result is not exactly the same because
there is an additional latent -> decoder -> image -> encoder -> latent
that won't happen in highres fix, but this conversion has relatively
small losses
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Dirty fix for missing PIL supported file extensions
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Format singleton comparisons
|
| | |_|/ / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
feat(api): add override_settings_restore_afterwards
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix various typos
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Better support for 2.0-inpainting and 2.0-depth special models
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
and all configs except v1-inpainting-inference.yaml already correctly set it to False)
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
inpainting model
|
| |/ / / / / / |
|