Álvaro Somoza

Results 91 comments of Álvaro Somoza

@yiyixuxu yeah, SDE looks good here, in fact they all look better than the tests I did, going to try with some photo realistic prompts.

I've tested with more prompts and I like the results. |25|10|ays| |---|---|---| |![20240501130625_2487854446](https://github.com/huggingface/diffusers/assets/5442875/89eb2f10-0970-46cd-9e09-ce95317fdea6)|![20240501131657_2487854446](https://github.com/huggingface/diffusers/assets/5442875/cfdc7c5a-dc8e-40f2-bf1b-b020ebf41992)|![20240501131637_2487854446](https://github.com/huggingface/diffusers/assets/5442875/7d82d80f-0a79-4853-9ec3-3262828040cb)| With SDE I get the same bad results as comfyui: |25|10|ays| |---|---|---| |![20240501133342_2487854446](https://github.com/huggingface/diffusers/assets/5442875/25f22c1f-66e3-470c-b6b9-a57d4773b638)|![20240501133358_2487854446](https://github.com/huggingface/diffusers/assets/5442875/b2dbbd23-1016-4119-be40-d52482deb3b2)|![20240501133413_2487854446](https://github.com/huggingface/diffusers/assets/5442875/fa45eda8-4f49-4814-9303-8f44112d731b)| Also I know they're...

@yiyixuxu maybe is that have bad seed luck and found about it, also it seems that it happens more with the finetunes than the base model. This is the code...

@yiyixuxu Since this is a really easy fix it could be tagged with `contributions-welcome` and `good first issue`. If no one takes it I can do it.

My two cents here is that marigold should be added to the core now, I like it a lot and with LCM it should be fast. The model has almost...

After reading about this issue this is not a problem with `diffusers` but an environment issue with the users? Also we cannot help you with that repository because they [use](https://github.com/bmaltais/kohya_ss/blob/master/requirements.txt)...

Hi, this is produced because you're using `from_single_file`, `StableDiffusionInpaintPipeline` and a normal model, you'll need to add `num_in_channels=4` ```python pipeline = StableDiffusionInpaintPipeline.from_single_file( model_path, torch_dtype=torch.float16, num_in_channels=4).to("cuda") ``` You can read more...

oh I missed that, you're using a SDXL model, you'll need to use the `StableDiffusionXLInpaintPipeline` ```python device = "cuda" model_path = "weights/realisticStockPhoto_v20.safetensors" pipe = StableDiffusionXLInpaintPipeline.from_single_file( model_path, torch_dtype=torch.float16, num_in_channels=4).to("cuda") pipe.load_lora_weights(".", weight_name="weights/SDXL_FILM_PHOTOGRAPHY_STYLE_BetaV0.4.safetensors",...

I don't quite understand your whole problem because you're mixing a lot of things in the same issue. Compel or textual inversion are unrelated to the mask so they don't...