Skip to content

Commit

Permalink
fixed icp test having invalid point count
Browse files Browse the repository at this point in the history
  • Loading branch information
BaderTim committed Jan 29, 2024
1 parent 64c1fa2 commit 8c8bac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion baselines/model/tests/test_icp.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ def rotation_matrix(axis, theta):
def test_icp_model():
K = 2
model = ICP(K=K)
x = torch.randn(8, K, 50_200, 3) # (B, L, C, N)
x = torch.randn(8, K, 19_200, 3) # (B, L, C, N)
out = model(x)
assert out.shape == (8, 5)

0 comments on commit 8c8bac3

Please sign in to comment.