-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix controlnet module refactor #9968
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
super().__init__(*args, **kwargs) | ||
|
||
|
||
class ControlNetModel(ControlNetModel): | ||
def __init__(self, *args, **kwargs): | ||
def __init__( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for models that inherits from ConfigMixin
, it relies on its __init__
method signature to identify expected keys and only pass the expected keys to the model
expected_keys = cls._get_init_keys(cls) |
Currently with its signature being *args
and **kwargs
, None of the configs are being passed to the ControlNetModel
when importing from this legacy location.
@@ -24,19 +25,91 @@ | |||
class ControlNetOutput(ControlNetOutput): | |||
def __init__(self, *args, **kwargs): | |||
deprecation_message = "Importing `ControlNetOutput` from `diffusers.models.controlnet` is deprecated and this will be removed in a future version. Please use `from diffusers.models.controlnets.controlnet import ControlNetOutput`, instead." | |||
deprecate("ControlNetOutput", "0.34", deprecation_message) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
currently, you're getting a deprecation message like this - it is confusing because we are not deprecating ControlNetModel
; we only deprecate importing from the previous file
FutureWarning: `ControlNetModel` is deprecated and will be removed in version 0.34. Importing `ControlNetModel` from `diffusers.models.controlnet` is deprecated and this will be removed in a future version. Please use `from diffusers.models.controlnets.controlnet import ControlNetModel`, instead.
deprecate("ControlNetModel", "0.34", deprecation_message)
@@ -107,6 +107,7 @@ | |||
"ModelMixin", | |||
"MotionAdapter", | |||
"MultiAdapter", | |||
"MultiControlNetModel", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add MultiControlNetModel
to top-level import because every other MultiControlNetModels
are, e.g, SD3MultiControlNetModel
, FluxMultiControlNetModel
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if I've missed something, but the following changes look correctly done:
- Docstring fixes to correctly use
~models
as opposed to~diffusers
or anything else. - Init arguments are handled correctly as opposed to args and kwargs because otherwise our ConfigMixin won't work as expected.
- I've matched the default init parameters for all models and they seem to be the same as before [Core] introduce
controlnet
module #8768, so this looks correct. - The deprecation messages are no longer ambiguous.
- MultiControlNetModel is now a top-level import accessible directly from
diffusers.models
but was not previously (or after [Core] introducecontrolnet
module #8768) - Using
cls.from_config
as opposed to creating the class object directly from config is the preferred way to do things forfrom_*
methods (?)
If these were all the intended changes, I think this is good to merge. With this PR, the linked Flux controlnet model works correctly as well, thanks!
#8768 breaks the legacy API for all controlnets it moved: flux, sd3, sdxl, sd, sparse;
e.g. docstring example for flux controlnet won't run on
main
https://huggingface.co/InstantX/FLUX.1-dev-Controlnet-Cannythis PR fixes that