pytorch / data

A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.
BSD 3-Clause "New" or "Revised" License
1.13k stars 151 forks source link

pointer to a similar library / feedback #360

Open nlgranger opened 2 years ago

nlgranger commented 2 years ago

📚 The doc issue

Hi! I'm the author of a python library which is called SeqTools. It predates torchdata and provides essentially the same functionality as MapDataPipes. I just wanted to let you know about it, maybe you can pick some code or ideas out of it. For instance:

To be honest I have eventually steered away from using it in my deep learning pipelines. It is good for prototyping and pre-computing data. But in my training scripts I just refactor the transforms into a single big function. That is actually more convenient because all necessary variables (data, parameters, augmentation variables) are available in the same scope. I think this is an issue you might face as well in the future.

Suggest a potential alternative/fix

No response

VitalyFedyunin commented 2 years ago

Hi @nlgranger stack operations look interesting. Feel free to contribute code to our library.