├── LICENSE ├── README.md ├── clip ├── bpe_simple_vocab_16e6.txt.gz ├── clip.py ├── model.py └── simple_tokenizer.py ├── configs ├── datasets │ ├── mini_domainnet.yaml │ ├── officehome.yaml │ └── visda17.yaml └── trainer │ ├── rn50.yaml │ ├── vitB16.yaml │ └── vitL14.yaml ├── datasets ├── mini_domainnet.py ├── office_home.py └── visda17.py ├── docs └── AD-CLIP_poster.pdf ├── images ├── architecture.png ├── officehome.png ├── teaser1.png └── teaser2.png ├── requirements.txt ├── scripts ├── eval.sh └── main.sh ├── train.py └── trainers ├── adclip_rn50.py ├── adclip_vitB16.py └── adclip_vitL14.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/README.md -------------------------------------------------------------------------------- /clip/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/clip/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /clip/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/clip/clip.py -------------------------------------------------------------------------------- /clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/clip/model.py -------------------------------------------------------------------------------- /clip/simple_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/clip/simple_tokenizer.py -------------------------------------------------------------------------------- /configs/datasets/mini_domainnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/configs/datasets/mini_domainnet.yaml -------------------------------------------------------------------------------- /configs/datasets/officehome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/configs/datasets/officehome.yaml -------------------------------------------------------------------------------- /configs/datasets/visda17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/configs/datasets/visda17.yaml -------------------------------------------------------------------------------- /configs/trainer/rn50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/configs/trainer/rn50.yaml -------------------------------------------------------------------------------- /configs/trainer/vitB16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/configs/trainer/vitB16.yaml -------------------------------------------------------------------------------- /configs/trainer/vitL14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/configs/trainer/vitL14.yaml -------------------------------------------------------------------------------- /datasets/mini_domainnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/datasets/mini_domainnet.py -------------------------------------------------------------------------------- /datasets/office_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/datasets/office_home.py -------------------------------------------------------------------------------- /datasets/visda17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/datasets/visda17.py -------------------------------------------------------------------------------- /docs/AD-CLIP_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/docs/AD-CLIP_poster.pdf -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/officehome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/images/officehome.png -------------------------------------------------------------------------------- /images/teaser1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/images/teaser1.png -------------------------------------------------------------------------------- /images/teaser2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/images/teaser2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/scripts/eval.sh -------------------------------------------------------------------------------- /scripts/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/scripts/main.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/train.py -------------------------------------------------------------------------------- /trainers/adclip_rn50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/trainers/adclip_rn50.py -------------------------------------------------------------------------------- /trainers/adclip_vitB16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/trainers/adclip_vitB16.py -------------------------------------------------------------------------------- /trainers/adclip_vitL14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainaksingha01/AD-CLIP/HEAD/trainers/adclip_vitL14.py --------------------------------------------------------------------------------