(self, opt: Options, **model_kwargs)
| 128 | |
| 129 | class Predictor(torch.nn.Module): |
| 130 | def __init__(self, opt: Options, **model_kwargs): |
| 131 | super().__init__() |
| 132 | self.opt = opt |
| 133 | self.depth_prior = DepthAnythingWrapper(opt.depth_model_name) |
| 134 | |
| 135 | def forward(self, frames, depths, cond_times=None): |
| 136 | with torch.no_grad(): |
nothing calls this directly
no test coverage detected