Billy Cao
Billy Cao
The assert produces unneccessary traceback logs that 'scares' new users and occupy the console. See https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/4065 Change asserts into print for extension access disabled Fixes typo in 'disabled' NOTE: this...
This PR allows for the override_settings field in the generation APIs to take effect for hypernetwork overrides, by loading them on change. Inspired by https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/3629 and @evshiron , thanks!
### Is there an existing issue for this? - [X] I have searched the existing issues and checked the recent builds/commits ### What happened? Generating images that are not 1:1...
Fixes https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/3278 https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/4183 Thanks to @baloneysammich for inspiration. NOTE: this approach relies on catching the SIGINT signal (triggered by ctrl+C), hence it does NOT work if the user force closes...
There exists a cmd argument `--nowebui` that is supposed to only launch the API server but not the webui app, but it is currently ignored. This PR fixes that.
### Is there an existing issue for this? - [X] I have searched the existing issues and checked the recent builds/commits ### What would your feature do ? This cmd...
It was an issue spotted in tracebacks of https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/4380, but this PR does NOT fix the entire issue. It just fixes an improper handling of error.
As raised by serval people including myself in https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/4906 and https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/4094, I adopted the trick mentioned in https://github.com/CompVis/stable-diffusion/issues/60#issuecomment-1240294667 and patched the forward() function of the UNet to remove this restriction....
Allow user to temporarily change vae and checkpoint using override_settings field in the POST request. Addresses https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/4301#issuecomment-1328251572 Closes https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/3703 cc @Kilvoctu you might be interested in this PR
This is a draft PR to test out compatibility with PyTorch 2.0 and whether the new `torch.compile` brings any performance benefits. Feel free to try out and report if there...