MCPcopy Create free account
hub / github.com/TencentARC/BrushNet / CMStochasticIterativeScheduler

Class CMStochasticIterativeScheduler

src/diffusers/utils/dummy_pt_objects.py:708–720  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

706
707
708class CMStochasticIterativeScheduler(metaclass=DummyObject):
709 _backends = ["torch"]
710
711 def __init__(self, *args, **kwargs):
712 requires_backends(self, ["torch"])
713
714 @classmethod
715 def from_config(cls, *args, **kwargs):
716 requires_backends(cls, ["torch"])
717
718 @classmethod
719 def from_pretrained(cls, *args, **kwargs):
720 requires_backends(cls, ["torch"])
721
722
723class DDIMInverseScheduler(metaclass=DummyObject):

Calls

no outgoing calls