(
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,
)
| 11 | class 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, |
nothing calls this directly
no outgoing calls
no test coverage detected