MCPcopy Create free account
hub / github.com/MotrixLab/ViMoGen / __init__

Method __init__

trainer/sd3_scheduler.py:13–28  ·  view source on GitHub ↗
(
        self,
        logit_mean: float = 0.0,
        logid_std: float = 1.0,
        base_height: int = 256,
        base_width: int = 256,
        base_frames: int = 1,
        base_scale: float = 1,
    )

Source from the content-addressed store, hash-verified

11class SD3RectFlow:
12
13 def __init__(
14 self,
15 logit_mean: float = 0.0,
16 logid_std: float = 1.0,
17 base_height: int = 256,
18 base_width: int = 256,
19 base_frames: int = 1,
20 base_scale: float = 1,
21 ) -> None:
22 self.t_scale = 1000
23 self.logit_mean = logit_mean
24 self.logid_std = logid_std
25 self.base_height = base_height
26 self.base_width = base_width
27 self.base_frames = base_frames
28 self.base_scale = base_scale
29
30 def sample_t_and_sigma(
31 self,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected