(self, frames, depths, cond_times=None)
| 29 | return missing_keys, unexpected_keys |
| 30 | |
| 31 | def forward_gaussians(self, frames, depths, cond_times=None): |
| 32 | # frames: [B, V, C, H, W] |
| 33 | # return: gaussians: [B, N, D] |
| 34 | decoder_out = self.model(frames, depths, cond_times=cond_times) |
| 35 | return decoder_out |
| 36 | |
| 37 | def forward(self, data, step_ratio=0.0): |
| 38 | # data: [B, V, C, H, W] |