├── DATASET.md ├── README.md ├── calip.png ├── class_template.py ├── clip ├── __init__.py ├── bpe_simple_vocab_16e6.txt.gz ├── clip.py ├── model.py └── simple_tokenizer.py ├── configs └── imagenet.yaml ├── requirements.txt ├── run_imagenet.py └── utils.py /DATASET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/DATASET.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/README.md -------------------------------------------------------------------------------- /calip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/calip.png -------------------------------------------------------------------------------- /class_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/class_template.py -------------------------------------------------------------------------------- /clip/__init__.py: -------------------------------------------------------------------------------- 1 | from .clip import * 2 | -------------------------------------------------------------------------------- /clip/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/clip/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /clip/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/clip/clip.py -------------------------------------------------------------------------------- /clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/clip/model.py -------------------------------------------------------------------------------- /clip/simple_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/clip/simple_tokenizer.py -------------------------------------------------------------------------------- /configs/imagenet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/configs/imagenet.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/run_imagenet.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiyuGuo99/CALIP/HEAD/utils.py --------------------------------------------------------------------------------