diff --git a/qdrant-landing/content/articles/qa-with-cohere-and-qdrant.md b/qdrant-landing/content/articles/qa-with-cohere-and-qdrant.md index 79c4c0278..30fc0d6dd 100644 --- a/qdrant-landing/content/articles/qa-with-cohere-and-qdrant.md +++ b/qdrant-landing/content/articles/qa-with-cohere-and-qdrant.md @@ -201,6 +201,8 @@ for embedding, pubid in tqdm(zip(question_response.embeddings, ids)): answer_positions.append(-1) ``` +Saved answer positions allow us to calculate the metric for different *k* values. + ```python # Prepared answer positions are being used to calculate different values of accuracy@k for k in range(1, k_max + 1):