(self)
| 262 | print(tensor.interpolate(tfield)) |
| 263 | |
| 264 | def test_small2(self): |
| 265 | coords = torch.FloatTensor([[0, 0.1, 0.1], [0, 1.1, 1.1]]) |
| 266 | feats = torch.FloatTensor([[1], [2]]) |
| 267 | tfield = TensorField(coordinates=coords, features=feats) |
| 268 | tensor = tfield.splat() |
| 269 | print(tfield) |
| 270 | print(tensor) |
| 271 | print(tensor.interpolate(tfield)) |
nothing calls this directly
no test coverage detected