Replies: 1 comment 5 replies
-
Currently, we don't support this usecase.
We need to add something equivalent to pytorch's |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, i am curious why IterableDatasets are not supported in Avalanche? ( https://avalanche.continualai.org/how-tos/avalanchedataset/preamble-pytorch-datasets#quick-note-on-the-iterabledataset-class )
My plan is to use a webdataset (https://github.com/webdataset/webdataset) for avalanche which is a Pytorch IterableDataset.
This would be the best format because i have many small binary data files which get preprocessed by dataset transforms.
Is there really no way to use IterableDatasets in Avalanche? Then why is this the case? Because it has to be indexable?
I thought about creating multiple Iterable Datasets and then switching to the next one after the previous one was used completely.
So there would be one IterableDataset for each experience. Every dataset contains a different data distribution, so the data changes with every new dataset.
Is this a feasible strategy? (I am new to avalance).
Beta Was this translation helpful? Give feedback.
All reactions