Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
* common parameters for all vector indexes:
* `vector_dimension` - embedding vector dimensionality (should be between 1 and 16384)
* `vector_type` - vector value type (`float`, `uint8`, or `int8`)
* `vector_type` - vector value type (`float`, `uint8`, `int8`, or `bit`)
* `distance` - distance function (`cosine`, `manhattan`, or `euclidean`), mutually exclusive with `similarity`
* `similarity` - similarity function (`inner_product` or `cosine`), mutually exclusive with `distance`
* specific parameters for `vector_kmeans_tree` (see [the reference](../../../../dev/vector-indexes.md#kmeans-tree-type)):
Expand Down
6 changes: 0 additions & 6 deletions ydb/docs/en/core/yql/reference/udf/list/knn.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@ Currently {{ ydb-short-name }} does not support storing `Tagged`, so before stor

{% endnote %}

{% note info %}

Currently {{ ydb-short-name }} does not support building an index for vectors with bit quantization `BitVector`.

{% endnote %}

{% endif %}

#### Function signatures {#functions-convert-signature}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
* общие параметры для всех векторных индексов:
* `vector_dimension` - размерность вектора эмбеддинга (значение от 1 до 16384);
* `vector_type` - тип значений вектора (`float`, `uint8` или `int8`);
* `vector_type` - тип значений вектора (`float`, `uint8`, `int8` или `bit`);
* `distance` - функция расстояния (`cosine`, `manhattan` или `euclidean`), взаимосключающий с `similarity`;
* `similarity` - функция схожести (`inner_product` или `cosine`), взаимосключающий с `distance`;
* специфичные параметры для `vector_kmeans_tree`{% if backend_name == "YDB" and oss == true %} (см. [документацию](../../../../dev/vector-indexes.md#kmeans-tree-type)){% endif %}:
Expand Down
6 changes: 0 additions & 6 deletions ydb/docs/ru/core/yql/reference/udf/list/knn.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,6 @@

{% endnote %}

{% note info %}

В настоящий момент {{ ydb-short-name }} не поддерживает построение векторных индексов для бинарных векторов `BitVector`.

{% endnote %}

{% endif %}

#### Сигнатуры функций {#functions-convert-signature}
Expand Down
Loading