(self)
| 19 | def test_torch_tensor(self): |
| 20 | a = tensor([1, 2, 3]) |
| 21 | b = torch.tensor([1, 2, 3]) |
| 22 | |
| 23 | self.assertTrue(torch.all(a == b)) |
| 24 | |
| 25 | def test_tabular(self): |
| 26 | dls = TabularDataLoaders.from_csv( |
| 27 | "/input/tests/data/train.csv", |
| 28 | cont_names=["pixel" + str(i) for i in range(784)], |
nothing calls this directly
no outgoing calls
no test coverage detected