Skip to content

Commit

Permalink
[guides] provided missing information on how to enable quantization o…
Browse files Browse the repository at this point in the history
…n existing collections (#1426)
  • Loading branch information
itinance authored Jan 26, 2025
1 parent 0ec4271 commit 976eb5b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions qdrant-landing/content/documentation/guides/quantization.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ The `quantization_config` can also be set on a per vector basis by specifying it

To enable scalar quantization, you need to specify the quantization parameters in the `quantization_config` section of the collection configuration.

When enabling scalar quantization on an existing collection, use a PATCH request or the corresponding `update_collection` method and omit the vector configuration, as it's already defined.

```http
PUT /collections/{collection_name}
{
Expand Down Expand Up @@ -331,6 +333,8 @@ In this case, you can set `always_ram` to `true` to store quantized vectors in R

To enable binary quantization, you need to specify the quantization parameters in the `quantization_config` section of the collection configuration.

When enabling binary quantization on an existing collection, use a PATCH request or the corresponding `update_collection` method and omit the vector configuration, as it's already defined.

```http
PUT /collections/{collection_name}
{
Expand Down Expand Up @@ -481,6 +485,8 @@ In this case, you can set `always_ram` to `true` to store quantized vectors in R

To enable product quantization, you need to specify the quantization parameters in the `quantization_config` section of the collection configuration.

When enabling product quantization on an existing collection, use a PATCH request or the corresponding `update_collection` method and omit the vector configuration, as it's already defined.

```http
PUT /collections/{collection_name}
{
Expand Down

0 comments on commit 976eb5b

Please sign in to comment.