Compare commits
No commits in common. "c83b93e0bfcd8554785a3d233e5d15d7f9666b47" and "9df896bb706828a196f4f6658c6150137a3e5e13" have entirely different histories.
c83b93e0bf
...
9df896bb70
@ -352,7 +352,7 @@ def fetch_dataloader(args):
|
||||
train_dataset = new_dataset if train_dataset is None else train_dataset + new_dataset
|
||||
|
||||
train_loader = data.DataLoader(train_dataset, batch_size=args.batch_size,
|
||||
pin_memory=True, shuffle=True, num_workers=12, drop_last=True)
|
||||
pin_memory=True, shuffle=True, num_workers=int(os.environ.get('SLURM_CPUS_PER_TASK', 6))-2, drop_last=True)
|
||||
|
||||
logging.info('Training with %d image pairs' % len(train_dataset))
|
||||
return train_loader
|
||||
|
@ -22,6 +22,7 @@ from evaluate_stereo import *
|
||||
import core.stereo_datasets as datasets
|
||||
import torch.nn.functional as F
|
||||
|
||||
torch.backends.cudnn.benchmark = True
|
||||
|
||||
ckpt_path = './checkpoints/igev_stereo'
|
||||
log_path = './checkpoints/igev_stereo'
|
||||
|
Loading…
Reference in New Issue
Block a user