If you have many SpatioTemporalDatasets, e.g. experiments with different numbers of sensors (i.e. nodes), what would be the best way to combining them to make a single dataset?
Or is it preferred to create a list of Data objects for each dataset above, concatenate them (i.e. data_list.extend(more_data)) and iterate using DisjointBatch?
Another option could be to create a ConcatDataset but I think this breaks the batching, but does create a list of Data objects as I described above