FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pgvector-python/examples/pytorch_image_search.py at master · akoshel/pgvector-python · GitHub
akoshel
/
pgvector-python
Public
forked from
pgvector/pgvector-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pgvector-python
/
examples
/
pytorch_image_search.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (50 loc) · 2.16 KB
Breadcrumbs
pgvector-python
/
examples
/
pytorch_image_search.py
Copy path
File metadata and controls
70 lines (50 loc) · 2.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import
matplotlib
.
pyplot
as
plt
from
pgvector
.
psycopg
import
register_vector
import
psycopg
import
tempfile
import
torch
import
torchvision
from
tqdm
import
tqdm
seed
=
True
# establish connection
conn
=
psycopg
.
connect
(
dbname
=
'pgvector_example'
)
conn
.
autocommit
=
True
conn
.
execute
(
'CREATE EXTENSION IF NOT EXISTS vector'
)
register_vector
(
conn
)
# load images
transform
=
torchvision
.
transforms
.
Compose
([
torchvision
.
transforms
.
ToTensor
(),
torchvision
.
transforms
.
Normalize
((
0.5
,
0.5
,
0.5
), (
0.5
,
0.5
,
0.5
))
])
dataset
=
torchvision
.
datasets
.
CIFAR10
(
root
=
tempfile
.
gettempdir
(),
train
=
True
,
download
=
True
,
transform
=
transform
)
dataloader
=
torch
.
utils
.
data
.
DataLoader
(
dataset
,
batch_size
=
1000
)
# load pretrained model
model
=
torchvision
.
models
.
resnet18
(
weights
=
'DEFAULT'
)
model
.
fc
=
torch
.
nn
.
Identity
()
model
.
eval
()
def
generate_embeddings
(
inputs
):
return
model
(
inputs
).
detach
().
numpy
()
# generate, save, and index embeddings
if
seed
:
conn
.
execute
(
'DROP TABLE IF EXISTS image'
)
conn
.
execute
(
'CREATE TABLE image (id bigserial primary key, embedding vector(512))'
)
for
data
in
tqdm
(
dataloader
):
embeddings
=
generate_embeddings
(
data
[
0
])
sql
=
'INSERT INTO image (embedding) VALUES '
+
','
.
join
([
'(%s)'
for
_
in
embeddings
])
params
=
[
embedding
for
embedding
in
embeddings
]
conn
.
execute
(
sql
,
params
)
conn
.
execute
(
'CREATE INDEX ON image USING ivfflat (embedding vector_cosine_ops)'
)
def
show_images
(
dataset_images
):
grid
=
torchvision
.
utils
.
make_grid
(
dataset_images
)
img
=
(
grid
/
2
+
0.5
).
permute
(
1
,
2
,
0
).
numpy
()
plt
.
imshow
(
img
)
plt
.
waitforbuttonpress
()
# load 5 random unseen images
queryset
=
torchvision
.
datasets
.
CIFAR10
(
root
=
tempfile
.
gettempdir
(),
train
=
False
,
download
=
True
,
transform
=
transform
)
queryloader
=
torch
.
utils
.
data
.
DataLoader
(
queryset
,
batch_size
=
5
,
shuffle
=
True
)
images
=
next
(
iter
(
queryloader
))[
0
]
# generate and query embeddings
embeddings
=
generate_embeddings
(
images
)
for
image
,
embedding
in
zip
(
images
,
embeddings
):
result
=
conn
.
execute
(
'SELECT id FROM image ORDER BY embedding <=> %s LIMIT 15'
, (
embedding
,)).
fetchall
()
show_images
([
image
]
+
[
dataset
[
row
[
0
]
-
1
][
0
]
for
row
in
result
])
Back
|
FazBrowse Home
|
New Git URL