├── README.md ├── data ├── __init__.py ├── cifar.py ├── datasets.py ├── mnist.py └── utils.py ├── loss.py ├── main_GLS_direct_train.py ├── main_GLS_load.py ├── main_warmup.py ├── models ├── __init__.py ├── nine_layer_cnn.py ├── resnet.py └── resnet_part.py ├── noise_label └── cifar-10 │ ├── CIFAR10_noise_r0_1.pt │ ├── CIFAR10_noise_r0_2.pt │ ├── CIFAR10_noise_r0_3.pt │ ├── CIFAR10_noise_r0_4.pt │ ├── CIFAR10_noise_r0_5.pt │ ├── CIFAR10_noise_r0_6.pt │ └── test_label.pt └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/data/cifar.py -------------------------------------------------------------------------------- /data/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/data/datasets.py -------------------------------------------------------------------------------- /data/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/data/mnist.py -------------------------------------------------------------------------------- /data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/data/utils.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/loss.py -------------------------------------------------------------------------------- /main_GLS_direct_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/main_GLS_direct_train.py -------------------------------------------------------------------------------- /main_GLS_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/main_GLS_load.py -------------------------------------------------------------------------------- /main_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/main_warmup.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/nine_layer_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/models/nine_layer_cnn.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnet_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/models/resnet_part.py -------------------------------------------------------------------------------- /noise_label/cifar-10/CIFAR10_noise_r0_1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/noise_label/cifar-10/CIFAR10_noise_r0_1.pt -------------------------------------------------------------------------------- /noise_label/cifar-10/CIFAR10_noise_r0_2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/noise_label/cifar-10/CIFAR10_noise_r0_2.pt -------------------------------------------------------------------------------- /noise_label/cifar-10/CIFAR10_noise_r0_3.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/noise_label/cifar-10/CIFAR10_noise_r0_3.pt -------------------------------------------------------------------------------- /noise_label/cifar-10/CIFAR10_noise_r0_4.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/noise_label/cifar-10/CIFAR10_noise_r0_4.pt -------------------------------------------------------------------------------- /noise_label/cifar-10/CIFAR10_noise_r0_5.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/noise_label/cifar-10/CIFAR10_noise_r0_5.pt -------------------------------------------------------------------------------- /noise_label/cifar-10/CIFAR10_noise_r0_6.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/noise_label/cifar-10/CIFAR10_noise_r0_6.pt -------------------------------------------------------------------------------- /noise_label/cifar-10/test_label.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/noise_label/cifar-10/test_label.pt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCSC-REAL/negative-label-smoothing/HEAD/requirements.txt --------------------------------------------------------------------------------