| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This package provides basic Python bindings for clip.cpp.
It requires no third-party libraries and no big dependencies such as PyTorch, TensorFlow, Numpy, ONNX etc.
If you are on a X64 Linux distribution, you can simply Pip-install it:
pip install clip_cppColab Notebook available for quick experiment :
If you are on another operating system or architecture, or if you want to make use of support for instruction sets other than AVX2 (e.g., AVX512), you can build it from source. Se clip.cpp for more info.
All you need to do is to compile with the -DBUILD_SHARED_LIBS=ON option and copy libclip.so to examples/python_bindings/clip_cpp.
from clip_cpp import Clip
## you can either pass repo_id or .gguf file
## you can type `clip-cpp-models` in your terminal to see what models are available for download
## in case you pass repo_id and it has more than .bin file
## it's recommended to specify which file to download with `model_file`
repo_id = 'mys/ggml_CLIP-ViT-B-32-laion2B-s34B-b79K'
model_file = 'CLIP-ViT-B-32-laion2B-s34B-b79K_ggml-model-f16.gguf'
model = Clip(
model_path_or_repo_id=repo_id,
model_file=model_file,
verbosity=2
)
text_2encode = 'cat on a Turtle'
tokens = model.tokenize(text_2encode)
text_embed = model.encode_text(tokens)
## load and extract embeddings of an image from the disk
image_2encode = '/path/to/cat.jpg'
image_embed = model.load_preprocess_encode_image(image_2encode)
## calculate the similarity between the image and the text
score = model.calculate_similarity(text_embed, image_embed)
# Alternatively, you can just do:
# score = model.compare_text_and_image(text, image_path)
print(f"Similarity score: {score}")The Clip class provides a Python interface to clip.cpp, allowing you to perform various tasks such as text and image encoding, similarity scoring, and text-image comparison. Below are the constructor and public methods of the Clip class:
def __init__(
self, model_path_or_repo_id: str,
model_file: Optional[str] = None,
revision: Optional[str] = None,
verbosity: int = 0):@property
def vision_config(self) -> Dict[str, Any]:@property
def text_config(self) -> Dict[str, Any]:def tokenize(self, text: str) -> List[int]:def encode_text(
self, tokens: List[int], n_threads: int = os.cpu_count(), normalize: bool = True
) -> List[float]:def load_preprocess_encode_image(
self, image_path: str, n_threads: int = os.cpu_count(), normalize: bool = True
) -> List[float]:def calculate_similarity(
self, text_embedding: List[float], image_embedding: List[float]
) -> float:def compare_text_and_image(
self, text: str, image_path: str, n_threads: int = os.cpu_count()
) -> float:def zero_shot_label_image(
self, image_path: str, labels: List[str], n_threads: int = os.cpu_count()
) -> Tuple[List[float], List[int]]:def __del__(self):With the Clip class, you can easily work with the CLIP model for various natural language understanding and computer vision tasks.
A basic example can be found in the clip.cpp examples.
python example_main.py --help
usage: clip [-h] -m MODEL [-fn FILENAME] [-v VERBOSITY] -t TEXT [TEXT ...] -i IMAGE
optional arguments:
-h, --help show this help message and exit
-m MODEL, --model MODEL
path to GGML file or repo_id
-fn FILENAME, --filename FILENAME
path to GGML file in the Hugging face repo
-v VERBOSITY, --verbosity VERBOSITY
Level of verbosity. 0 = minimum, 2 = maximum
-t TEXT [TEXT ...], --text TEXT [TEXT ...]
text to encode. Multiple values allowed. In this case, apply zero-shot labeling
-i IMAGE, --image IMAGE
path to an image file
| Back | FazBrowse Home | New Git URL |