forked from pixray/pixray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vectorize.py
executable file
·190 lines (162 loc) · 7 KB
/
vectorize.py
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import argparse
import sys
import json
import numpy as np
from sklearn import metrics
from sklearn import svm
import os
from tqdm import tqdm
from util import real_glob
import torch
from clip import clip
from torchvision.transforms import Compose, Resize, CenterCrop, ToTensor, Normalize
from PIL import Image
from slip import get_clip_perceptor, all_slip_models
perceptors = {}
def init(args):
global perceptors, resolutions
device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')
if args.models is not None:
# print("Running models ", args.models)
models = args.models.split(",")
args.models = [model.strip() for model in models]
else:
args.models = clip.available_models()
args.models = args.models + all_slip_models
# print("using models ", args.models)
for p_model in args.models:
perceptor = get_clip_perceptor(p_model, device)
perceptors[p_model] = perceptor
def fetch_images(preprocess, image_files):
images = []
for filename in image_files:
image = preprocess(Image.open(filename).convert("RGB"))
images.append(image)
return images
def do_image_features(model, images):
image_input = torch.tensor(np.stack(images)).cuda()
with torch.no_grad():
image_features = model.encode_image(image_input).float()
return image_features
def spew_vectors(args, inputs, outfile):
global perceptors, resolutions
input_files = real_glob(inputs)
save_table = {}
for clip_model in args.models:
perceptor = perceptors[clip_model]
input_resolution = perceptor.input_resolution
print(f"Running {clip_model} at {input_resolution}")
preprocess = Compose([
Resize(input_resolution, interpolation=Image.BICUBIC),
CenterCrop(input_resolution),
ToTensor()
])
images = fetch_images(preprocess, input_files);
features = do_image_features(perceptor, images)
print(f"saving {features.shape} to {clip_model}")
save_table[clip_model] = features.tolist()
with open(outfile, 'w') as fp:
json.dump(save_table, fp)
def run_avg_diff(args):
f1, f2 = args.avg_diff.split(",")
with open(f1) as f_in:
table1 = json.load(f_in)
with open(f2) as f_in:
table2 = json.load(f_in)
save_table = {}
for k in table1:
encoded1 = np.array(table1[k])
encoded2 = np.array(table2[k])
print("Taking the difference between {} and {} vectors".format(encoded1.shape, encoded2.shape))
m1 = np.mean(encoded1,axis=0)
m2 = np.mean(encoded2,axis=0)
atvec = m2 - m1
z_dim, = atvec.shape
atvecs = atvec.reshape(1,z_dim)
print("Computed diff shape: {}".format(atvecs.shape))
save_table[k] = atvecs.tolist()
with open(args.outfile, 'w') as fp:
json.dump(save_table, fp)
def run_svm_diff(args):
f1, f2 = args.svm_diff.split(",")
with open(f1) as f_in:
table1 = json.load(f_in)
with open(f2) as f_in:
table2 = json.load(f_in)
save_table = {}
for k in table1:
encoded1 = np.array(table1[k])
encoded2 = np.array(table2[k])
print("Taking the svm difference between {} and {} vectors".format(encoded1.shape, encoded2.shape))
h = .02 # step size in the mesh
C = 1.0 # SVM regularization parameter
X_arr = []
y_arr = []
for l in range(len(encoded1)):
X_arr.append(encoded1[l])
y_arr.append(False)
for l in range(len(encoded2)):
X_arr.append(encoded2[l])
y_arr.append(True)
X = np.array(X_arr)
y = np.array(y_arr)
# svc = svm.LinearSVC(C=C, class_weight="balanced").fit(X, y)
svc = svm.LinearSVC(C=C,max_iter=20000).fit(X, y)
# get the separating hyperplane
w = svc.coef_[0]
#FIXME: this is a scaling hack.
m1 = np.mean(encoded1,axis=0)
m2 = np.mean(encoded2,axis=0)
mean_vector = m1 - m2
mean_length = np.linalg.norm(mean_vector)
svn_length = np.linalg.norm(w)
atvec = (mean_length / svn_length) * w
z_dim, = atvec.shape
atvecs = atvec.reshape(1,z_dim)
print("Computed svm diff shape: {}".format(atvecs.shape))
save_table[k] = atvecs.tolist()
with open(args.outfile, 'w') as fp:
json.dump(save_table, fp)
def main():
parser = argparse.ArgumentParser(description="Do vectory things")
parser.add_argument("--models", type=str, help="CLIP model", default=None, dest='models')
parser.add_argument("--inputs", type=str, help="Images to process", default=None, dest='inputs')
parser.add_argument("--avg-diff", dest='avg_diff', type=str, default=None,
help="Two vector files to average and then diff")
parser.add_argument("--svm-diff", dest='svm_diff', type=str, default=None,
help="Two vector files to average and then svm diff")
parser.add_argument("--z-dim", dest='z_dim', type=int, default=100,
help="z dimension of vectors")
parser.add_argument("--encoded-vectors", type=str, default=None,
help="Comma separated list of json arrays")
parser.add_argument("--encoded-true", type=str, default=None,
help="Comma separated list of json arrays (true)")
parser.add_argument("--encoded-false", type=str, default=None,
help="Comma separated list of json arrays (false)")
parser.add_argument('--thresh', dest='thresh', default=False, action='store_true',
help="Compute thresholds for attribute vectors classifiers")
parser.add_argument('--svm', dest='svm', default=False, action='store_true',
help="Use SVM for computing attribute vectors")
parser.add_argument("--limit", dest='limit', type=int, default=None,
help="Limit number of inputs when computing atvecs")
parser.add_argument("--attribute-vectors", dest='attribute_vectors', default=None,
help="use json file as source of attribute vectors")
parser.add_argument("--attribute-thresholds", dest='attribute_thresholds', default=None,
help="use these non-zero values for binary classifier thresholds")
parser.add_argument("--attribute-set", dest='attribute_set', default="all",
help="score ROC/accuracy against true/false/all")
parser.add_argument('--attribute-indices', dest='attribute_indices', default=None, type=str,
help="indices to select specific attribute vectors")
parser.add_argument('--outfile', dest='outfile', default=None,
help="Output json file for vectors.")
args = parser.parse_args()
if args.avg_diff:
run_avg_diff(args)
sys.exit(0)
if args.svm_diff:
run_svm_diff(args)
sys.exit(0)
init(args)
spew_vectors(args, args.inputs, args.outfile)
if __name__ == '__main__':
main()