You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why design a separate linear layer for the output of the coordinate mean, and what is the difference between it and the ordinary fully connected layer?
Why is this happening?
x_norm = torch.norm(x, dim=1, keepdim=True)
y = y / x_norm
The text was updated successfully, but these errors were encountered:
In this class RegressFlow3D(nn.Module) Why when testing
pred_jts[:, :, 2] = pred_jts[:, :, 2] - pred_jts[:, self.root_idx:self.root_idx + 1, 2]
Why do you have to subtract like this
x_norm = torch.norm(x, dim=1, keepdim=True)
y = y / x_norm
The text was updated successfully, but these errors were encountered: