| 991 | |
| 992 | |
| 993 | class ConsistencyDecoderVAE(metaclass=DummyObject): |
| 994 | _backends = ["torch"] |
| 995 | |
| 996 | def __init__(self, *args, **kwargs): |
| 997 | requires_backends(self, ["torch"]) |
| 998 | |
| 999 | @classmethod |
| 1000 | def from_config(cls, *args, **kwargs): |
| 1001 | requires_backends(cls, ["torch"]) |
| 1002 | |
| 1003 | @classmethod |
| 1004 | def from_pretrained(cls, *args, **kwargs): |
| 1005 | requires_backends(cls, ["torch"]) |
| 1006 | |
| 1007 | |
| 1008 | class ContextParallelConfig(metaclass=DummyObject): |
no outgoing calls
no test coverage detected
searching dependent graphs…