gitextract_993dqq3t/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── clip/ │ ├── __init__.py │ ├── clip.py │ ├── model.py │ └── simple_tokenizer.py ├── data/ │ ├── country211.md │ ├── prompts.md │ ├── rendered-sst2.md │ └── yfcc100m.md ├── hubconf.py ├── model-card.md ├── notebooks/ │ ├── Interacting_with_CLIP.ipynb │ └── Prompt_Engineering_for_ImageNet.ipynb ├── requirements.txt ├── setup.py └── tests/ └── test_consistency.py