From 9d5ec84f6e9903b50a858139f757b17a2539d44e Mon Sep 17 00:00:00 2001 From: generall Date: Thu, 12 Sep 2024 14:10:35 +0200 Subject: [PATCH] add warning about init_from --- qdrant-landing/content/documentation/concepts/collections.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qdrant-landing/content/documentation/concepts/collections.md b/qdrant-landing/content/documentation/concepts/collections.md index e15077ee5..ddc951979 100644 --- a/qdrant-landing/content/documentation/concepts/collections.md +++ b/qdrant-landing/content/documentation/concepts/collections.md @@ -166,6 +166,8 @@ It is possible to initialize a collection from another existing collection. This might be useful for experimenting quickly with different configurations for the same data set. + + Make sure the vectors have the same `size` and `distance` function when setting up the vectors configuration in the new collection. If you used the previous sample code, `"size": 300` and `"distance": "Cosine"`.