MCPcopy Create free account
hub / github.com/YesianRohn/TextSSR / SparseControlNetModel

Class SparseControlNetModel

diffusers/src/diffusers/utils/dummy_pt_objects.py:455–467  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453
454
455class SparseControlNetModel(metaclass=DummyObject):
456 _backends = ["torch"]
457
458 def __init__(self, *args, **kwargs):
459 requires_backends(self, ["torch"])
460
461 @classmethod
462 def from_config(cls, *args, **kwargs):
463 requires_backends(cls, ["torch"])
464
465 @classmethod
466 def from_pretrained(cls, *args, **kwargs):
467 requires_backends(cls, ["torch"])
468
469
470class StableAudioDiTModel(metaclass=DummyObject):

Calls

no outgoing calls

Tested by 1

get_dummy_componentsMethod · 0.72