├── Figure.png ├── README.md ├── Table1.png ├── Table2.png ├── Table3.png ├── data ├── Clothing1M.py ├── __init__.py ├── image_folder.py ├── imbalance_cifar.py └── noisy_cifar.py ├── main.py ├── main_web.py ├── model ├── MLPHeader.py ├── ResNet32.py └── SevenCNN.py ├── requirements.txt ├── run.sh ├── util.py └── utils ├── NoisyUtils.py ├── QaQ.py ├── SCR.py ├── SCS.py ├── __init__.py ├── builder.py ├── core.py ├── ema.py ├── eval.py ├── logger.py ├── loss.py ├── mask.py ├── mask_figure.py ├── mask_loss.py ├── meter.py ├── module.py ├── plotter.py ├── qaq_v2.py └── utils.py /Figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/Figure.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/README.md -------------------------------------------------------------------------------- /Table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/Table1.png -------------------------------------------------------------------------------- /Table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/Table2.png -------------------------------------------------------------------------------- /Table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/Table3.png -------------------------------------------------------------------------------- /data/Clothing1M.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/data/Clothing1M.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /data/imbalance_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/data/imbalance_cifar.py -------------------------------------------------------------------------------- /data/noisy_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/data/noisy_cifar.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/main.py -------------------------------------------------------------------------------- /main_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/main_web.py -------------------------------------------------------------------------------- /model/MLPHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/model/MLPHeader.py -------------------------------------------------------------------------------- /model/ResNet32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/model/ResNet32.py -------------------------------------------------------------------------------- /model/SevenCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/model/SevenCNN.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/run.sh -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/util.py -------------------------------------------------------------------------------- /utils/NoisyUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/NoisyUtils.py -------------------------------------------------------------------------------- /utils/QaQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/QaQ.py -------------------------------------------------------------------------------- /utils/SCR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/SCR.py -------------------------------------------------------------------------------- /utils/SCS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/SCS.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/builder.py -------------------------------------------------------------------------------- /utils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/core.py -------------------------------------------------------------------------------- /utils/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/ema.py -------------------------------------------------------------------------------- /utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/eval.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/mask.py -------------------------------------------------------------------------------- /utils/mask_figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/mask_figure.py -------------------------------------------------------------------------------- /utils/mask_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/mask_loss.py -------------------------------------------------------------------------------- /utils/meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/meter.py -------------------------------------------------------------------------------- /utils/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/module.py -------------------------------------------------------------------------------- /utils/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/plotter.py -------------------------------------------------------------------------------- /utils/qaq_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/qaq_v2.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUST-Machine-Intelligence-Laboratory/SED/HEAD/utils/utils.py --------------------------------------------------------------------------------