derek-upham

Results 11 comments of derek-upham

To clarify, I'm interested in supporting `'("/path/to/src" "/cache/path/to/lib1/src" "/cache/path/to/lib2/src")` as the general case, with `"/path/to/src"` converted to `'("/path/to/src")` for backwards compatibility. Sometimes its useful to search across all of my...

This seems similar to https://github.com/vladmandic/automatic/issues/205, which is supposedly the same as https://github.com/oobabooga/text-generation-webui/issues/819, which is supposedly fixed by https://github.com/oobabooga/text-generation-webui/pull/1089. Do you get the same error if you simply click on the...

Yeah, the above error is actually printing something to the console log. My own debugging quest continues.

Standard webui, with --api, --listen, --server-name options. The `processing.py` module has two places that call `sample_img2img`. In the `StableDiffusionProcessingTxt2Img` class, `sample` method, line 866: ``` samples = self.sampler.sample_img2img(self, samples, noise,...

The ZeroDivisionError error, from before any local patches, was this: ``` File "/extra/ArtGenerators/stable-diffusion-webui/modules/processing.py", line 1011, in sample samples = self.sampler.sample_img2img(self, self.init_latent, x, conditioning, unconditional_conditioning, image_conditioning=self.image_conditioning) File "/extra/ArtGenerators/stable-diffusion-webui/modules/sd_samplers.py", line 255, in...

And now I can't reproduce it either when I remove my patch, with any combination of the two test parameters. Just...lovely. Okay, I'll close the issue, and if I do...

Success. And by "success", I mean "failure". ``` Traceback (most recent call last): File "/extra/ArtGenerators/stable-diffusion-webui/modules/call_queue.py", line 45, in f res = list(func(*args, **kwargs)) File "/extra/ArtGenerators/stable-diffusion-webui/modules/call_queue.py", line 28, in f res...

I ended up putting this PDB invocation into the `wrap_gradio_call` method, and confirmed that it enters the debugger (with a trial `1 // 0` expression in the `try` block). The...

Here we go. ``` def setup_img2img_steps(p, steps=None): if opts.img2img_fix_steps or steps is not None: requested_steps = (steps or p.steps) steps = int(requested_steps / min(p.denoising_strength, 0.999)) if p.denoising_strength > 0 else...

I tweaked the bug title to reflect the problem.