Open lqycrystal opened 5 years ago
I get this error too
self.train_loader1, self.train_loader2, self.val_loader, self.test_loader, self.nclass = make_data_loader(args, **kwargs) ValueError: not enough values to unpack (expected 5, got 4)
you need to modify dataloaders/init.py, the function make_data_loader() should return train_loader twice.
I just change the output to output a single train_loader, @dagongji10 do you see any reason we need two?
@NoamRosenberg I guess train_loader1 is for and train_loader2 is for
I have not finish the code-reading, so I'm not sure.
@dagongji10 which train do you use for calculate_weigths_labels in the init function in train_autodeeplab.py ??
trainA and trainB is not same in the original paper, while I think the code make trainA and trainB same.
self.train_loader1, self.train_loader2, self.val_loader, self.test_loader, self.nclass = make_data_loader(args, **kwargs) ValueError: not enough values to unpack (expected 5, got 4)