숟가락 그만 얹어

Label Smoothing 본문

Research/Generalization

Label Smoothing

업무외시간 2020. 11. 19. 14:18

One-hot encoding된 y_train에 대해

 

factor = 0.2 # 적당한 값으로
y_train = (1 - factor) * y_train + (factor / num_classes)

 

References

[1] C. Szegedy et al., Rethinking the Inception Architecture for Computer Vision, CoRR 2015

'Research > Generalization' 카테고리의 다른 글

Mixup  (0) 2020.09.10