-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FEAT: evaluate implementing "negative ADM guidance" #1217
Comments
Addl. info: It really boils down to monkey-patching if kwargs.get("prompt_type", "") == "negative":
width *= 0.8
height *= 0.8
elif kwargs.get("prompt_type", "") == "positive":
width *= 1.5
height *= 1.5 |
From our tests this doesn't seem to improve anything, it also directly contradicts the point number 6 on that repo. |
Yeah, I tried it locally... I was not impressed. |
is there a paper for |
Given that "reimplementing fooocus in comfyUI" has become a bit of a rite of passage for a lot of us, I'm glad to report this thread is #1 on google when searching for "negative ADM guidance". Thank you @comfyanonymous for comfirming what we always suspected. |
WDYT? Worthwhile, or cargo-cult BS?
https://github.com/lllyasviel/Fooocus/blob/main/modules/adm_patch.py (implementation of bullet 2 from https://github.com/lllyasviel/Fooocus/tree/main#tech_list), to wit:
The text was updated successfully, but these errors were encountered: