MCPcopy Index your code
hub / github.com/huggingface/diffusers / DDIMScheduler

Class DDIMScheduler

src/diffusers/utils/dummy_pt_objects.py:2795–2807  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2793
2794
2795class DDIMScheduler(metaclass=DummyObject):
2796 _backends = ["torch"]
2797
2798 def __init__(self, *args, **kwargs):
2799 requires_backends(self, ["torch"])
2800
2801 @classmethod
2802 def from_config(cls, *args, **kwargs):
2803 requires_backends(cls, ["torch"])
2804
2805 @classmethod
2806 def from_pretrained(cls, *args, **kwargs):
2807 requires_backends(cls, ["torch"])
2808
2809
2810class DDPMParallelScheduler(metaclass=DummyObject):

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…