Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2aca04b

Browse files
committed
Updated links [skip ci]
1 parente47984e commit2aca04b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎README.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Insert vectors
106106
INSERT INTO items (embedding)VALUES ('[1,2,3]'), ('[4,5,6]');
107107
```
108108

109-
Or load vectors in bulk using`COPY` ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/bulk_loading.py))
109+
Or load vectors in bulk using`COPY` ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/loading/example.py))
110110

111111
```sql
112112
COPY items (embedding)FROM STDIN WITH (FORMAT BINARY);
@@ -473,7 +473,7 @@ SELECT * FROM items ORDER BY embedding::halfvec(3) <-> '[1,2,3]' LIMIT 5;
473473

474474
##Binary Vectors
475475

476-
Use the`bit` type to store binary vectors ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/hash_image_search.py))
476+
Use the`bit` type to store binary vectors ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/imagehash/example.py))
477477

478478
```sql
479479
CREATETABLEitems (idbigserialPRIMARY KEY, embeddingbit(3));
@@ -551,7 +551,7 @@ SELECT id, content FROM items, plainto_tsquery('hello search') query
551551
WHERE textsearch @@ queryORDER BY ts_rank_cd(textsearch, query)DESCLIMIT5;
552552
```
553553

554-
You can use[Reciprocal Rank Fusion](https://github.com/pgvector/pgvector-python/blob/master/examples/hybrid_search_rrf.py) or a[cross-encoder](https://github.com/pgvector/pgvector-python/blob/master/examples/hybrid_search.py) to combine results.
554+
You can use[Reciprocal Rank Fusion](https://github.com/pgvector/pgvector-python/blob/master/examples/hybrid_search/rrf.py) or a[cross-encoder](https://github.com/pgvector/pgvector-python/blob/master/examples/hybrid_search/cross_encoder.py) to combine results.
555555

556556
##Indexing Subvectors
557557

@@ -597,7 +597,7 @@ Be sure to restart Postgres for changes to take effect.
597597

598598
###Loading
599599

600-
Use`COPY` for bulk loading data ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/bulk_loading.py)).
600+
Use`COPY` for bulk loading data ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/loading/example.py)).
601601

602602
```sql
603603
COPY items (embedding)FROM STDIN WITH (FORMAT BINARY);
@@ -687,7 +687,7 @@ Scale pgvector the same way you scale Postgres.
687687

688688
Scale vertically by increasing memory, CPU, and storage on a single instance. Use existing tools to[tune parameters](#tuning) and[monitor performance](#monitoring).
689689

690-
Scale horizontally with[replicas](https://www.postgresql.org/docs/current/hot-standby.html), or use[Citus](https://github.com/citusdata/citus) or another approach for sharding ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/citus.py)).
690+
Scale horizontally with[replicas](https://www.postgresql.org/docs/current/hot-standby.html), or use[Citus](https://github.com/citusdata/citus) or another approach for sharding ([example](https://github.com/pgvector/pgvector-python/blob/master/examples/citus/example.py)).
691691

692692
##Languages
693693

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp