blepping

Results 41 comments of blepping

> Can you suggest one for SD, and SDXL, that does not change anything; like i mentioned VAE is a lossy process, so if you take an image, VAE encode...

not sure if it's useful but an alternative approach would be something generic that just applies model patches on certain steps or percentages. ![image](https://github.com/comfyanonymous/ComfyUI/assets/157360029/39148ccc-132e-4104-b2fa-5d16715d03f0) https://github.com/blepping/ComfyUI-bleh/blob/main/py/modelPatchConditional.py - this thing is just...

might be due to #9

@haohaocreates > @blepping, wondering if there's any way we can support you on this PR! i really apologize for the slow reply and i appreciate the offer to help! basically...

thanks for the offer. slowwwly making progress toward this stuff. don't worry, i didn't forget.

hope you have better luck than i did!

how is this bug still a thing after being reported almost a year ago, multiple people submitting pulls trying to fix the problem. still nothing. i don't get it. it's...

![image](https://github.com/user-attachments/assets/c1ad90da-8be2-4e02-970f-54bb2ab68934) hopefully this is still going to happen.

this one is very experimental, i don't think i will be committing to stuff like semantic versions in the near future. no problem to leave the pull open but i'm...

```python temp = [0] def post_cfg_function(args): temp[0] = args["uncond_denoised"] return args["denoised"] ``` this hack is unnecessary, it can just be written as: ```python uncond = None def post_cfg_function(args): nonlocal uncond...