AttributeError: module diffusers has no attribute MarigoldPipeline. Did you mean: 'MarigoldDepthPipeline'?
#3
by
yzcnsdqz
- opened
The official instruction under "Use this model" is not working properly. Namely,
>>> from diffusers import DiffusionPipeline
>>> pipeline = DiffusionPipeline.from_pretrained("prs-eth/marigold-depth-lcm-v1-0")
causes
AttributeError: module diffusers has no attribute MarigoldPipeline. Did you mean: 'MarigoldDepthPipeline'?
A walk around solution is to use
from diffusers import MarigoldDepthPipeline
pipeline = MarigoldDepthPipeline.from_pretrained("prs-eth/marigold-depth-lcm-v1-0")