You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"_index": "embs",
"_type": "twitter_images",
"_aknn_uri": "aknn_models/_doc/twitter_images",
"query_aknn": {
"_aknn_vector": [], # this is filled with an embed vector
"k1":1000,
"k2":100
}
}
Initially, I thought that the issue comes from the type of _aknn_vector. As it was type half_float , I changed it to dense_vector but still the same error.
I don't understand what I'm missing? I'm doing the query wrong? Or maybe the problem comes from the fact that I'm using ES 7.3.1 but the plugin initially is for 7.3.0?
The text was updated successfully, but these errors were encountered:
Hi! I haven't updated my cluster to ES 7.3.1 yet, so can't say if it's caused by ES version.
Intended data type for latest version of plugin is dense_vector, but AFAIK in current ES versions max dim is hardcoded to 1024, try indexing some lower dim data to see if error persists.
P.S. Just out of curiosity, if it's not a secret, which NN produces 1280d embedding?
I'm using ES 7.3.1. I have updated the plugin to compile to 7.3.1 version.
I created an index with this config
I followed the steps in your demo to create and index ~70K docs.
The mapping
But when searching I'm getting the following error
The query:
Initially, I thought that the issue comes from the type of
_aknn_vector
. As it was typehalf_float
, I changed it todense_vector
but still the same error.I don't understand what I'm missing? I'm doing the query wrong? Or maybe the problem comes from the fact that I'm using ES 7.3.1 but the plugin initially is for 7.3.0?
The text was updated successfully, but these errors were encountered: