You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling the ContrastiveDataLoader to split the data, the batch_size is passed via self.data_loader_kwargs. However, when the parent class ConcatDataLoader(DataLoader) is invoked, batch_size is defined again with a fixed value. This causes a problem: the batch size configured for the model cannot be changed by the external parameter.