We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 123f743 commit bef31a8Copy full SHA for bef31a8
examples/colbert/approximate.py
@@ -4,6 +4,10 @@
4
from colbert.modeling.checkpoint import Checkpoint
5
from pgvector.psycopg import register_vector
6
import psycopg
7
+import warnings
8
+
9
+# ignore warnings from colbert
10
+warnings.filterwarnings('ignore')
11
12
conn = psycopg.connect(dbname='pgvector_example', autocommit=True)
13
examples/colbert/exact.py
@@ -2,6 +2,10 @@
2
3
examples/colbert/requirements.txt
@@ -1,3 +1,4 @@
1
colbert-ai
pgvector
psycopg[binary]
+transformers==4.49.0
0 commit comments