├── README.md ├── data ├── CIFAR10 │ └── label_noisy │ │ ├── asym0.4.csv │ │ ├── dependent0.4.csv │ │ └── sym0.4.csv ├── CIFAR100 │ └── label_noisy │ │ ├── asym0.4.csv │ │ ├── dependent0.4.csv │ │ └── sym0.4.csv └── Clothing1M │ └── annotations │ ├── clean_test.txt │ ├── clean_val.txt │ └── noisy_train.txt ├── dataset.py ├── networks ├── resnet.py └── wideresnet.py ├── noise_cifar_train.py ├── noise_clothing1m_train.py ├── results └── landscape.PNG └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/README.md -------------------------------------------------------------------------------- /data/CIFAR10/label_noisy/asym0.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/CIFAR10/label_noisy/asym0.4.csv -------------------------------------------------------------------------------- /data/CIFAR10/label_noisy/dependent0.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/CIFAR10/label_noisy/dependent0.4.csv -------------------------------------------------------------------------------- /data/CIFAR10/label_noisy/sym0.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/CIFAR10/label_noisy/sym0.4.csv -------------------------------------------------------------------------------- /data/CIFAR100/label_noisy/asym0.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/CIFAR100/label_noisy/asym0.4.csv -------------------------------------------------------------------------------- /data/CIFAR100/label_noisy/dependent0.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/CIFAR100/label_noisy/dependent0.4.csv -------------------------------------------------------------------------------- /data/CIFAR100/label_noisy/sym0.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/CIFAR100/label_noisy/sym0.4.csv -------------------------------------------------------------------------------- /data/Clothing1M/annotations/clean_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/Clothing1M/annotations/clean_test.txt -------------------------------------------------------------------------------- /data/Clothing1M/annotations/clean_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/Clothing1M/annotations/clean_val.txt -------------------------------------------------------------------------------- /data/Clothing1M/annotations/noisy_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/data/Clothing1M/annotations/noisy_train.txt -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/dataset.py -------------------------------------------------------------------------------- /networks/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/networks/resnet.py -------------------------------------------------------------------------------- /networks/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/networks/wideresnet.py -------------------------------------------------------------------------------- /noise_cifar_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/noise_cifar_train.py -------------------------------------------------------------------------------- /noise_clothing1m_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/noise_clothing1m_train.py -------------------------------------------------------------------------------- /results/landscape.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/results/landscape.PNG -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenpf1025/SLN/HEAD/utils.py --------------------------------------------------------------------------------