Skip to content

Commit ef74c44

Browse files
committed
Fix dimension
1 parent 5468746 commit ef74c44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/getting-started/example-datasets/hacker-news-vector-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The loading of 28.74 million rows into the table will take a few minutes.
7070
Run the following SQL to define and build a vector similarity index on the `vector` column of the `hackernews` table :
7171

7272
```sql
73-
ALTER TABLE hackernews ADD INDEX vector_index vector TYPE vector_similarity('hnsw', 'cosineDistance', 768, 'bf16', 64, 512);
73+
ALTER TABLE hackernews ADD INDEX vector_index vector TYPE vector_similarity('hnsw', 'cosineDistance', 384, 'bf16', 64, 512);
7474

7575
ALTER TABLE hackernews MATERIALIZE INDEX vector_index SETTINGS mutations_sync = 2;
7676
```

0 commit comments

Comments
 (0)