test_voxel_grids.py 31.4 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.


import unittest
from typing import Optional, Tuple

import torch
Darijan Gudelj's avatar
Darijan Gudelj committed
12
from omegaconf import DictConfig, OmegaConf
13
14
15
16
17
18
19
20
21
22

from pytorch3d.implicitron.models.implicit_function.utils import (
    interpolate_line,
    interpolate_plane,
    interpolate_volume,
)
from pytorch3d.implicitron.models.implicit_function.voxel_grid import (
    CPFactorizedVoxelGrid,
    FullResolutionVoxelGrid,
    VMFactorizedVoxelGrid,
Darijan Gudelj's avatar
Darijan Gudelj committed
23
    VoxelGridModule,
24
25
)

Darijan Gudelj's avatar
Darijan Gudelj committed
26
from pytorch3d.implicitron.tools.config import expand_args_fields, get_default_args
27
28
29
30
31
32
33
34
35
36
37
38
from tests.common_testing import TestCaseMixin


class TestVoxelGrids(TestCaseMixin, unittest.TestCase):
    """
    Tests Voxel grids, tests them by setting all elements to zero (after retrieving
    they should also return zero) and by setting all of the elements to one and
    getting the result. Also tests the interpolation by 'manually' interpolating
    one by one sample and comparing with the batched implementation.
    """

    def get_random_normalized_points(
39
        self, n_grids, n_points=None, dimension=3
40
    ) -> torch.Tensor:
41
        middle_shape = torch.randint(1, 4, tuple(torch.randint(1, 5, size=(1,))))
42
        # create random query points
43
44
45
46
47
48
49
        return (
            torch.rand(
                n_grids, *(middle_shape if n_points is None else [n_points]), dimension
            )
            * 2
            - 1
        )
50
51
52
53
54
55
56
57
58
59
60
61
62

    def _test_query_with_constant_init_cp(
        self,
        n_grids: int,
        n_features: int,
        n_components: int,
        resolution: Tuple[int],
        value: float = 1,
    ) -> None:
        # set everything to 'value' and do query for elementsthe result should
        # be of shape (n_grids, n_points, n_features) and be filled with n_components
        # * value
        grid = CPFactorizedVoxelGrid(
Darijan Gudelj's avatar
Darijan Gudelj committed
63
            resolution_changes={0: resolution},
64
65
66
            n_components=n_components,
            n_features=n_features,
        )
Darijan Gudelj's avatar
Darijan Gudelj committed
67
        shapes = grid.get_shapes(epoch=0)
68
69
70
71

        params = grid.values_type(
            **{k: torch.ones(n_grids, *shapes[k]) * value for k in shapes}
        )
72
        points = self.get_random_normalized_points(n_grids)
73
        assert torch.allclose(
74
75
76
            grid.evaluate_local(points, params),
            torch.ones(n_grids, *points.shape[1:-1], n_features) * n_components * value,
            rtol=0.0001,
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
        )

    def _test_query_with_constant_init_vm(
        self,
        n_grids: int,
        n_features: int,
        resolution: Tuple[int],
        n_components: Optional[int] = None,
        distribution: Optional[Tuple[int]] = None,
        value: float = 1,
        n_points: int = 1,
    ) -> None:
        # set everything to 'value' and do query for elements
        grid = VMFactorizedVoxelGrid(
            n_features=n_features,
Darijan Gudelj's avatar
Darijan Gudelj committed
92
            resolution_changes={0: resolution},
93
94
95
            n_components=n_components,
            distribution_of_components=distribution,
        )
Darijan Gudelj's avatar
Darijan Gudelj committed
96
        shapes = grid.get_shapes(epoch=0)
97
98
99
100
101
102
103
        params = grid.values_type(
            **{k: torch.ones(n_grids, *shapes[k]) * value for k in shapes}
        )

        expected_element = (
            n_components * value if distribution is None else sum(distribution) * value
        )
104
        points = self.get_random_normalized_points(n_grids)
105
        assert torch.allclose(
106
107
            grid.evaluate_local(points, params),
            torch.ones(n_grids, *points.shape[1:-1], n_features) * expected_element,
108
109
110
111
112
113
114
115
116
117
118
        )

    def _test_query_with_constant_init_full(
        self,
        n_grids: int,
        n_features: int,
        resolution: Tuple[int],
        value: int = 1,
        n_points: int = 1,
    ) -> None:
        # set everything to 'value' and do query for elements
Darijan Gudelj's avatar
Darijan Gudelj committed
119
120
121
122
        grid = FullResolutionVoxelGrid(
            n_features=n_features, resolution_changes={0: resolution}
        )
        shapes = grid.get_shapes(epoch=0)
123
124
125
126
127
        params = grid.values_type(
            **{k: torch.ones(n_grids, *shapes[k]) * value for k in shapes}
        )

        expected_element = value
128
        points = self.get_random_normalized_points(n_grids)
129
        assert torch.allclose(
130
131
            grid.evaluate_local(points, params),
            torch.ones(n_grids, *points.shape[1:-1], n_features) * expected_element,
132
133
134
135
136
        )

    def test_query_with_constant_init(self):
        with self.subTest("Full"):
            self._test_query_with_constant_init_full(
137
                n_grids=5, n_features=6, resolution=(3, 4, 5)
138
139
140
            )
        with self.subTest("Full with 1 in dimensions"):
            self._test_query_with_constant_init_full(
141
                n_grids=5, n_features=1, resolution=(33, 41, 1)
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
            )
        with self.subTest("CP"):
            self._test_query_with_constant_init_cp(
                n_grids=5,
                n_features=6,
                n_components=7,
                resolution=(3, 4, 5),
            )
        with self.subTest("CP with 1 in dimensions"):
            self._test_query_with_constant_init_cp(
                n_grids=2,
                n_features=1,
                n_components=3,
                resolution=(3, 1, 1),
            )
        with self.subTest("VM with symetric distribution"):
            self._test_query_with_constant_init_vm(
                n_grids=6,
                n_features=9,
                resolution=(2, 12, 2),
                n_components=12,
            )
        with self.subTest("VM with distribution"):
            self._test_query_with_constant_init_vm(
                n_grids=5,
                n_features=1,
                resolution=(5, 9, 7),
                distribution=(33, 41, 1),
            )

    def test_query_with_zero_init(self):
        with self.subTest("Query testing with zero init CPFactorizedVoxelGrid"):
            self._test_query_with_constant_init_cp(
                n_grids=5,
                n_features=6,
                n_components=7,
                resolution=(3, 2, 5),
                value=0,
            )
        with self.subTest("Query testing with zero init VMFactorizedVoxelGrid"):
            self._test_query_with_constant_init_vm(
                n_grids=2,
                n_features=9,
                resolution=(2, 11, 3),
                n_components=3,
                value=0,
            )
        with self.subTest("Query testing with zero init FullResolutionVoxelGrid"):
            self._test_query_with_constant_init_full(
191
                n_grids=4, n_features=2, resolution=(3, 3, 5), value=0
192
193
194
195
196
197
198
            )

    def setUp(self):
        torch.manual_seed(42)
        expand_args_fields(FullResolutionVoxelGrid)
        expand_args_fields(CPFactorizedVoxelGrid)
        expand_args_fields(VMFactorizedVoxelGrid)
Darijan Gudelj's avatar
Darijan Gudelj committed
199
        expand_args_fields(VoxelGridModule)
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292

    def _interpolate_1D(
        self, points: torch.Tensor, vectors: torch.Tensor
    ) -> torch.Tensor:
        """
        interpolate vector from points, which are (batch, 1) and individual point is in [-1, 1]
        """
        result = []
        _, _, width = vectors.shape
        # transform from [-1, 1] to [0, width-1]
        points = (points + 1) / 2 * (width - 1)
        for vector, row in zip(vectors, points):
            newrow = []
            for x in row:
                xf, xc = int(torch.floor(x)), int(torch.ceil(x))
                itemf, itemc = vector[:, xf], vector[:, xc]
                tmp = itemf * (xc - x) + itemc * (x - xf)
                newrow.append(tmp[None, None, :])
            result.append(torch.cat(newrow, dim=1))
        return torch.cat(result)

    def _interpolate_2D(
        self, points: torch.Tensor, matrices: torch.Tensor
    ) -> torch.Tensor:
        """
        interpolate matrix from points, which are (batch, 2) and individual point is in [-1, 1]
        """
        result = []
        n_grids, _, width, height = matrices.shape
        points = (points + 1) / 2 * (torch.tensor([[[width, height]]]) - 1)
        for matrix, row in zip(matrices, points):
            newrow = []
            for x, y in row:
                xf, xc = int(torch.floor(x)), int(torch.ceil(x))
                yf, yc = int(torch.floor(y)), int(torch.ceil(y))
                itemff, itemfc = matrix[:, xf, yf], matrix[:, xf, yc]
                itemcf, itemcc = matrix[:, xc, yf], matrix[:, xc, yc]
                itemf = itemff * (xc - x) + itemcf * (x - xf)
                itemc = itemfc * (xc - x) + itemcc * (x - xf)
                tmp = itemf * (yc - y) + itemc * (y - yf)
                newrow.append(tmp[None, None, :])
            result.append(torch.cat(newrow, dim=1))
        return torch.cat(result)

    def _interpolate_3D(
        self, points: torch.Tensor, tensors: torch.Tensor
    ) -> torch.Tensor:
        """
        interpolate tensors from points, which are (batch, 3) and individual point is in [-1, 1]
        """
        result = []
        _, _, width, height, depth = tensors.shape
        batch_normalized_points = (
            (points + 1) / 2 * (torch.tensor([[[width, height, depth]]]) - 1)
        )
        batch_points = points

        for tensor, points, normalized_points in zip(
            tensors, batch_points, batch_normalized_points
        ):
            newrow = []
            for (x, y, z), (_, _, nz) in zip(points, normalized_points):
                zf, zc = int(torch.floor(nz)), int(torch.ceil(nz))
                itemf = self._interpolate_2D(
                    points=torch.tensor([[[x, y]]]), matrices=tensor[None, :, :, :, zf]
                )
                itemc = self._interpolate_2D(
                    points=torch.tensor([[[x, y]]]), matrices=tensor[None, :, :, :, zc]
                )
                tmp = self._interpolate_1D(
                    points=torch.tensor([[[z]]]),
                    vectors=torch.cat((itemf, itemc), dim=1).permute(0, 2, 1),
                )
                newrow.append(tmp)
            result.append(torch.cat(newrow, dim=1))
        return torch.cat(result)

    def test_interpolation(self):

        with self.subTest("1D interpolation"):
            points = self.get_random_normalized_points(
                n_grids=4, n_points=5, dimension=1
            )
            vector = torch.randn(size=(4, 3, 2))
            assert torch.allclose(
                self._interpolate_1D(points, vector),
                interpolate_line(
                    points,
                    vector,
                    align_corners=True,
                    padding_mode="zeros",
                    mode="bilinear",
                ),
Darijan Gudelj's avatar
Darijan Gudelj committed
293
294
                rtol=0.0001,
                atol=0.0001,
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
            )
        with self.subTest("2D interpolation"):
            points = self.get_random_normalized_points(
                n_grids=4, n_points=5, dimension=2
            )
            matrix = torch.randn(size=(4, 2, 3, 5))
            assert torch.allclose(
                self._interpolate_2D(points, matrix),
                interpolate_plane(
                    points,
                    matrix,
                    align_corners=True,
                    padding_mode="zeros",
                    mode="bilinear",
                ),
Darijan Gudelj's avatar
Darijan Gudelj committed
310
311
                rtol=0.0001,
                atol=0.0001,
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
            )

        with self.subTest("3D interpolation"):
            points = self.get_random_normalized_points(
                n_grids=4, n_points=5, dimension=3
            )
            tensor = torch.randn(size=(4, 5, 2, 7, 2))
            assert torch.allclose(
                self._interpolate_3D(points, tensor),
                interpolate_volume(
                    points,
                    tensor,
                    align_corners=True,
                    padding_mode="zeros",
                    mode="bilinear",
                ),
328
                rtol=0.0001,
Darijan Gudelj's avatar
Darijan Gudelj committed
329
                atol=0.0001,
330
331
332
333
334
335
336
            )

    def test_floating_point_query(self):
        """
        test querying the voxel grids on some float positions
        """
        with self.subTest("FullResolution"):
Darijan Gudelj's avatar
Darijan Gudelj committed
337
338
339
340
            grid = FullResolutionVoxelGrid(
                n_features=1, resolution_changes={0: (1, 1, 1)}
            )
            params = grid.values_type(**grid.get_shapes(epoch=0))
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
            params.voxel_grid = torch.tensor(
                [
                    [
                        [[[1, 3], [5, 7]], [[9, 11], [13, 15]]],
                        [[[2, 4], [6, 8]], [[10, 12], [14, 16]]],
                    ],
                    [
                        [[[17, 18], [19, 20]], [[21, 22], [23, 24]]],
                        [[[25, 26], [27, 28]], [[29, 30], [31, 32]]],
                    ],
                ],
                dtype=torch.float,
            )
            points = (
                torch.tensor(
                    [
                        [
                            [1, 0, 1],
                            [0.5, 1, 1],
                            [1 / 3, 1 / 3, 2 / 3],
                        ],
                        [
                            [0, 1, 1],
                            [0, 0.5, 1],
                            [1 / 4, 1 / 4, 3 / 4],
                        ],
                    ]
                )
                / torch.tensor([[1.0, 1, 1]])
                * 2
                - 1
            )
            expected_result = torch.tensor(
                [
                    [[11, 12], [11, 12], [6.333333, 7.3333333]],
                    [[20, 28], [19, 27], [19.25, 27.25]],
                ]
            )

            assert torch.allclose(
                grid.evaluate_local(points, params),
                expected_result,
Darijan Gudelj's avatar
Darijan Gudelj committed
383
384
                rtol=0.0001,
                atol=0.0001,
385
386
387
            ), grid.evaluate_local(points, params)
        with self.subTest("CP"):
            grid = CPFactorizedVoxelGrid(
Darijan Gudelj's avatar
Darijan Gudelj committed
388
                n_features=1, resolution_changes={0: (1, 1, 1)}, n_components=3
389
            )
Darijan Gudelj's avatar
Darijan Gudelj committed
390
            params = grid.values_type(**grid.get_shapes(epoch=0))
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
            params.vector_components_x = torch.tensor(
                [
                    [[1, 2], [10.5, 20.5]],
                    [[10, 20], [2, 4]],
                ]
            )
            params.vector_components_y = torch.tensor(
                [
                    [[3, 4, 5], [30.5, 40.5, 50.5]],
                    [[30, 40, 50], [1, 3, 5]],
                ]
            )
            params.vector_components_z = torch.tensor(
                [
                    [[6, 7, 8, 9], [60.5, 70.5, 80.5, 90.5]],
                    [[60, 70, 80, 90], [6, 7, 8, 9]],
                ]
            )
            params.basis_matrix = torch.tensor(
                [
                    [[2.0], [2.0]],
                    [[1.0], [2.0]],
                ]
            )
            points = (
                torch.tensor(
                    [
                        [
                            [0, 2, 2],
                            [1, 2, 0.25],
                            [0.5, 0.5, 1],
                            [1 / 3, 2 / 3, 2 + 1 / 3],
                        ],
                        [
                            [1, 0, 1],
                            [0.5, 2, 2],
                            [1, 0.5, 0.5],
                            [1 / 4, 3 / 4, 2 + 1 / 4],
                        ],
                    ]
                )
                / torch.tensor([[[1.0, 2, 3]]])
                * 2
                - 1
            )
            expected_result_matrix = torch.tensor(
                [
                    [[85450.25], [130566.5], [77658.75], [86285.422]],
                    [[42056], [60240], [45604], [38775]],
                ]
            )
            expected_result_sum = torch.tensor(
                [
                    [[42725.125], [65283.25], [38829.375], [43142.711]],
                    [[42028], [60120], [45552], [38723.4375]],
                ]
            )
            with self.subTest("CP with basis_matrix reduction"):
                assert torch.allclose(
                    grid.evaluate_local(points, params),
                    expected_result_matrix,
Darijan Gudelj's avatar
Darijan Gudelj committed
452
453
                    rtol=0.0001,
                    atol=0.0001,
454
455
456
457
458
459
                )
            del params.basis_matrix
            with self.subTest("CP with sum reduction"):
                assert torch.allclose(
                    grid.evaluate_local(points, params),
                    expected_result_sum,
Darijan Gudelj's avatar
Darijan Gudelj committed
460
461
                    rtol=0.0001,
                    atol=0.0001,
462
463
464
465
                )

        with self.subTest("VM"):
            grid = VMFactorizedVoxelGrid(
Darijan Gudelj's avatar
Darijan Gudelj committed
466
                n_features=1, resolution_changes={0: (1, 1, 1)}, n_components=3
467
            )
Darijan Gudelj's avatar
Darijan Gudelj committed
468
            params = VMFactorizedVoxelGrid.values_type(**grid.get_shapes(epoch=0))
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
            params.matrix_components_xy = torch.tensor(
                [
                    [[[1, 2], [3, 4]], [[19, 20], [21, 22.0]]],
                    [[[35, 36], [37, 38]], [[39, 40], [41, 42]]],
                ]
            )
            params.matrix_components_xz = torch.tensor(
                [
                    [[[7, 8], [9, 10]], [[25, 26], [27, 28.0]]],
                    [[[43, 44], [45, 46]], [[47, 48], [49, 50]]],
                ]
            )
            params.matrix_components_yz = torch.tensor(
                [
                    [[[13, 14], [15, 16]], [[31, 32], [33, 34.0]]],
                    [[[51, 52], [53, 54]], [[55, 56], [57, 58.0]]],
                ]
            )

            params.vector_components_z = torch.tensor(
                [
                    [[5, 6], [23, 24.0]],
                    [[59, 60], [61, 62]],
                ]
            )
            params.vector_components_y = torch.tensor(
                [
                    [[11, 12], [29, 30.0]],
                    [[63, 64], [65, 66]],
                ]
            )
            params.vector_components_x = torch.tensor(
                [
                    [[17, 18], [35, 36.0]],
                    [[67, 68], [69, 70.0]],
                ]
            )

            params.basis_matrix = torch.tensor(
                [
                    [2, 2, 2, 2, 2, 2.0],
                    [1, 2, 1, 2, 1, 2.0],
                ]
            )[:, :, None]
            points = (
                torch.tensor(
                    [
                        [
                            [1, 0, 1],
                            [0.5, 1, 1],
                            [1 / 3, 1 / 3, 2 / 3],
                        ],
                        [
                            [0, 1, 0],
                            [0, 0, 0],
                            [0, 1, 0],
                        ],
                    ]
                )
                / torch.tensor([[[1.0, 1, 1]]])
                * 2
                - 1
            )
            expected_result_matrix = torch.tensor(
                [
                    [[5696], [5854], [5484.888]],
                    [[27377], [26649], [27377]],
                ]
            )
            expected_result_sum = torch.tensor(
                [
                    [[2848], [2927], [2742.444]],
                    [[17902], [17420], [17902]],
                ]
            )
            with self.subTest("VM with basis_matrix reduction"):
                assert torch.allclose(
                    grid.evaluate_local(points, params),
                    expected_result_matrix,
Darijan Gudelj's avatar
Darijan Gudelj committed
548
549
                    rtol=0.0001,
                    atol=0.0001,
550
551
552
553
554
555
556
                )
            del params.basis_matrix
            with self.subTest("VM with sum reduction"):
                assert torch.allclose(
                    grid.evaluate_local(points, params),
                    expected_result_sum,
                    rtol=0.0001,
Darijan Gudelj's avatar
Darijan Gudelj committed
557
                    atol=0.0001,
558
559
560
561
562
563
564
565
566
567
568
569
                ), grid.evaluate_local(points, params)

    def test_forward_with_small_init_std(self):
        """
        Test does the grid return small values if it is initialized with small
        mean and small standard deviation.
        """

        def test(cls, **kwargs):
            with self.subTest(cls.__name__):
                n_grids = 3
                grid = cls(**kwargs)
Darijan Gudelj's avatar
Darijan Gudelj committed
570
                shapes = grid.get_shapes(epoch=0)
571
572
573
574
575
576
577
578
579
580
581
582
583
584
                params = cls.values_type(
                    **{
                        k: torch.normal(mean=torch.zeros(n_grids, *shape), std=0.0001)
                        for k, shape in shapes.items()
                    }
                )
                points = self.get_random_normalized_points(n_grids=n_grids, n_points=3)
                max_expected_result = torch.zeros((len(points), 10)) + 1e-2
                assert torch.all(
                    grid.evaluate_local(points, params) < max_expected_result
                )

        test(
            FullResolutionVoxelGrid,
Darijan Gudelj's avatar
Darijan Gudelj committed
585
            resolution_changes={0: (4, 6, 9)},
586
587
588
589
            n_features=10,
        )
        test(
            CPFactorizedVoxelGrid,
Darijan Gudelj's avatar
Darijan Gudelj committed
590
            resolution_changes={0: (4, 6, 9)},
591
592
593
594
595
            n_features=10,
            n_components=3,
        )
        test(
            VMFactorizedVoxelGrid,
Darijan Gudelj's avatar
Darijan Gudelj committed
596
            resolution_changes={0: (4, 6, 9)},
597
598
599
            n_features=10,
            n_components=3,
        )
Darijan Gudelj's avatar
Darijan Gudelj committed
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622

    def test_voxel_grid_module_location(self, n_times=10):
        """
        This checks the module uses locator correctly etc..

        If we know that voxel grids work for (x, y, z) in local coordinates
        to test if the VoxelGridModule does not have permuted dimensions we
        create local coordinates, pass them through verified voxelgrids and
        compare the result with the result that we get when we convert
        coordinates to world and pass them through the VoxelGridModule
        """
        for _ in range(n_times):
            extents = tuple(torch.randint(1, 50, size=(3,)).tolist())

            grid = VoxelGridModule(extents=extents)
            local_point = torch.rand(1, 3) * 2 - 1
            world_point = local_point * torch.tensor(extents) / 2
            grid_values = grid.voxel_grid.values_type(**grid.params)

            assert torch.allclose(
                grid(world_point)[0, 0],
                grid.voxel_grid.evaluate_local(local_point[None], grid_values)[0, 0, 0],
                rtol=0.0001,
Darijan Gudelj's avatar
Darijan Gudelj committed
623
                atol=0.0001,
Darijan Gudelj's avatar
Darijan Gudelj committed
624
            )
Darijan Gudelj's avatar
Darijan Gudelj committed
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695

    def test_resolution_change(self, n_times=10):
        for _ in range(n_times):
            n_grids, n_features, n_components = torch.randint(1, 3, (3,)).tolist()
            resolution = torch.randint(3, 10, (3,)).tolist()
            resolution2 = torch.randint(3, 10, (3,)).tolist()
            resolution_changes = {0: resolution, 1: resolution2}
            n_components *= 3
            for cls, kwargs in (
                (
                    FullResolutionVoxelGrid,
                    {
                        "n_features": n_features,
                        "resolution_changes": resolution_changes,
                    },
                ),
                (
                    CPFactorizedVoxelGrid,
                    {
                        "n_features": n_features,
                        "resolution_changes": resolution_changes,
                        "n_components": n_components,
                    },
                ),
                (
                    VMFactorizedVoxelGrid,
                    {
                        "n_features": n_features,
                        "resolution_changes": resolution_changes,
                        "n_components": n_components,
                    },
                ),
            ):
                with self.subTest(cls.__name__):
                    grid = cls(**kwargs)
                    self.assertEqual(grid.get_resolution(epoch=0), resolution)
                    shapes = grid.get_shapes(epoch=0)
                    params = {
                        name: torch.randn((n_grids, *shape))
                        for name, shape in shapes.items()
                    }
                    grid_values = grid.values_type(**params)
                    grid_values_changed_resolution, change = grid.change_resolution(
                        epoch=1,
                        grid_values=grid_values,
                        mode="linear",
                    )
                    assert change
                    self.assertEqual(grid.get_resolution(epoch=1), resolution2)
                    shapes_changed_resolution = grid.get_shapes(epoch=1)
                    for name, expected_shape in shapes_changed_resolution.items():
                        shape = getattr(grid_values_changed_resolution, name).shape
                        self.assertEqual(expected_shape, shape[1:])

        with self.subTest("VoxelGridModule"):
            n_changes = 10
            grid = VoxelGridModule()
            resolution_changes = {i: (i + 2, i + 2, i + 2) for i in range(n_changes)}
            grid.voxel_grid = FullResolutionVoxelGrid(
                resolution_changes=resolution_changes
            )
            epochs, apply_func = grid.subscribe_to_epochs()
            self.assertEqual(list(range(n_changes)), list(epochs))
            for epoch in epochs:
                change = apply_func(epoch)
                assert change
                self.assertEqual(
                    resolution_changes[epoch],
                    grid.voxel_grid.get_resolution(epoch=epoch),
                )

Darijan Gudelj's avatar
Darijan Gudelj committed
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
    def _get_min_max_tuple(
        self, n=4, denominator_base=2, max_exponent=6, add_edge_cases=True
    ):
        if add_edge_cases:
            n -= 2

        def get_pair():
            def get_one():
                sign = -1 if torch.rand((1,)) < 0.5 else 1
                exponent = int(torch.randint(1, max_exponent, (1,)))
                denominator = denominator_base**exponent
                numerator = int(torch.randint(1, denominator, (1,)))
                return sign * numerator / denominator * 1.0

            while True:
                a, b = get_one(), get_one()
                if a < b:
                    return a, b

        for _ in range(n):
            a, b, c = get_pair(), get_pair(), get_pair()
            yield torch.tensor((a[0], b[0], c[0])), torch.tensor((a[1], b[1], c[1]))
        if add_edge_cases:
            yield torch.tensor((-1.0, -1.0, -1.0)), torch.tensor((1.0, 1.0, 1.0))
            yield torch.tensor([0.0, 0.0, 0.0]), torch.tensor([1.0, 1.0, 1.0])

    def test_cropping_voxel_grids(self, n_times=1):
        """
        If the grid is 1d and we crop at A and B
        ---------A---------B---
        and choose point p between them
        ---------A-----p---B---
        it can be represented as
        p = A + (B-A) * p_c
        where p_c is local coordinate of p in cropped grid. So we now just see
        if grid evaluated at p and cropped grid evaluated at p_c agree.
        """
        for points_min, points_max in self._get_min_max_tuple(n=10):
            n_grids, n_features, n_components = torch.randint(1, 3, (3,)).tolist()
            n_grids = 1
            n_components *= 3
            resolution_changes = {0: (128 + 1, 128 + 1, 128 + 1)}
            for cls, kwargs in (
                (
                    FullResolutionVoxelGrid,
                    {
                        "n_features": n_features,
                        "resolution_changes": resolution_changes,
                    },
                ),
                (
                    CPFactorizedVoxelGrid,
                    {
                        "n_features": n_features,
                        "resolution_changes": resolution_changes,
                        "n_components": n_components,
                    },
                ),
                (
                    VMFactorizedVoxelGrid,
                    {
                        "n_features": n_features,
                        "resolution_changes": resolution_changes,
                        "n_components": n_components,
                    },
                ),
            ):
                with self.subTest(
                    cls.__name__ + f" points {points_min} and {points_max}"
                ):
                    grid = cls(**kwargs)
                    shapes = grid.get_shapes(epoch=0)
                    params = {
                        name: torch.normal(
                            mean=torch.zeros((n_grids, *shape)),
                            std=1,
                        )
                        for name, shape in shapes.items()
                    }
                    grid_values = grid.values_type(**params)

                    grid_values_cropped = grid.crop_local(
                        points_min, points_max, grid_values
                    )

                    points_local_cropped = torch.rand((1, n_times, 3))
                    points_local = (
                        points_min[None, None]
                        + (points_max - points_min)[None, None] * points_local_cropped
                    )
                    points_local_cropped = (points_local_cropped - 0.5) * 2

                    pred = grid.evaluate_local(points_local, grid_values)
                    pred_cropped = grid.evaluate_local(
                        points_local_cropped, grid_values_cropped
                    )

                    assert torch.allclose(pred, pred_cropped, rtol=1e-4, atol=1e-4), (
                        pred,
                        pred_cropped,
                        points_local,
                        points_local_cropped,
                    )

    def test_cropping_voxel_grid_module(self, n_times=1):
        for points_min, points_max in self._get_min_max_tuple(n=5, max_exponent=5):
            extents = torch.ones((3,)) * 2
            translation = torch.ones((3,)) * 0.2
            points_min += translation
            points_max += translation

            default_cfg = get_default_args(VoxelGridModule)
            custom_cfg = DictConfig(
                {
                    "extents": tuple(float(e) for e in extents),
                    "translation": tuple(float(t) for t in translation),
                    "voxel_grid_FullResolutionVoxelGrid_args": {
                        "resolution_changes": {0: (128 + 1, 128 + 1, 128 + 1)}
                    },
                }
            )
            cfg = OmegaConf.merge(default_cfg, custom_cfg)
            grid = VoxelGridModule(**cfg)

            points = (torch.rand(3) * (points_max - points_min) + points_min)[None]
            result = grid(points)
            grid.crop_self(points_min, points_max)
            result_cropped = grid(points)

            assert torch.allclose(result, result_cropped, rtol=0.001, atol=0.001), (
                result,
                result_cropped,
            )

Darijan Gudelj's avatar
Darijan Gudelj committed
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
    def test_loading_state_dict(self):
        """
        Test loading state dict after rescaling.

        Create a voxel grid, rescale it and get the state_dict.
        Create a new voxel grid with the same args as the first one and load
        the state_dict and check if everything is ok.
        """
        n_changes = 10

        resolution_changes = {i: (i + 2, i + 2, i + 2) for i in range(n_changes)}
        cfg = DictConfig(
            {
                "voxel_grid_class_type": "VMFactorizedVoxelGrid",
                "voxel_grid_VMFactorizedVoxelGrid_args": {
                    "resolution_changes": resolution_changes,
                    "n_components": 48,
                },
            }
        )
        grid = VoxelGridModule(**cfg)
        epochs, apply_func = grid.subscribe_to_epochs()
        for epoch in epochs:
            apply_func(epoch)

        loaded_grid = VoxelGridModule(**cfg)
        loaded_grid.load_state_dict(grid.state_dict())
        for name_loaded, param_loaded in loaded_grid.named_parameters():
            for name, param in grid.named_parameters():
                if name_loaded == name:
                    torch.allclose(param_loaded, param)