properly assign language to snippets

This commit is contained in:
generall
2023-07-13 01:45:36 +02:00
parent f460c8a7c0
commit 80c97b6ac2
2 changed files with 2 additions and 2 deletions
@@ -23,7 +23,7 @@ Quantum quantization is a novel approach that leverages the power of quantum com
The conversion of float32 vectors to qbit vectors can be represented by the following formula:
```
```text
qbit_vector = Q( float32_vector )
```
@@ -29,7 +29,7 @@ So a single number needs 4 bytes of the memory and a 512-dimensional vector occu
2 kB. That's only the memory used to store the vector. There is also an overhead of the
HNSW graph, so as a rule of thumb we estimate the memory size with the following formula:
```
```text
memory_size = 1.5 * number_of_vectors * vector_dimension * 4 bytes
```