LiJunnan1992 / DivideMix

Code for paper: DivideMix: Learning with Noisy Labels as Semi-supervised Learning
MIT License
529 stars 83 forks source link

about number of data augmentations? #36

Closed abcde-1447 closed 2 years ago

abcde-1447 commented 2 years ago

Hi, thanks for sharing this repo!

I have been reading your code together with your paper, and noticed that in your paper you mentioned to run M data augmentations for unlabeled data, while in https://github.com/LiJunnan1992/DivideMix/blob/d9d3058fa69a952463b896f84730378cdee6ec39/dataloader_cifar.py#L113-L114, there are 2 transformations, I am wondering if you have fixed M=2 here, or did I misunderstand something?

BTW, do you think this method is applicable to regression problem as well?

Thank you!

LiJunnan1992 commented 2 years ago

Hi, as mentioned in the paper, we set M=2. I think it should be applicable to regression problem, but may require some modification depending on the task.

Thanks!

abcde-1447 commented 2 years ago

Thanks for the explanation!