| 2688 | |
| 2689 | |
| 2690 | class BlockRefinementScheduler(metaclass=DummyObject): |
| 2691 | _backends = ["torch"] |
| 2692 | |
| 2693 | def __init__(self, *args, **kwargs): |
| 2694 | requires_backends(self, ["torch"]) |
| 2695 | |
| 2696 | @classmethod |
| 2697 | def from_config(cls, *args, **kwargs): |
| 2698 | requires_backends(cls, ["torch"]) |
| 2699 | |
| 2700 | @classmethod |
| 2701 | def from_pretrained(cls, *args, **kwargs): |
| 2702 | requires_backends(cls, ["torch"]) |
| 2703 | |
| 2704 | |
| 2705 | class BlockRefinementSchedulerOutput(metaclass=DummyObject): |
no outgoing calls
searching dependent graphs…