You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/experimental/langchain_experimental/open_clip/__init__.py

12 lines
346 B
Python

"""**OpenCLIP Embeddings** model.
OpenCLIP is a multimodal model that can encode text and images into a shared space.
See this paper for more details: https://arxiv.org/abs/2103.00020
and [this repository](https://github.com/mlfoundations/open_clip) for details.
"""
from .open_clip import OpenCLIPEmbeddings
__all__ = ["OpenCLIPEmbeddings"]