├── README.md ├── crepe_compo_eval_open_clip.py ├── crepe_eval_utils.py ├── crepe_params.py ├── crepe_prod_eval_albef.py ├── crepe_prod_eval_clip.py ├── crepe_prod_eval_cyclip.py ├── crepe_prod_eval_flava.py ├── data ├── prod_hard_negatives.zip └── syst_hard_negatives.zip └── open_clip ├── __init__.py ├── bpe_simple_vocab_16e6.txt.gz ├── factory.py ├── loss.py ├── model.py ├── model_configs ├── RN101-quickgelu.json ├── RN101.json ├── RN50-quickgelu.json ├── RN50.json ├── RN50x16.json ├── RN50x4.json ├── ViT-B-16-plus-240.json ├── ViT-B-16-plus.json ├── ViT-B-16.json ├── ViT-B-32-plus-256.json ├── ViT-B-32-quickgelu.json ├── ViT-B-32.json ├── ViT-H-14.json ├── ViT-H-16.json ├── ViT-L-14-280.json ├── ViT-L-14-336.json ├── ViT-L-14.json ├── ViT-L-16-320.json ├── ViT-L-16.json ├── ViT-g-14.json ├── timm-efficientnetv2_rw_s.json ├── timm-resnet50d.json ├── timm-resnetaa50d.json ├── timm-resnetblur50.json ├── timm-swin_base_patch4_window7_224.json ├── timm-vit_base_patch16_224.json ├── timm-vit_base_patch32_224.json └── timm-vit_small_patch16_224.json ├── openai.py ├── pretrained.py ├── timm_model.py ├── tokenizer.py ├── transform.py ├── utils.py └── version.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/README.md -------------------------------------------------------------------------------- /crepe_compo_eval_open_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/crepe_compo_eval_open_clip.py -------------------------------------------------------------------------------- /crepe_eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/crepe_eval_utils.py -------------------------------------------------------------------------------- /crepe_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/crepe_params.py -------------------------------------------------------------------------------- /crepe_prod_eval_albef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/crepe_prod_eval_albef.py -------------------------------------------------------------------------------- /crepe_prod_eval_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/crepe_prod_eval_clip.py -------------------------------------------------------------------------------- /crepe_prod_eval_cyclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/crepe_prod_eval_cyclip.py -------------------------------------------------------------------------------- /crepe_prod_eval_flava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/crepe_prod_eval_flava.py -------------------------------------------------------------------------------- /data/prod_hard_negatives.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/data/prod_hard_negatives.zip -------------------------------------------------------------------------------- /data/syst_hard_negatives.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/data/syst_hard_negatives.zip -------------------------------------------------------------------------------- /open_clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/__init__.py -------------------------------------------------------------------------------- /open_clip/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /open_clip/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/factory.py -------------------------------------------------------------------------------- /open_clip/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/loss.py -------------------------------------------------------------------------------- /open_clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model.py -------------------------------------------------------------------------------- /open_clip/model_configs/RN101-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/RN101-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/RN101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/RN101.json -------------------------------------------------------------------------------- /open_clip/model_configs/RN50-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/RN50-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/RN50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/RN50.json -------------------------------------------------------------------------------- /open_clip/model_configs/RN50x16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/RN50x16.json -------------------------------------------------------------------------------- /open_clip/model_configs/RN50x4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/RN50x4.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-plus-240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-B-16-plus-240.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-B-16-plus.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-B-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-plus-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-B-32-plus-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-B-32-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-B-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-H-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-H-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-L-14-280.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-L-14-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-L-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16-320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-L-16-320.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-L-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-g-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/ViT-g-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-efficientnetv2_rw_s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-efficientnetv2_rw_s.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-resnet50d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-resnet50d.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-resnetaa50d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-resnetaa50d.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-resnetblur50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-resnetblur50.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-swin_base_patch4_window7_224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-swin_base_patch4_window7_224.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-vit_base_patch16_224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-vit_base_patch16_224.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-vit_base_patch32_224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-vit_base_patch32_224.json -------------------------------------------------------------------------------- /open_clip/model_configs/timm-vit_small_patch16_224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/model_configs/timm-vit_small_patch16_224.json -------------------------------------------------------------------------------- /open_clip/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/openai.py -------------------------------------------------------------------------------- /open_clip/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/pretrained.py -------------------------------------------------------------------------------- /open_clip/timm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/timm_model.py -------------------------------------------------------------------------------- /open_clip/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/tokenizer.py -------------------------------------------------------------------------------- /open_clip/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/transform.py -------------------------------------------------------------------------------- /open_clip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/CREPE/HEAD/open_clip/utils.py -------------------------------------------------------------------------------- /open_clip/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.3.0' 2 | --------------------------------------------------------------------------------