(self, args, device)
| 143 | |
| 144 | class SelfForcingModel(BaseModel): |
| 145 | def __init__(self, args, device): |
| 146 | super().__init__(args, device) |
| 147 | self.denoising_loss_func = get_denoising_loss(getattr(args, "denoising_loss_type", "flow"))() |
| 148 | |
| 149 | def _run_generator( |
| 150 | self, |
nothing calls this directly
no test coverage detected