Use different number of data

I have 2 Dataloader. one have 50,000 images and another have 70,000 images.
If I use dataloader like this
for batch_idx, (data1, data2) in enumerate(zip(data_loader1, data_loader2)): ...
only can use 50,000 images ?

You can use ConcatDataset().