mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Fix result logic
This commit is contained in:
parent
9cef8ec087
commit
5ce4d5f552
1 changed files with 8 additions and 1 deletions
|
@ -171,7 +171,14 @@ impl<'a> Recommend<'a> {
|
|||
let mut document_scores = Vec::with_capacity(self.limit);
|
||||
|
||||
// skip offset +1 to skip the target document that is normally returned
|
||||
for (docid, distance) in results.into_iter().skip(self.offset + 1) {
|
||||
for (docid, distance) in results.into_iter().skip(self.offset) {
|
||||
if documents_ids.len() == self.limit {
|
||||
break;
|
||||
}
|
||||
if id == docid {
|
||||
continue;
|
||||
}
|
||||
|
||||
documents_ids.push(docid);
|
||||
|
||||
let score = 1.0 - distance;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue