AttributeError: 'NoneType' object has no attribute 'dataloader_num_workers'
sampler=train_sampler,
286 batch_size=self.args.train_batch_size,
--> 287 num_workers=args.dataloader_num_workers,
288 )
Me too
Same here. Looks to be a typo at line 287. args.dataloader_num_workers probably should be self.args.dataloader_num_workers. After manually fixing that, everything started working.
Same here. Looks to be a typo at line 287.
args.dataloader_num_workersprobably should beself.args.dataloader_num_workers. After manually fixing that, everything started working.
Yep even I was thinking the same
Yeah, you guys are right. I'll push a fix soon.
I have same error
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
Yeah, you guys are right. I'll push a fix soon.