Skip to content
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

Merged
merged 2 commits into from
Nov 20, 2024
Merged

fix controlnet module refactor #9968

merged 2 commits into from
Nov 20, 2024

Conversation

yiyixuxu
Copy link
Collaborator

@yiyixuxu yiyixuxu commented Nov 20, 2024

#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-Canny

this PR fixes that

@HuggingFaceDocBuilderDev

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__(
Copy link
Collaborator Author

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)
Copy link
Collaborator Author

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",
Copy link
Collaborator Author

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

@yiyixuxu yiyixuxu requested a review from a-r-r-o-w November 20, 2024 03:54
Copy link
Member

@a-r-r-o-w a-r-r-o-w left a 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] introduce controlnet module #8768)
  • Using cls.from_config as opposed to creating the class object directly from config is the preferred way to do things for from_* 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!

@yiyixuxu yiyixuxu merged commit e564abe into main Nov 20, 2024
16 of 18 checks passed
@yiyixuxu yiyixuxu deleted the fix-controlnet-refactor branch November 20, 2024 23:11
sayakpaul pushed a commit that referenced this pull request Dec 23, 2024
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants