├── ImageNet_iNat ├── ResNet.py ├── data │ ├── ImageNet_LT_test.txt │ ├── ImageNet_LT_train.txt │ ├── ImageNet_LT_val.txt │ ├── iNaturalist18_train.txt │ └── iNaturalist18_val.txt ├── data_utils.py ├── dataloader.py ├── loss.py ├── resnet_meta.py ├── scripts │ ├── test.sh │ └── train.sh ├── test.py ├── train.py └── utils.py ├── LICENSE ├── MetaSAug_LDAM_train.py ├── MetaSAug_test.py ├── README.md ├── assets └── illustration.png ├── data_utils.py ├── loss.py ├── resnet.py └── scripts ├── MetaSAug_CE_test.sh ├── MetaSAug_LDAM_test.sh └── MetaSAug_LDAM_train.sh /ImageNet_iNat/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/ResNet.py -------------------------------------------------------------------------------- /ImageNet_iNat/data/ImageNet_LT_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/data/ImageNet_LT_test.txt -------------------------------------------------------------------------------- /ImageNet_iNat/data/ImageNet_LT_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/data/ImageNet_LT_train.txt -------------------------------------------------------------------------------- /ImageNet_iNat/data/ImageNet_LT_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/data/ImageNet_LT_val.txt -------------------------------------------------------------------------------- /ImageNet_iNat/data/iNaturalist18_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/data/iNaturalist18_train.txt -------------------------------------------------------------------------------- /ImageNet_iNat/data/iNaturalist18_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/data/iNaturalist18_val.txt -------------------------------------------------------------------------------- /ImageNet_iNat/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/data_utils.py -------------------------------------------------------------------------------- /ImageNet_iNat/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/dataloader.py -------------------------------------------------------------------------------- /ImageNet_iNat/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/loss.py -------------------------------------------------------------------------------- /ImageNet_iNat/resnet_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/resnet_meta.py -------------------------------------------------------------------------------- /ImageNet_iNat/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/scripts/test.sh -------------------------------------------------------------------------------- /ImageNet_iNat/scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/scripts/train.sh -------------------------------------------------------------------------------- /ImageNet_iNat/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/test.py -------------------------------------------------------------------------------- /ImageNet_iNat/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/train.py -------------------------------------------------------------------------------- /ImageNet_iNat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/ImageNet_iNat/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/LICENSE -------------------------------------------------------------------------------- /MetaSAug_LDAM_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/MetaSAug_LDAM_train.py -------------------------------------------------------------------------------- /MetaSAug_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/MetaSAug_test.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/README.md -------------------------------------------------------------------------------- /assets/illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/assets/illustration.png -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/data_utils.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/loss.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/resnet.py -------------------------------------------------------------------------------- /scripts/MetaSAug_CE_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/scripts/MetaSAug_CE_test.sh -------------------------------------------------------------------------------- /scripts/MetaSAug_LDAM_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/scripts/MetaSAug_LDAM_test.sh -------------------------------------------------------------------------------- /scripts/MetaSAug_LDAM_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-DA/MetaSAug/HEAD/scripts/MetaSAug_LDAM_train.sh --------------------------------------------------------------------------------