Add Milvus to the retriever / document store table (#931)

This commit is contained in:
lewtun 2021-03-29 09:53:26 +02:00 committed by GitHub
parent 55b7a820d4
commit 32050fdce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.