Necessary extensions
Pre-release
Pre-release
This release was focused on missing functionalities, only minor improvements (beside documentation) and coverage this time.
This is the last pre-release before releasing for wider audience.
Major Features and Improvements:
- Refactor concrete
datasets
intotorchdata.datasets
module (onlytorchdata.Dataset
andtorchdata.Iterable
are now available insidetorchdata
main namespace) torchdata.Iterable
gotapply
(just liketorchdata.Dataset
) andfilter
abilities- Add
torchdata.datasets.WrapDataset
andtorchdata.datasets.WrapIterable
, which act as a proxy between existingtorch.utils.data.Dataset
/torch.utils.data.IterableDataset
andtorchdata
counterparts. Using those classes, one can easily transformtorchvision
datasets or any other pre-made and usemap
,cache
and a-like on them. torchdata.Dataset
gotreduce
operation
Bug fixes:
- Minor test coverage improvements in uncertain places