mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
fix the regeneration of the embeddings in the search
This commit is contained in:
parent
d85ab23b82
commit
31a793d226
7 changed files with 281 additions and 210 deletions
|
@ -1350,12 +1350,14 @@ async fn experimental_feature_vector_store() {
|
|||
"id": "287947",
|
||||
"_vectors": {
|
||||
"manual": {
|
||||
"userDefined": true,
|
||||
"embedding": [
|
||||
1.0,
|
||||
2.0,
|
||||
3.0
|
||||
]
|
||||
"embeddings": [
|
||||
[
|
||||
1.0,
|
||||
2.0,
|
||||
3.0
|
||||
]
|
||||
],
|
||||
"userProvided": true
|
||||
}
|
||||
},
|
||||
"_rankingScore": 1.0
|
||||
|
@ -1365,12 +1367,14 @@ async fn experimental_feature_vector_store() {
|
|||
"id": "299537",
|
||||
"_vectors": {
|
||||
"manual": {
|
||||
"userDefined": true,
|
||||
"embedding": [
|
||||
1.0,
|
||||
2.0,
|
||||
54.0
|
||||
]
|
||||
"embeddings": [
|
||||
[
|
||||
1.0,
|
||||
2.0,
|
||||
54.0
|
||||
]
|
||||
],
|
||||
"userProvided": true
|
||||
}
|
||||
},
|
||||
"_rankingScore": 0.9129111766815186
|
||||
|
@ -1380,12 +1384,14 @@ async fn experimental_feature_vector_store() {
|
|||
"id": "450465",
|
||||
"_vectors": {
|
||||
"manual": {
|
||||
"userDefined": true,
|
||||
"embedding": [
|
||||
-100.0,
|
||||
340.0,
|
||||
90.0
|
||||
]
|
||||
"embeddings": [
|
||||
[
|
||||
-100.0,
|
||||
340.0,
|
||||
90.0
|
||||
]
|
||||
],
|
||||
"userProvided": true
|
||||
}
|
||||
},
|
||||
"_rankingScore": 0.8106412887573242
|
||||
|
@ -1395,12 +1401,14 @@ async fn experimental_feature_vector_store() {
|
|||
"id": "166428",
|
||||
"_vectors": {
|
||||
"manual": {
|
||||
"userDefined": true,
|
||||
"embedding": [
|
||||
-100.0,
|
||||
231.0,
|
||||
32.0
|
||||
]
|
||||
"embeddings": [
|
||||
[
|
||||
-100.0,
|
||||
231.0,
|
||||
32.0
|
||||
]
|
||||
],
|
||||
"userProvided": true
|
||||
}
|
||||
},
|
||||
"_rankingScore": 0.7412010431289673
|
||||
|
@ -1410,12 +1418,14 @@ async fn experimental_feature_vector_store() {
|
|||
"id": "522681",
|
||||
"_vectors": {
|
||||
"manual": {
|
||||
"userDefined": true,
|
||||
"embedding": [
|
||||
10.0,
|
||||
-23.0,
|
||||
32.0
|
||||
]
|
||||
"embeddings": [
|
||||
[
|
||||
10.0,
|
||||
-23.0,
|
||||
32.0
|
||||
]
|
||||
],
|
||||
"userProvided": true
|
||||
}
|
||||
},
|
||||
"_rankingScore": 0.6972063183784485
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue