MCPcopy Create free account
hub / github.com/DSL-Lab/StreamSplat / forward_gaussians

Method forward_gaussians

model/splat_model.py:63–67  ·  view source on GitHub ↗
(self, frames, depths, cond_times=None)

Source from the content-addressed store, hash-verified

61 return super().load_state_dict(filtered_state_dict, strict=strict)
62
63 def forward_gaussians(self, frames, depths, cond_times=None):
64 # frames: [B, V, C, H, W]
65 # return: gaussians: [B, N, D]
66 decoder_out = self.model(frames, depths, cond_times=cond_times)
67 return decoder_out
68
69 def compute_losses(self, input_frames, target_depth, supv_masks, render_pkg):
70 output_frames = render_pkg["render"] # [B, V, C, H, W]

Callers 1

forwardMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected