VDIGPKU / DADA

[ECCV 2020] DADA: Differentiable Automatic Data Augmentation
MIT License
189 stars 30 forks source link

Why you put two "elif dataset == 'reduced'": #19

Closed leoozy closed 3 years ago

leoozy commented 3 years ago

Hello, thank you for your excellent work. I noticed that there are two elif dataset == 'reduced_imagenet': in your dataset.py. It means that if you run this code, the second elif will not work. Is this an mistake.

latstars commented 3 years ago

I think you can use the first reduced_imagenet. The second reduced_imagenet does not matter the first reduced_imagenet. The second reduced_imagenet is just for reference when modifying the code.

leoozy commented 3 years ago

Thank you