From 7c2e3f50e0446c18f8f410b6a9959837d5953682 Mon Sep 17 00:00:00 2001 From: Bob van Luijt Date: Thu, 9 Jun 2022 14:45:41 -0500 Subject: [PATCH 1/3] chore: set correct URL --- docs/advanced/document-store/weaviate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/document-store/weaviate.md b/docs/advanced/document-store/weaviate.md index 527001bae8e..f48abdbb117 100644 --- a/docs/advanced/document-store/weaviate.md +++ b/docs/advanced/document-store/weaviate.md @@ -1,7 +1,7 @@ (weaviate)= # Weaviate -One can use [Weaviate](https://www.semi.technology) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`. +One can use [Weaviate](https://www.weaviate.io) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`. ````{tip} This feature requires `weaviate-client`. You can install it via `pip install "docarray[weaviate]".` From 2ea37e06cca199c27a9cf8c3d810b6f30c9bfc80 Mon Sep 17 00:00:00 2001 From: Bob van Luijt Date: Thu, 9 Jun 2022 14:46:02 -0500 Subject: [PATCH 2/3] chore: set correct URL --- docarray/array/storage/weaviate/find.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docarray/array/storage/weaviate/find.py b/docarray/array/storage/weaviate/find.py index a336a0d62a1..3a073dd5739 100644 --- a/docarray/array/storage/weaviate/find.py +++ b/docarray/array/storage/weaviate/find.py @@ -132,7 +132,7 @@ def _find( the closest Document objects for each of the queries in `query`. Note: Weaviate returns `certainty` values. To get cosine similarities one needs to use `cosine_sim = 2*certainty - 1` as explained here: - https://www.semi.technology/developers/weaviate/current/more-resources/faq.html#q-how-do-i-get-the-cosine-similarity-from-weaviates-certainty + https://weaviate.io/developers/weaviate/current/more-resources/faq.html#q-how-do-i-get-the-cosine-similarity-from-weaviates-certainty """ num_rows, _ = ndarray.get_array_rows(query) From 553432f97e5804aeaf3827bea9c4af5024451213 Mon Sep 17 00:00:00 2001 From: AlaeddineAbdessalem Date: Fri, 10 Jun 2022 11:48:38 +0200 Subject: [PATCH 3/3] docs: update link --- docs/advanced/document-store/weaviate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/document-store/weaviate.md b/docs/advanced/document-store/weaviate.md index f48abdbb117..fe3f2d97e92 100644 --- a/docs/advanced/document-store/weaviate.md +++ b/docs/advanced/document-store/weaviate.md @@ -1,7 +1,7 @@ (weaviate)= # Weaviate -One can use [Weaviate](https://www.weaviate.io) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`. +One can use [Weaviate](https://weaviate.io) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`. ````{tip} This feature requires `weaviate-client`. You can install it via `pip install "docarray[weaviate]".`