(self, std: float)
| 25 | torch.nn.init.zeros_(self.embeds.weight) |
| 26 | |
| 27 | def random_init(self, std: float): |
| 28 | torch.nn.init.normal_(self.embeds.weight, std=std) |
| 29 | |
| 30 | def forward(self, camtoworlds: Tensor, embed_ids: Tensor) -> Tensor: |
| 31 | """Adjust camera pose based on deltas. |