├── README.md ├── assets └── framework.jpg ├── configs ├── base_config.py ├── cfg_ade20k.py ├── cfg_ade847.py ├── cfg_city_scapes.py ├── cfg_coco_object.py ├── cfg_coco_stuff164k.py ├── cfg_context459.py ├── cfg_context59.py ├── cfg_context60.py ├── cfg_voc20.py ├── cfg_voc21.py ├── cls_ade20k.txt ├── cls_ade20k847.txt ├── cls_city_scapes.txt ├── cls_coco_object.txt ├── cls_coco_stuff.txt ├── cls_context459.txt ├── cls_context59.txt ├── cls_context60.txt ├── cls_voc20.txt ├── cls_voc21.txt └── my_name.txt ├── custom_datasets.py ├── datasets └── cvt_coco_object.py ├── demo.py ├── dist_test.sh ├── eval.py ├── eval_all.py ├── images └── horses.jpg ├── mae ├── models_vit.py └── pos_embed.py ├── myutils.py ├── open_clip ├── __init__.py ├── big_vision.py ├── bpe_simple_vocab_16e6.txt.gz ├── coca_model.py ├── constants.py ├── factory.py ├── hf_configs.py ├── hf_model.py ├── loss.py ├── model.py ├── model_configs │ ├── EVA01-g-14-plus.json │ ├── EVA01-g-14.json │ ├── EVA02-B-16.json │ ├── EVA02-E-14-plus.json │ ├── EVA02-E-14.json │ ├── EVA02-L-14-336.json │ ├── EVA02-L-14.json │ ├── RN50x16.json │ ├── ViT-B-16-SigLIP-256.json │ ├── ViT-B-16-SigLIP-384.json │ ├── ViT-B-16-SigLIP-512.json │ ├── ViT-B-16-SigLIP-i18n-256.json │ ├── ViT-B-16-SigLIP.json │ ├── ViT-B-16-plus-240.json │ ├── ViT-B-16-plus.json │ ├── ViT-B-16-quickgelu.json │ ├── ViT-B-16.json │ ├── ViT-B-32-256.json │ ├── ViT-B-32-plus-256.json │ ├── ViT-B-32-quickgelu.json │ ├── ViT-B-32.json │ ├── ViT-H-14-378-quickgelu.json │ ├── ViT-H-14-CLIPA-336.json │ ├── ViT-H-14-CLIPA.json │ ├── ViT-H-14-quickgelu.json │ ├── ViT-H-14.json │ ├── ViT-H-16.json │ ├── ViT-L-14-280.json │ ├── ViT-L-14-336.json │ ├── ViT-L-14-CLIPA-336.json │ ├── ViT-L-14-CLIPA.json │ ├── ViT-L-14-quickgelu.json │ ├── ViT-L-14.json │ ├── ViT-L-16-320.json │ ├── ViT-L-16-SigLIP-256.json │ ├── ViT-L-16-SigLIP-384.json │ ├── ViT-L-16.json │ ├── ViT-M-16-alt.json │ ├── ViT-M-16.json │ ├── ViT-M-32-alt.json │ ├── ViT-M-32.json │ ├── ViT-S-16-alt.json │ ├── ViT-S-16.json │ ├── ViT-S-32-alt.json │ ├── ViT-S-32.json │ ├── ViT-SO400M-14-SigLIP-384.json │ ├── ViT-SO400M-14-SigLIP.json │ ├── ViT-bigG-14-CLIPA-336.json │ ├── ViT-bigG-14-CLIPA.json │ ├── ViT-bigG-14.json │ ├── ViT-e-14.json │ ├── ViT-g-14.json │ ├── coca_ViT-B-32.json │ ├── coca_ViT-L-14.json │ ├── coca_base.json │ ├── coca_roberta-ViT-B-32.json │ ├── vit_medium_patch16_gap_256.json │ └── vit_relpos_medium_patch16_cls_224.json ├── modified_resnet.py ├── openai.py ├── pos_embed.py ├── pretrained.py ├── push_to_hf_hub.py ├── timm_model.py ├── tokenizer.py ├── transform.py ├── transformer.py ├── utils.py ├── version.py ├── zero_shot_classifier.py └── zero_shot_metadata.py ├── prompts └── imagenet_template.py ├── proxyclip_segmentor.py ├── requirements.txt ├── segment_anything ├── __init__.py ├── automatic_mask_generator.py ├── build_sam.py ├── modeling │ ├── __init__.py │ ├── common.py │ ├── image_encoder.py │ ├── mask_decoder.py │ ├── prompt_encoder.py │ ├── sam.py │ └── transformer.py ├── predictor.py └── utils │ ├── __init__.py │ ├── amg.py │ ├── onnx.py │ └── transforms.py └── vis_fig2.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/README.md -------------------------------------------------------------------------------- /assets/framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/assets/framework.jpg -------------------------------------------------------------------------------- /configs/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/base_config.py -------------------------------------------------------------------------------- /configs/cfg_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_ade20k.py -------------------------------------------------------------------------------- /configs/cfg_ade847.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_ade847.py -------------------------------------------------------------------------------- /configs/cfg_city_scapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_city_scapes.py -------------------------------------------------------------------------------- /configs/cfg_coco_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_coco_object.py -------------------------------------------------------------------------------- /configs/cfg_coco_stuff164k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_coco_stuff164k.py -------------------------------------------------------------------------------- /configs/cfg_context459.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_context459.py -------------------------------------------------------------------------------- /configs/cfg_context59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_context59.py -------------------------------------------------------------------------------- /configs/cfg_context60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_context60.py -------------------------------------------------------------------------------- /configs/cfg_voc20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_voc20.py -------------------------------------------------------------------------------- /configs/cfg_voc21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cfg_voc21.py -------------------------------------------------------------------------------- /configs/cls_ade20k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_ade20k.txt -------------------------------------------------------------------------------- /configs/cls_ade20k847.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_ade20k847.txt -------------------------------------------------------------------------------- /configs/cls_city_scapes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_city_scapes.txt -------------------------------------------------------------------------------- /configs/cls_coco_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_coco_object.txt -------------------------------------------------------------------------------- /configs/cls_coco_stuff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_coco_stuff.txt -------------------------------------------------------------------------------- /configs/cls_context459.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_context459.txt -------------------------------------------------------------------------------- /configs/cls_context59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_context59.txt -------------------------------------------------------------------------------- /configs/cls_context60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_context60.txt -------------------------------------------------------------------------------- /configs/cls_voc20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_voc20.txt -------------------------------------------------------------------------------- /configs/cls_voc21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/cls_voc21.txt -------------------------------------------------------------------------------- /configs/my_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/configs/my_name.txt -------------------------------------------------------------------------------- /custom_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/custom_datasets.py -------------------------------------------------------------------------------- /datasets/cvt_coco_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/datasets/cvt_coco_object.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/demo.py -------------------------------------------------------------------------------- /dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/dist_test.sh -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/eval.py -------------------------------------------------------------------------------- /eval_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/eval_all.py -------------------------------------------------------------------------------- /images/horses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/images/horses.jpg -------------------------------------------------------------------------------- /mae/models_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/mae/models_vit.py -------------------------------------------------------------------------------- /mae/pos_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/mae/pos_embed.py -------------------------------------------------------------------------------- /myutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/myutils.py -------------------------------------------------------------------------------- /open_clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/__init__.py -------------------------------------------------------------------------------- /open_clip/big_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/big_vision.py -------------------------------------------------------------------------------- /open_clip/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /open_clip/coca_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/coca_model.py -------------------------------------------------------------------------------- /open_clip/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/constants.py -------------------------------------------------------------------------------- /open_clip/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/factory.py -------------------------------------------------------------------------------- /open_clip/hf_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/hf_configs.py -------------------------------------------------------------------------------- /open_clip/hf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/hf_model.py -------------------------------------------------------------------------------- /open_clip/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/loss.py -------------------------------------------------------------------------------- /open_clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model.py -------------------------------------------------------------------------------- /open_clip/model_configs/EVA01-g-14-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/EVA01-g-14-plus.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA01-g-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/EVA01-g-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-B-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/EVA02-B-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-E-14-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/EVA02-E-14-plus.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-E-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/EVA02-E-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-L-14-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/EVA02-L-14-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/EVA02-L-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/RN50x16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/RN50x16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-384.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-512.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-i18n-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-i18n-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-SigLIP.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-plus-240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-plus-240.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-plus.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-32-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-plus-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-32-plus-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-32-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-B-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-378-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-H-14-378-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-CLIPA-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-H-14-CLIPA-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-CLIPA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-H-14-CLIPA.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-H-14-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-H-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-H-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-14-280.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-14-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-CLIPA-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-14-CLIPA-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-CLIPA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-14-CLIPA.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-14-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16-320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-16-320.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16-SigLIP-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-16-SigLIP-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16-SigLIP-384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-16-SigLIP-384.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-L-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-16-alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-M-16-alt.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-M-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-32-alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-M-32-alt.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-M-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-S-16-alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-S-16-alt.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-S-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-S-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-S-32-alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-S-32-alt.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-S-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-S-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-SO400M-14-SigLIP-384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-SO400M-14-SigLIP-384.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-SO400M-14-SigLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-SO400M-14-SigLIP.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-bigG-14-CLIPA-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-bigG-14-CLIPA-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-bigG-14-CLIPA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-bigG-14-CLIPA.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-bigG-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-bigG-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-e-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-e-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-g-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/ViT-g-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_ViT-B-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/coca_ViT-B-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_ViT-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/coca_ViT-L-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/coca_base.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_roberta-ViT-B-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/coca_roberta-ViT-B-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/vit_medium_patch16_gap_256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/vit_medium_patch16_gap_256.json -------------------------------------------------------------------------------- /open_clip/model_configs/vit_relpos_medium_patch16_cls_224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/model_configs/vit_relpos_medium_patch16_cls_224.json -------------------------------------------------------------------------------- /open_clip/modified_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/modified_resnet.py -------------------------------------------------------------------------------- /open_clip/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/openai.py -------------------------------------------------------------------------------- /open_clip/pos_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/pos_embed.py -------------------------------------------------------------------------------- /open_clip/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/pretrained.py -------------------------------------------------------------------------------- /open_clip/push_to_hf_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/push_to_hf_hub.py -------------------------------------------------------------------------------- /open_clip/timm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/timm_model.py -------------------------------------------------------------------------------- /open_clip/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/tokenizer.py -------------------------------------------------------------------------------- /open_clip/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/transform.py -------------------------------------------------------------------------------- /open_clip/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/transformer.py -------------------------------------------------------------------------------- /open_clip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/utils.py -------------------------------------------------------------------------------- /open_clip/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.24.0' 2 | -------------------------------------------------------------------------------- /open_clip/zero_shot_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/zero_shot_classifier.py -------------------------------------------------------------------------------- /open_clip/zero_shot_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/open_clip/zero_shot_metadata.py -------------------------------------------------------------------------------- /prompts/imagenet_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/prompts/imagenet_template.py -------------------------------------------------------------------------------- /proxyclip_segmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/proxyclip_segmentor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/requirements.txt -------------------------------------------------------------------------------- /segment_anything/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/__init__.py -------------------------------------------------------------------------------- /segment_anything/automatic_mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/automatic_mask_generator.py -------------------------------------------------------------------------------- /segment_anything/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/build_sam.py -------------------------------------------------------------------------------- /segment_anything/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/modeling/__init__.py -------------------------------------------------------------------------------- /segment_anything/modeling/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/modeling/common.py -------------------------------------------------------------------------------- /segment_anything/modeling/image_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/modeling/image_encoder.py -------------------------------------------------------------------------------- /segment_anything/modeling/mask_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/modeling/mask_decoder.py -------------------------------------------------------------------------------- /segment_anything/modeling/prompt_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/modeling/prompt_encoder.py -------------------------------------------------------------------------------- /segment_anything/modeling/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/modeling/sam.py -------------------------------------------------------------------------------- /segment_anything/modeling/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/modeling/transformer.py -------------------------------------------------------------------------------- /segment_anything/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/predictor.py -------------------------------------------------------------------------------- /segment_anything/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/utils/__init__.py -------------------------------------------------------------------------------- /segment_anything/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/utils/amg.py -------------------------------------------------------------------------------- /segment_anything/utils/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/utils/onnx.py -------------------------------------------------------------------------------- /segment_anything/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/segment_anything/utils/transforms.py -------------------------------------------------------------------------------- /vis_fig2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-lan/ProxyCLIP/HEAD/vis_fig2.py --------------------------------------------------------------------------------