Feature Request: Native dynamic data loaders/generators #2315
Replies: 2 comments
-
Hey! This is not a official stance but I think that the JAX ecosystem has opted to use either tf.data, Pytorch DataLoaders, or any pipeline really as long as you can efficiently convert it into numpy and pass it to JAX. With |
Beta Was this translation helpful? Give feedback.
-
Curious if this unofficial stance has changed? I found https://github.com/birkhoffg/jax-dataloader to have a nice, simple interface (especially for pure JAX data). The alternatives of tf, pythorch, etc. are pretty massive dependencies and many introductory users of ML find the custom dataloader code a little scary. Would a clean, simple JAX-only dataloader which uses the |
Beta Was this translation helpful? Give feedback.
-
To my knowledge, there is no native support for this feature. Can the data loaders/ data generators be added which will dynamically read in the data at the training time using python's native generators?
These can have functionalities like:
Similar to keras.utils.Sequence or torch.utils.data.DataLoader
If yes, I would like to contribute.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions