You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does this model support for multiple controlnet like depth controlnet? It seems that the model can not be loaded with FluxControlNet in diffusers==0.32.0 (will raise errors). But pasting the controlnet code in this repo will result in other errors. The following is my code:
fromdiffusersimportFluxControlNetModelfromflux_inpaint.pipeline_flux_controlnet_inpaintimportFluxControlNetInpaintingPipelinefromflux_inpaint.controlnet_fluximportFluxControlNetModelasFluxControlNetInpaintModelcontrolnet_list= [
FluxControlNetInpaintModel.from_pretrained("alimama-creative/FLUX.1-dev-Controlnet-Inpainting-Beta"), # FluxControlNetModel will raise a different errorFluxControlNetModel.from_pretrained("InstantX/FLUX.1-dev-Controlnet-Union"),
]
pipe=FluxControlNetInpaintingPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", controlnet=controlnet_list)
This gives the following error:
...
File ".../python3.9/site-packages/diffusers/pipelines/pipeline_loading_utils.py", line 735, in _fetch_class_library_tuple
library = not_compiled_module.__module__.split(".")[0]
AttributeError: 'list' object has no attribute '__module__'
The text was updated successfully, but these errors were encountered:
Does this model support for multiple controlnet like depth controlnet? It seems that the model can not be loaded with FluxControlNet in diffusers==0.32.0 (will raise errors). But pasting the controlnet code in this repo will result in other errors. The following is my code:
This gives the following error:
The text was updated successfully, but these errors were encountered: