ildoonet / pytorch-randaugment

Unofficial PyTorch Reimplementation of RandAugment.
MIT License
627 stars 98 forks source link

It seems that you dont use Linear Evaluation Protocol? #33

Closed dahuaxiya closed 1 year ago

dahuaxiya commented 1 year ago
    top1, top5 = accuracy(logits, labels, topk=(1, 5))

the top1 accuracy doesn't seem like LEP accuracy, it seems the contrastive learning accuracy. Could you tell me where is the LEP code?please