ENAS-pytorch
ENAS-pytorch copied to clipboard
AttributeError: 'str' object has no attribute 'datset'
Traceback (most recent call last):
File "main.py", line 48, in
@marsggbo Do you handle this problem? I met it, too.
I think this is a bug. I fixed it by remove all the if-else in data.image.Image.init, and the code run normally
I fixed it by change the value of the function parameter
(1) File "main.py", line 26 dataset = data.image.Image(args.data_path) change into: dataset = data.image.Image(args)
(2)File "/data/image.py", line 8 if args.dataset == 'cifar10': change into: if args.dataset == 'cifar':
@ZTao-z I try this method. But when i change dataset = data.image.Image(args.data_path) into dataset = data.image.Image(args). I meet a problem AttributeError: 'Namespace' object has no attribute 'num_workers' Do you have meet this problem when you change the value?
@ZTao-z I try this method. But when i change dataset = data.image.Image(args.data_path) into dataset = data.image.Image(args). I meet a problem AttributeError: 'Namespace' object has no attribute 'num_workers' Do you have meet this problem when you change the value?
My situation is the same as yours. How did you solve this problem in the end?