CLIP_benchmark
CLIP-like model evaluation
File Explorer
- ci.yaml
- python-publish.yml
- __init__.py
- ar_classnames.json
- ar_zeroshot_classification_templates.json
- babel_imagenet.json
- babel_imagenet.py
- builder.py
- caltech101.py
- cn_classnames.json
- cn_zeroshot_classification_templates.json
- crossmodal3600.py
- cupl_prompts.json
- en_classnames.json
- en_zeroshot_classification_templates.json
- flickr.py
- flickr30k_200.py
- flores_langs.py
- imagenetv2.py
- it_classnames.json
- it_zeroshot_classification_templates.json
- jp_classnames.json
- jp_zeroshot_classification_templates.json
- kitti.py
- multilingual_mscoco.py
- nllb_dist13b_prompts.json
- objectnet.py
- sugar_crepe.py
- tfds.py
- voc2007.py
- webdatasets.txt
- winoground.py
- xtd10.py
- xtd200.py
- __init__.py
- captioning.py
- image_caption_selection.py
- linear_probe.py
- zeroshot_classification.py
- zeroshot_retrieval.py
- __init__.py
- japanese_clip.py
- nllb_clip.py
- open_clip.py
- __init__.py
- cli.py
- model_collection.py
- webdataset_builder.py
- test_clip_benchmark.py
- .gitignore
- AUTHORS.rst
- benchmark.png
- CONTRIBUTING.rst
- HISTORY.md
- LICENSE
- Makefile
- MANIFEST.in
- README.md
- requirements-test.txt
- requirements.txt
- setup.cfg
- setup.py
- tox.ini
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
openai
View Details ▼
openai
CLI tool providing access to the OpenAI API.
openai api models.list
List models:
openai api completions.create --model {{ada}} --prompt "{{Hello world}}"
Create a completion:
openai api chat_completions.create --model {{gpt-3.5-turbo}} --message {{user "Hello world"}}
Create a chat completion:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
TASK
View Details ▼
TASK
To-do list manager.
task add {{description}} due:{{tomorrow}}
Add a new task which is due tomorrow:
task {{task_id}} modify priority:{{H|M|L}}
Update a task's priority:
task {{task_id}} done
Complete a task:
# Project Badges
-
pypi Visit
