Replies: 1 comment 1 reply
-
Interesting question! If you only have an image index and want to query with both, you might try to query with the average of your image and text embeddings |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
import faiss import numpy as np ind = faiss.read_index("/content/index_folder_jumpsuit/image.index") D, I = ind.search(text_embeddings, 5)
in this search function only one embeddings u can pass how to pass image embeddings with text embeddings ?
Beta Was this translation helpful? Give feedback.
All reactions