Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
  • Loading branch information
sunjiahao1999 committed May 19, 2023
1 parent dedd66f commit ea7a367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_models/test_backbones/test_minkunet_backbone.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_minkunet_backbone():
coordinates, features = [], []
for i in range(2):
c = torch.randint(0, 16, (100, 3)).int()
c = F.pad(c, (1, 0), mode='constant', value=i)
c = F.pad(c, (0, 1), mode='constant', value=i)
coordinates.append(c)
f = torch.rand(100, 4)
features.append(f)
Expand Down

0 comments on commit ea7a367

Please sign in to comment.