fix minor
This commit is contained in:
parent
73f42c7207
commit
81d381701f
|
@ -92,8 +92,9 @@ class GridGenerator(nn.Module):
|
|||
self.inv_delta_C = torch.tensor(self._build_inv_delta_C(self.F, self.C)).float() # F+3 x F+3
|
||||
self.P_hat = torch.tensor(self._build_P_hat(self.F, self.C, self.P)).float() # n x F+3
|
||||
|
||||
self.register_buffer("batch_inv_delta_C", self.inv_delta_C.repeat(batch_size, 1, 1))
|
||||
self.register_buffer("batch_P_hat", self.P_hat.repeat(batch_size, 1, 1))
|
||||
# batch_size+1 : +1 sometimes happen with specific batch_ratio and multi-GPU setting.
|
||||
self.register_buffer("batch_inv_delta_C", self.inv_delta_C.repeat(batch_size + 1, 1, 1))
|
||||
self.register_buffer("batch_P_hat", self.P_hat.repeat(batch_size + 1, 1, 1))
|
||||
|
||||
def _build_C(self, F):
|
||||
""" Return coordinates of fiducial points in I_r; C """
|
||||
|
|
Loading…
Reference in New Issue