(self, index)
| 40 | self.target_tensor = target_tensor |
| 41 | |
| 42 | def __getitem__(self, index): |
| 43 | return self.data_tensor[index], self.target_tensor[index] |
| 44 | |
| 45 | def __len__(self): |
| 46 | return self.data_tensor.size(0) |
nothing calls this directly
no outgoing calls
no test coverage detected