unsupervised-data-augmentation icon indicating copy to clipboard operation
unsupervised-data-augmentation copied to clipboard

Unofficial PyTorch Implementation of Unsupervised Data Augmentation.

Results 5 unsupervised-data-augmentation issues
Sort by recently updated
recently updated
newest added

Hi, I am curious whether if you will do experiments on ImageNet. The official repo didn't release the codes on this large dataset. But I see the TODO list in...

Inspired by the paper Mixmatch, mixup can be used in supervised data. In this way, we can achieve improved performance, even better than the native UDA. ![image](https://user-images.githubusercontent.com/37564754/63161916-db905a80-c053-11e9-80e3-81e2497a6afb.png)

I haven't found the Training Signal Annealing(TSA) function, why don't you implement it?

In the paper, the weight of unsup_loss is set to 1 to comput the whole loss,but in your code, the weight of unsup_loss is set as ratio_unsup=5.0. For example, https://github.com/ildoonet/unsupervised-data-augmentation/blob/master/train.py#L71...

https://github.com/ildoonet/unsupervised-data-augmentation/blob/master/train.py#L231, why a not in first bracket?