CLIP for image embedding #15520
alessandro-neri
started this conversation in
General
Replies: 1 comment
-
Yes, you're correct that the default MultimodalVectorStoreIndex typically uses CLIP for embeddings, and you're restricted to the available CLIP models, as shown below:
If these models don’t meet your needs, you can extend the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to create and index with Redis.
The index needs to store images, embedded with a custom model that I choose.
I tried with HuggingFaceEmbedding, or using SentenceTransformer externally but none of the 2 work.
MultimodalVectorStoreIndex does not seem to allow to choose the image model but uses only CLIP, correct?
How can I create a vector store for images (no text and images, only images) where I can choose the model (either a local modal or external APIs) ?
Beta Was this translation helpful? Give feedback.
All reactions