├── .gitignore ├── DebiasPL.gif ├── LICENSE ├── README.md ├── ZSL-DomainShift.png ├── backbone ├── __init__.py └── resnet.py ├── data ├── datasets.py ├── randaugment.py └── transforms.py ├── engine.py ├── main_DebiasPL.py ├── main_DebiasPL_ZeroShot.py ├── models ├── __init__.py ├── fixmatch.py └── moco.py ├── result.png ├── scripts ├── 0.2perc-ssl │ ├── train_DebiasPL.sh │ └── train_DebiasPL_w_CLIP.sh ├── 1perc-ssl │ ├── train_DebiasPL.sh │ └── train_DebiasPL_w_CLIP.sh └── zsl │ └── train_DebiasPL_ImageNet.sh └── utils ├── LARS.py ├── __init__.py ├── batch_norm.py ├── dist_utils.py ├── init.py ├── lr_schedule.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/.gitignore -------------------------------------------------------------------------------- /DebiasPL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/DebiasPL.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/README.md -------------------------------------------------------------------------------- /ZSL-DomainShift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/ZSL-DomainShift.png -------------------------------------------------------------------------------- /backbone/__init__.py: -------------------------------------------------------------------------------- 1 | from .resnet import * -------------------------------------------------------------------------------- /backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/backbone/resnet.py -------------------------------------------------------------------------------- /data/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/data/datasets.py -------------------------------------------------------------------------------- /data/randaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/data/randaugment.py -------------------------------------------------------------------------------- /data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/data/transforms.py -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/engine.py -------------------------------------------------------------------------------- /main_DebiasPL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/main_DebiasPL.py -------------------------------------------------------------------------------- /main_DebiasPL_ZeroShot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/main_DebiasPL_ZeroShot.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/fixmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/models/fixmatch.py -------------------------------------------------------------------------------- /models/moco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/models/moco.py -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/result.png -------------------------------------------------------------------------------- /scripts/0.2perc-ssl/train_DebiasPL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/scripts/0.2perc-ssl/train_DebiasPL.sh -------------------------------------------------------------------------------- /scripts/0.2perc-ssl/train_DebiasPL_w_CLIP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/scripts/0.2perc-ssl/train_DebiasPL_w_CLIP.sh -------------------------------------------------------------------------------- /scripts/1perc-ssl/train_DebiasPL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/scripts/1perc-ssl/train_DebiasPL.sh -------------------------------------------------------------------------------- /scripts/1perc-ssl/train_DebiasPL_w_CLIP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/scripts/1perc-ssl/train_DebiasPL_w_CLIP.sh -------------------------------------------------------------------------------- /scripts/zsl/train_DebiasPL_ImageNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/scripts/zsl/train_DebiasPL_ImageNet.sh -------------------------------------------------------------------------------- /utils/LARS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/utils/LARS.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/utils/batch_norm.py -------------------------------------------------------------------------------- /utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/utils/dist_utils.py -------------------------------------------------------------------------------- /utils/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/utils/init.py -------------------------------------------------------------------------------- /utils/lr_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/utils/lr_schedule.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank-xwang/debiased-pseudo-labeling/HEAD/utils/utils.py --------------------------------------------------------------------------------