├── README.md ├── augmented ├── cutmix.py ├── cutout.py ├── dropblock │ ├── dropblock.py │ ├── resnet18_dropblock.py │ └── scheduler.py ├── label_smoothing.py ├── mixup.py ├── resnet18_manifold_mixup.py ├── resnet18_shakedrop.py ├── shakedrop.py └── stodepth.py └── data ├── cutmix.png ├── cutout.png ├── dropblock.png ├── image.png ├── mainfold_mixup.png ├── mixup.png ├── shakedrop.png └── stochdepth.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/README.md -------------------------------------------------------------------------------- /augmented/cutmix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/cutmix.py -------------------------------------------------------------------------------- /augmented/cutout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/cutout.py -------------------------------------------------------------------------------- /augmented/dropblock/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/dropblock/dropblock.py -------------------------------------------------------------------------------- /augmented/dropblock/resnet18_dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/dropblock/resnet18_dropblock.py -------------------------------------------------------------------------------- /augmented/dropblock/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/dropblock/scheduler.py -------------------------------------------------------------------------------- /augmented/label_smoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/label_smoothing.py -------------------------------------------------------------------------------- /augmented/mixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/mixup.py -------------------------------------------------------------------------------- /augmented/resnet18_manifold_mixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/resnet18_manifold_mixup.py -------------------------------------------------------------------------------- /augmented/resnet18_shakedrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/resnet18_shakedrop.py -------------------------------------------------------------------------------- /augmented/shakedrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/shakedrop.py -------------------------------------------------------------------------------- /augmented/stodepth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/augmented/stodepth.py -------------------------------------------------------------------------------- /data/cutmix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/cutmix.png -------------------------------------------------------------------------------- /data/cutout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/cutout.png -------------------------------------------------------------------------------- /data/dropblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/dropblock.png -------------------------------------------------------------------------------- /data/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/image.png -------------------------------------------------------------------------------- /data/mainfold_mixup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/mainfold_mixup.png -------------------------------------------------------------------------------- /data/mixup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/mixup.png -------------------------------------------------------------------------------- /data/shakedrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/shakedrop.png -------------------------------------------------------------------------------- /data/stochdepth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhugeKongan/-DataAug-and-NetRegularization/HEAD/data/stochdepth.png --------------------------------------------------------------------------------