-
Notifications
You must be signed in to change notification settings - Fork 1
/
encoder_base.py
228 lines (170 loc) · 8.45 KB
/
encoder_base.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import torch
from vectorize import Vectorize
import torch.nn.functional as F
from pattern_tokenizer import tokenize
from encoder_networks import FNNEncoder
from copy import deepcopy
from collections import defaultdict
import json
from reach import Reach
import numpy as np
from tqdm import tqdm
######################################################
######################################################
############ BASE CLASS #####################
######################################################
######################################################
class EncoderBase:
def __init__(self, data_infile, fasttext_model_path, triplet_margin=0.1):
self.loss_weights = {'siamese': 1,
'grounding': 1}
with open(data_infile, 'r') as f:
self.clusters = json.load(f)
self.lookup = {}
for label, strings in self.clusters.items():
for string in strings:
self.lookup[string] = label
# embed all names
all_names = set(self.lookup.keys())
self.vectorize = Vectorize(fasttext_model_path)
self.pretrained_name_embeddings = self.vectorize.create_reach_object(all_names)
self.amount_negative_names = 1
self.triplet_margin = triplet_margin
self.anchor_margin = 0
torch.autograd.set_detect_anomaly(True)
def preprocess(self, name):
return ' '.join(tokenize(name)).lower()
def triplet_loss(self, positive_distance, negative_similarity, override_margin=False, new_margin=0):
if override_margin:
triplet_margin = new_margin
else:
triplet_margin = self.triplet_margin
triplet_loss = positive_distance - negative_similarity + triplet_margin
triplet_loss = F.relu(triplet_loss)
return triplet_loss
def positive_distance(self, anchor_batch, positive_batch):
# take the cosine similarity of the outputted reference and synonym embedding
ref = anchor_batch / anchor_batch.norm(dim=1).reshape(-1, 1)
syn = positive_batch / positive_batch.norm(dim=1).reshape(-1, 1)
dot_products = torch.stack([torch.mm(x.reshape(1, -1), y.reshape(1, -1).t()) for x, y in zip(ref, syn)], dim=0)
dot_product = torch.mean(dot_products)
positive_distance = 1 - dot_product
return positive_distance
def negative_distance(self, anchor_batch, negatives_batch, override_amount_negative=0):
if override_amount_negative:
amount_negative = override_amount_negative
else:
amount_negative = self.amount_negative_names
# take the negative dot product of the outputted reference and negatives embeddings
reference_batch = anchor_batch.reshape(-1, 1, negatives_batch.shape[-1])
ref = reference_batch / reference_batch.norm(dim=2).reshape(-1, 1, 1)
neg = negatives_batch / negatives_batch.norm(dim=2).reshape(-1, amount_negative, 1)
dot_products = []
for x, y in zip(ref, neg):
dot_product = torch.mm(x, y.t())
# apply accumulation strategy for single instance
accumulated_dot_product = dot_product.mean()
dot_products.append(accumulated_dot_product)
dot_products = torch.stack(dot_products, dim=0)
# extract single loss value for entire batch
dot_product = torch.mean(dot_products)
negative_distance = 1 - dot_product
return negative_distance
def batch_cosines(self, anchor_batch, distance_batch):
ref = anchor_batch / anchor_batch.norm(dim=1).reshape(-1, 1)
dist = distance_batch / distance_batch.norm(dim=1).reshape(-1, 1)
dot_products = []
for x, y in zip(ref, dist):
dot_product = torch.mm(x.reshape(1, -1), y.reshape(1, -1).t())
dot_products.append(dot_product)
dot_products = torch.stack(dot_products, dim=0)
return dot_products
def pretrained_loss(self, online_batch, pretrained_batch):
# take the dot product of the outputted reference and original embedding
online = online_batch / online_batch.norm(dim=1).reshape(-1, 1)
pretrained = pretrained_batch / pretrained_batch.norm(dim=1).reshape(-1, 1)
dot_products = torch.stack([torch.mm(x.reshape(1, -1), y.reshape(1, -1).t()) for x, y in zip(
online, pretrained)], dim=0)
dot_product = torch.mean(dot_products)
pretrained_loss = 1 - dot_product + self.anchor_margin
pretrained_loss = F.relu(pretrained_loss)
return pretrained_loss
######################################################
######################################################
############ FNN BASE #######################
######################################################
######################################################
class BaseFNN(EncoderBase):
def __init__(self, input_size=300, hidden_size=9600, num_layers=1, nonlinear=True,
num_epochs=200, batch_size=64, learning_rate=0.001, dropout_rate=0.5, gpu_index=-1, **kwargs):
super().__init__(**kwargs)
# assign device to train on
if gpu_index == -1:
self.gpu = None
self.cuda = False
self.device = torch.device('cpu')
else:
self.gpu = 'cuda:{}'.format(gpu_index)
self.cuda = True
self.device = torch.device(self.gpu)
# initialize model
self.hidden_size = hidden_size
self.input_size = input_size # input embeddings
self.output_size = self.input_size # target embeddings to be learned
self.num_layers = num_layers
self.dropout_rate = dropout_rate
self.nonlinear = nonlinear
self.architecture = FNNEncoder
self.model = self.architecture(self.input_size, self.hidden_size, self.num_layers,
self.dropout_rate, nonlinear=self.nonlinear).to(self.device)
# assign training parameters
self.num_epochs = num_epochs
self.batch_size = batch_size
self.learning_rate = learning_rate
# assign optimizer
self.optimizer = torch.optim.Adam(self.model.parameters(), lr=self.learning_rate)
# loss cache
self.loss_cache = defaultdict(dict)
self.seed = 1993
def connect_to_gpu(self, gpu_index):
self.device = torch.device('cuda:{}'.format(gpu_index))
self.cuda = True
self.reinitialize_model()
def connect_to_cpu(self):
self.device = torch.device('cpu')
self.cuda = False
self.reinitialize_model()
def reinitialize_model(self):
self.model = self.architecture(self.input_size, self.hidden_size, self.num_layers,
self.dropout_rate, nonlinear=self.nonlinear).to(self.device)
self.optimizer = torch.optim.Adam(self.model.parameters(), lr=self.learning_rate)
def change_learning_rate(self, new_learning_rate):
self.learning_rate = new_learning_rate
self.optimizer = torch.optim.Adam(self.model.parameters(), lr=self.learning_rate)
def load_model(self, infile):
self.model.load_state_dict(torch.load(infile, map_location=self.gpu))
self.model.eval()
def save_model(self, outfile):
torch.save(self.model.state_dict(), outfile)
def extract_online_dan_embeddings(self, normalize=True, verbose=False, provided_names=(), preprocess=False):
self.model.eval()
if provided_names:
input_items = provided_names
if preprocess:
input_items = [self.preprocess(name) for name in input_items]
embeddings = self.vectorize.create_reach_object(input_items)
else:
embeddings = deepcopy(self.pretrained_name_embeddings)
input_vectors = embeddings.norm_vectors if normalize else embeddings.vectors
input_items = [x for _, x in sorted(embeddings.indices.items())]
# batch input items to save up on memory...
all_embeddings = []
batch_size = 1000
for i in tqdm(range(0, len(input_items), batch_size), disable=not verbose):
input_batch = input_vectors[i:i + batch_size]
input_tensor = torch.FloatTensor(input_batch).to(self.device)
online_batch = self.model(input_tensor).detach().cpu().numpy()
all_embeddings.append(online_batch)
all_embeddings = np.concatenate(all_embeddings)
online_embeddings = Reach(all_embeddings, input_items)
return online_embeddings