It appears that we are specifying a batch size of 1 here:
|
train_loader = DataLoader(train_dataset, batch_size=1, shuffle=False) |
|
val_loader = DataLoader(val_dataset, batch_size=1, shuffle=False) |
Should we test other sizes? How can this affect the learning rate and/or performance?
It appears that we are specifying a batch size of 1 here:
reconClassifier/XPointMLTest.py
Lines 657 to 658 in 9d8d10b
Should we test other sizes? How can this affect the learning rate and/or performance?