(self, transform: Callable[[Any], Any] = None)
| 187 | |
| 188 | |
| 189 | def _pytorch(self, transform: Callable[[Any], Any] = None): |
| 190 | from deeplake._torch import TorchDataset |
| 191 | |
| 192 | return TorchDataset(self, transform=transform) |
| 193 | |
| 194 | |
| 195 | DatasetView.pytorch = _pytorch |
nothing calls this directly
no test coverage detected