random-thoughtss
random-thoughtss
> Have you tested the vanilla 1.4 model with this PR? Yes, I observe matching seed parity with the CompVis stable-diffusion repo. The only code path that the visual conditing...
I should have probably mentioned that the original config for the in-painting model was not released alongside the checkpoint but can be found here. [https://raw.githubusercontent.com/runwayml/stable-diffusion/main/configs/stable-diffusion/v1-inpainting-inference.yaml](https://raw.githubusercontent.com/runwayml/stable-diffusion/main/configs/stable-diffusion/v1-inpainting-inference.yaml) This config works with the...
Yup, this repo got messed up. The new PR continues the work. @AUTOMATIC1111 Github support says they can remove the dead commits from the pr and keep the discussion if...
@C43H66N12O12S2 I decided to just check for the attention method. Sadly it looks like a lot of the `stable-diffusion` code assumes that there is something in the `cond` so setting...
> Thank you for the PR. One thing I noticed: setting `Inpaint at full resolution` to `True` breaks inpainting. @genesst I could not reproduce on my end. What is the...
@ProGamerGov It would take up a little under 81KB for the standard sized image at fp32. However, looking at it, it shouldn't care what the size of the dummy latent...
> how could you add support for other models? I suspect just merging the models might no be enough? @ryukra The weights have a completely different first layer, so you...
@remixer-dec Took some time to replicate, but it turns out if you never load the in-painting model, the the DDIM methods never get replaced. Made sure to always replace them....
> I've noticed whilst trying to produce comparisons that the inpainting model does not work when using the X/Y Plot. @Arron17 This ended up being a more general bug with...
Setting it to `None` would crash the in-painting model and would break if there is any batch size or large prompt. This is the diff for the fix. Just need...