Combine two datasets #5759
Combine two datasets
#5759
-
How do you combine two datasets. The way I did was:
But that does not carry over all the data. Should I use:
or is there another way? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Oct 18, 2022
Replies: 1 comment
-
This is directly supported within PyTorch using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
anthonysirico
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is directly supported within PyTorch using
ConcatDataset
. Please take a look here.