From 32050fdce3cc6d55ed744e2475b8c2dcee2edd4b Mon Sep 17 00:00:00 2001 From: lewtun Date: Mon, 29 Mar 2021 09:53:26 +0200 Subject: [PATCH] Add Milvus to the retriever / document store table (#931) --- docs/_src/usage/usage/retriever.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/_src/usage/usage/retriever.md b/docs/_src/usage/usage/retriever.md index b4b1b799d..d4a52afc7 100644 --- a/docs/_src/usage/usage/retriever.md +++ b/docs/_src/usage/usage/retriever.md @@ -27,12 +27,12 @@ It is an tool for sifting out the obvious negative cases, saving the Reader from Note that not all Retrievers can be paired with every DocumentStore. Here are the combinations which are supported: -| | Memory | Elasticsearch | SQL | FAISS | -| --- | --- | --- | ---- | ---- | -| BM25 | N | Y | N | N | -| TF-IDF | Y | Y | Y | N | -| Embedding | Y | Y | N | Y | -| DPR | Y | Y | N | Y | +| | Memory | Elasticsearch | SQL | FAISS | Milvus | +| --- | --- | --- | ---- | ---- | ---- | +| BM25 | N | Y | N | N | N | +| TF-IDF | Y | Y | Y | N | N | +| Embedding | Y | Y | N | Y | Y | +| DPR | Y | Y | N | Y | Y | See [Optimization](/docs/latest/optimizationmd) for suggestions on how to choose top-k values.