| 1351 | |
| 1352 | |
| 1353 | class I2VGenXLUNet(metaclass=DummyObject): |
| 1354 | _backends = ["torch"] |
| 1355 | |
| 1356 | def __init__(self, *args, **kwargs): |
| 1357 | requires_backends(self, ["torch"]) |
| 1358 | |
| 1359 | @classmethod |
| 1360 | def from_config(cls, *args, **kwargs): |
| 1361 | requires_backends(cls, ["torch"]) |
| 1362 | |
| 1363 | @classmethod |
| 1364 | def from_pretrained(cls, *args, **kwargs): |
| 1365 | requires_backends(cls, ["torch"]) |
| 1366 | |
| 1367 | |
| 1368 | class Kandinsky3UNet(metaclass=DummyObject): |
no outgoing calls
no test coverage detected
searching dependent graphs…