| 2568 | |
| 2569 | |
| 2570 | class LDMPipeline(metaclass=DummyObject): |
| 2571 | _backends = ["torch"] |
| 2572 | |
| 2573 | def __init__(self, *args, **kwargs): |
| 2574 | requires_backends(self, ["torch"]) |
| 2575 | |
| 2576 | @classmethod |
| 2577 | def from_config(cls, *args, **kwargs): |
| 2578 | requires_backends(cls, ["torch"]) |
| 2579 | |
| 2580 | @classmethod |
| 2581 | def from_pretrained(cls, *args, **kwargs): |
| 2582 | requires_backends(cls, ["torch"]) |
| 2583 | |
| 2584 | |
| 2585 | class LDMSuperResolutionPipeline(metaclass=DummyObject): |
no outgoing calls
no test coverage detected
searching dependent graphs…