OpenCLIPEmbeddings#
- class langchain_experimental.open_clip.open_clip.OpenCLIPEmbeddings[source]#
Bases:
BaseModel
,Embeddings
OpenCLIP Embeddings model.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- param checkpoint: str = 'laion2b_s32b_b79k'#
- param model: Any [Required]#
- param model_name: str = 'ViT-H-14'#
- param preprocess: Any [Required]#
- param tokenizer: Any [Required]#
- async aembed_documents(
- texts: list[str],
Asynchronous Embed search docs.
- Parameters:
texts (list[str]) – List of text to embed.
- Returns:
List of embeddings.
- Return type:
list[list[float]]
- async aembed_query(text: str) list[float] #
Asynchronous Embed query text.
- Parameters:
text (str) – Text to embed.
- Returns:
Embedding.
- Return type:
list[float]
- embed_documents(
- texts: List[str],
Embed search docs.
- Parameters:
texts (List[str]) – List of text to embed.
- Returns:
List of embeddings.
- Return type:
List[List[float]]
Examples using OpenCLIPEmbeddings