├── .gitignore ├── README.md ├── algorithms ├── Colearning.py ├── Coteaching.py ├── Coteachingplus.py ├── Decoupling.py ├── JoCoR.py ├── StandardCE.py └── __init__.py ├── configs ├── colearning.py ├── colearning_distribution.py ├── coteaching.py ├── coteachingplus.py ├── decoupling.py ├── jocor.py └── standardCE.py ├── datasets ├── __init__.py ├── cifar.py └── noise_datasets.py ├── figs └── architectures.png ├── losses ├── __init__.py ├── loss_coteaching.py ├── loss_jocor.py ├── loss_ntxent.py ├── loss_other.py ├── loss_structrue.py └── loss_utils.py ├── main.py ├── models ├── __init__.py ├── model.py └── resnet.py ├── requirements.txt └── utils ├── __init__.py ├── config.py ├── get_model.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/Colearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/algorithms/Colearning.py -------------------------------------------------------------------------------- /algorithms/Coteaching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/algorithms/Coteaching.py -------------------------------------------------------------------------------- /algorithms/Coteachingplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/algorithms/Coteachingplus.py -------------------------------------------------------------------------------- /algorithms/Decoupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/algorithms/Decoupling.py -------------------------------------------------------------------------------- /algorithms/JoCoR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/algorithms/JoCoR.py -------------------------------------------------------------------------------- /algorithms/StandardCE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/algorithms/StandardCE.py -------------------------------------------------------------------------------- /algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/algorithms/__init__.py -------------------------------------------------------------------------------- /configs/colearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/configs/colearning.py -------------------------------------------------------------------------------- /configs/colearning_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/configs/colearning_distribution.py -------------------------------------------------------------------------------- /configs/coteaching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/configs/coteaching.py -------------------------------------------------------------------------------- /configs/coteachingplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/configs/coteachingplus.py -------------------------------------------------------------------------------- /configs/decoupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/configs/decoupling.py -------------------------------------------------------------------------------- /configs/jocor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/configs/jocor.py -------------------------------------------------------------------------------- /configs/standardCE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/configs/standardCE.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/datasets/cifar.py -------------------------------------------------------------------------------- /datasets/noise_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/datasets/noise_datasets.py -------------------------------------------------------------------------------- /figs/architectures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/figs/architectures.png -------------------------------------------------------------------------------- /losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/losses/__init__.py -------------------------------------------------------------------------------- /losses/loss_coteaching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/losses/loss_coteaching.py -------------------------------------------------------------------------------- /losses/loss_jocor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/losses/loss_jocor.py -------------------------------------------------------------------------------- /losses/loss_ntxent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/losses/loss_ntxent.py -------------------------------------------------------------------------------- /losses/loss_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/losses/loss_other.py -------------------------------------------------------------------------------- /losses/loss_structrue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/losses/loss_structrue.py -------------------------------------------------------------------------------- /losses/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/losses/loss_utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/models/model.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/models/resnet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/get_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/utils/get_model.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengtan9907/Co-learning/HEAD/utils/tools.py --------------------------------------------------------------------------------