Could you share a requirements.txt or pyproject.toml file
Closed this issue · 1 comments
wy commented
Getting this error currently
a_base.py", line 445, in fuse_lora
raise ValueError(f"{fuse_component} is not found in {self._lora_loadable_modules=}.")
ValueError: text_encoder is not found in self._lora_loadable_modules=['transformer'].
(dimensionx-video-py3.12)
chenshuo20 commented
You can skip the text encoder part in fuse_lora() in src/diffusers/loaders/lora_base.py like:
for fuse_component in components:
if fuse_component == 'text_encoder':
continue
For more details you can check this issue.
And we will provide more detailed information about the environment as soon as possible.