multi indexing #40306
Unanswered
ranjith502
asked this question in
Q&A and General discussion
multi indexing
#40306
Replies: 1 comment 1 reply
-
To call search(), you must call load_collection() first. An example of two embedding fields in one collection, and search/hybrid_search usage.
|
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
i team
i have image embeddings and text (product ) embeddings of type dense
how to store both embeddings in the collection
below are the list of things i tired
i have created schema by defining both image and text embeddings as float vector
then inserted both vectors and created index with only image embeddings
below is the error message
<MilvusException: (code=65535, message=there is no vector index on field: [product_embeddings], please create index firstly)>
then i created index for both. below is the error message
<MilvusException: (code=65535, message=CreateIndex failed: at most one distinct index is allowed per field)>,
what is the correct way to do it
below is my use case
in the collection i need to store both embeddings
i need two indexing one for text and another for image
Beta Was this translation helpful? Give feedback.
All reactions