| 2958 | |
| 2959 | |
| 2960 | class EulerDiscreteScheduler(metaclass=DummyObject): |
| 2961 | _backends = ["torch"] |
| 2962 | |
| 2963 | def __init__(self, *args, **kwargs): |
| 2964 | requires_backends(self, ["torch"]) |
| 2965 | |
| 2966 | @classmethod |
| 2967 | def from_config(cls, *args, **kwargs): |
| 2968 | requires_backends(cls, ["torch"]) |
| 2969 | |
| 2970 | @classmethod |
| 2971 | def from_pretrained(cls, *args, **kwargs): |
| 2972 | requires_backends(cls, ["torch"]) |
| 2973 | |
| 2974 | |
| 2975 | class FlowMatchEulerDiscreteScheduler(metaclass=DummyObject): |
no outgoing calls
searching dependent graphs…