(self)
| 41 | |
| 42 | class SparseTensorTestCase(unittest.TestCase): |
| 43 | def test(self): |
| 44 | print(f"{self.__class__.__name__}: test SparseTensor") |
| 45 | coords, feats, labels = data_loader(nchannel=2) |
| 46 | input = SparseTensor(feats, coordinates=coords) |
| 47 | print(input) |
| 48 | |
| 49 | def test_empty(self): |
| 50 | print(f"{self.__class__.__name__}: test_empty SparseTensor") |
nothing calls this directly
no test coverage detected