Skip to content

Commit 68e1b5f

Browse files
committed
new utils for scn
1 parent 1d2bda0 commit 68e1b5f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name = 'mp-nerf',
55
packages = find_packages(),
6-
version = '0.1.12',
6+
version = '1.0.3',
77
license='MIT',
88
description = 'MP-NeRF: Massively Parallel Natural Extension of Reference Frame',
99
author = 'Eric Alcaide',

tests/test_ml_utils.py

-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ def test_rename_symmetric_atoms():
2929
cloud_mask = scn_cloud_mask(seq_list[0]).unsqueeze(0)
3030
pred_feats = torch.randn(1, 16, 14, 16)
3131

32-
print(cloud_mask.shape)
33-
3432
renamed = rename_symmetric_atoms(pred_coors, true_coors, seq_list, cloud_mask, pred_feats=pred_feats)
3533
assert renamed[0].shape == pred_coors.shape and renamed[1].shape == pred_feats.shape, "Shapes don't match"
3634

0 commit comments

Comments
 (0)