ModuleNotFoundError: No module named 'diffusers.models.controlnet_sd3'

#2
by EZEROR - opened

Prerequisite
1.I have download the most updated "Diffusers"
2. Have executed the codes below:
!git clone -b sd3_control https://github.com/instantX-research/diffusers_sd3_control.git
%cd diffusers
!pip install -e .

But still get wrong information showed below, what should I do ? Thank you!


ModuleNotFoundError Traceback (most recent call last)
Cell In[36], line 3
1 import torch
2 from diffusers import StableDiffusion3Pipeline
----> 3 from diffusers.models.controlnet_sd3 import ControlNetSD3Model
4 from diffusers.utils.torch_utils import randn_tensor
5 import sys, os

ModuleNotFoundError: No module named 'diffusers.models.controlnet_sd3'

InstantX org

During the merge, the official team provided some suggestions, and we are currently making revisions. We anticipate completing the merge with diffusers by tomorrow. At that point, you will be able to use the official library directly. We will also be rewriting some of the demo code.

merge的时候官方给了一些建议,正在进行修改,预计明天可以完成与diffusers的merge。到时候直接使用官方库就可以了。我们也会重写一些demo的代码

Sign up or log in to comment