├── .gitignore ├── README.md ├── dataset.py ├── figs ├── RM.png └── RM.svg ├── logs ├── log_ade20k_80k_upernet_r50_baseline_40.40_miou.json ├── log_ade20k_80k_upernet_r50_cutmix_41.24_miou.json ├── log_ade20k_80k_upernet_r50_rm_42.30_miou.json ├── log_cifar10_300epoch_pyramidnet_rm_97.60_top1_acc.log ├── log_cifar10_300epoch_pyramidnet_rm_97.62_top1_acc.log ├── log_cifar10_300epoch_pyramidnet_rm_97.72_top1_acc.log ├── log_coco_12epoch_atss_r50_fpn_cutmix_40.1_ap.json ├── log_coco_12epoch_atss_r50_fpn_rm_41.5_ap.json └── log_imagenet_300epoch_r50_rm_79.20_top1_acc.log ├── loss ├── __init__.py └── label_smooth_loss.py ├── main.py ├── models_cifar ├── __init__.py ├── densenet.py ├── pyramidnet.py └── resnet.py ├── models_imagenet ├── __init__.py └── resnet.py ├── samplers.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/dataset.py -------------------------------------------------------------------------------- /figs/RM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/figs/RM.png -------------------------------------------------------------------------------- /figs/RM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/figs/RM.svg -------------------------------------------------------------------------------- /logs/log_ade20k_80k_upernet_r50_baseline_40.40_miou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_ade20k_80k_upernet_r50_baseline_40.40_miou.json -------------------------------------------------------------------------------- /logs/log_ade20k_80k_upernet_r50_cutmix_41.24_miou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_ade20k_80k_upernet_r50_cutmix_41.24_miou.json -------------------------------------------------------------------------------- /logs/log_ade20k_80k_upernet_r50_rm_42.30_miou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_ade20k_80k_upernet_r50_rm_42.30_miou.json -------------------------------------------------------------------------------- /logs/log_cifar10_300epoch_pyramidnet_rm_97.60_top1_acc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_cifar10_300epoch_pyramidnet_rm_97.60_top1_acc.log -------------------------------------------------------------------------------- /logs/log_cifar10_300epoch_pyramidnet_rm_97.62_top1_acc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_cifar10_300epoch_pyramidnet_rm_97.62_top1_acc.log -------------------------------------------------------------------------------- /logs/log_cifar10_300epoch_pyramidnet_rm_97.72_top1_acc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_cifar10_300epoch_pyramidnet_rm_97.72_top1_acc.log -------------------------------------------------------------------------------- /logs/log_coco_12epoch_atss_r50_fpn_cutmix_40.1_ap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_coco_12epoch_atss_r50_fpn_cutmix_40.1_ap.json -------------------------------------------------------------------------------- /logs/log_coco_12epoch_atss_r50_fpn_rm_41.5_ap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_coco_12epoch_atss_r50_fpn_rm_41.5_ap.json -------------------------------------------------------------------------------- /logs/log_imagenet_300epoch_r50_rm_79.20_top1_acc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/logs/log_imagenet_300epoch_r50_rm_79.20_top1_acc.log -------------------------------------------------------------------------------- /loss/__init__.py: -------------------------------------------------------------------------------- 1 | from .label_smooth_loss import * -------------------------------------------------------------------------------- /loss/label_smooth_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/loss/label_smooth_loss.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /models_cifar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/models_cifar/__init__.py -------------------------------------------------------------------------------- /models_cifar/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/models_cifar/densenet.py -------------------------------------------------------------------------------- /models_cifar/pyramidnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/models_cifar/pyramidnet.py -------------------------------------------------------------------------------- /models_cifar/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/models_cifar/resnet.py -------------------------------------------------------------------------------- /models_imagenet/__init__.py: -------------------------------------------------------------------------------- 1 | from .resnet import * 2 | -------------------------------------------------------------------------------- /models_imagenet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/models_imagenet/resnet.py -------------------------------------------------------------------------------- /samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/samplers.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/implus/RecursiveMix-pytorch/HEAD/utils.py --------------------------------------------------------------------------------