├── .gitignore ├── README.md ├── Train_promix.py ├── checkpoint └── README.md ├── dataloader_cifarn.py ├── model.py ├── requirements.txt ├── resources ├── framework.png ├── result_cf.png └── result_cfn.png ├── run.sh └── utils ├── __pycache__ ├── fmix.cpython-37.pyc ├── randaug.cpython-37.pyc └── utils.cpython-37.pyc ├── fmix.py ├── randaug.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/README.md -------------------------------------------------------------------------------- /Train_promix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/Train_promix.py -------------------------------------------------------------------------------- /checkpoint/README.md: -------------------------------------------------------------------------------- 1 | This dir is used to save logs. -------------------------------------------------------------------------------- /dataloader_cifarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/dataloader_cifarn.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/resources/framework.png -------------------------------------------------------------------------------- /resources/result_cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/resources/result_cf.png -------------------------------------------------------------------------------- /resources/result_cfn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/resources/result_cfn.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/run.sh -------------------------------------------------------------------------------- /utils/__pycache__/fmix.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/utils/__pycache__/fmix.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/randaug.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/utils/__pycache__/randaug.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/fmix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/utils/fmix.py -------------------------------------------------------------------------------- /utils/randaug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/utils/randaug.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justherozen/ProMix/HEAD/utils/utils.py --------------------------------------------------------------------------------