-
Notifications
You must be signed in to change notification settings - Fork 52
/
moco.py
450 lines (375 loc) · 17.2 KB
/
moco.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
import copy
import math
import warnings
from functools import partial
from typing import Optional
from typing import Union
import attr
import pytorch_lightning as pl
import torch
import torch.nn.functional as F
from pytorch_lightning.utilities import AttributeDict
from torch.utils.data import DataLoader
import utils
from batchrenorm import BatchRenorm1d
from lars import LARS
from model_params import ModelParams
from sklearn.linear_model import LogisticRegression
def get_mlp_normalization(hparams: ModelParams, prediction=False):
normalization_str = hparams.mlp_normalization
if prediction and hparams.prediction_mlp_normalization != "same":
normalization_str = hparams.prediction_mlp_normalization
if normalization_str is None:
return None
elif normalization_str == "bn":
return partial(torch.nn.BatchNorm1d, num_features=hparams.mlp_hidden_dim)
elif normalization_str == "br":
return partial(BatchRenorm1d, num_features=hparams.mlp_hidden_dim)
elif normalization_str == "ln":
return partial(torch.nn.LayerNorm, normalized_shape=[hparams.mlp_hidden_dim])
elif normalization_str == "gn":
return partial(torch.nn.GroupNorm, num_channels=hparams.mlp_hidden_dim, num_groups=32)
else:
raise NotImplementedError(f"mlp normalization {normalization_str} not implemented")
class SelfSupervisedMethod(pl.LightningModule):
model: torch.nn.Module
dataset: utils.DatasetBase
hparams: AttributeDict
embedding_dim: Optional[int]
def __init__(
self,
hparams: Union[ModelParams, dict, None] = None,
**kwargs,
):
super().__init__()
if hparams is None:
hparams = self.params(**kwargs)
elif isinstance(hparams, dict):
hparams = self.params(**hparams, **kwargs)
if isinstance(self.hparams, AttributeDict):
self.hparams.update(AttributeDict(attr.asdict(hparams)))
else:
self.hparams = AttributeDict(attr.asdict(hparams))
# Check for configuration issues
if (
hparams.gather_keys_for_queue
and not hparams.shuffle_batch_norm
and not hparams.encoder_arch.startswith("ws_")
):
warnings.warn(
"Configuration suspicious: gather_keys_for_queue without shuffle_batch_norm or weight standardization"
)
some_negative_examples = hparams.use_negative_examples_from_batch or hparams.use_negative_examples_from_queue
if hparams.loss_type == "ce" and not some_negative_examples:
warnings.warn("Configuration suspicious: cross entropy loss without negative examples")
# Create encoder model
self.model = utils.get_encoder(hparams.encoder_arch, hparams.dataset_name)
# Create dataset
self.dataset = utils.get_moco_dataset(hparams)
if hparams.use_lagging_model:
# "key" function (no grad)
self.lagging_model = copy.deepcopy(self.model)
for param in self.lagging_model.parameters():
param.requires_grad = False
else:
self.lagging_model = None
self.projection_model = utils.MLP(
hparams.embedding_dim,
hparams.dim,
hparams.mlp_hidden_dim,
num_layers=hparams.projection_mlp_layers,
normalization=get_mlp_normalization(hparams),
weight_standardization=hparams.use_mlp_weight_standardization,
)
self.prediction_model = utils.MLP(
hparams.dim,
hparams.dim,
hparams.mlp_hidden_dim,
num_layers=hparams.prediction_mlp_layers,
normalization=get_mlp_normalization(hparams, prediction=True),
weight_standardization=hparams.use_mlp_weight_standardization,
)
if hparams.use_lagging_model:
# "key" function (no grad)
self.lagging_projection_model = copy.deepcopy(self.projection_model)
for param in self.lagging_projection_model.parameters():
param.requires_grad = False
else:
self.lagging_projection_model = None
# this classifier is used to compute representation quality each epoch
self.sklearn_classifier = LogisticRegression(max_iter=100, solver="liblinear")
if hparams.use_negative_examples_from_queue:
# create the queue
self.register_buffer("queue", torch.randn(hparams.dim, hparams.K))
self.queue = torch.nn.functional.normalize(self.queue, dim=0)
self.register_buffer("queue_ptr", torch.zeros(1, dtype=torch.long))
else:
self.queue = None
def _get_embeddings(self, x):
"""
Input:
im_q: a batch of query images
im_k: a batch of key images
Output:
logits, targets
"""
bsz, nd, nc, nh, nw = x.shape
assert nd == 2, "second dimension should be the split image -- dims should be N2CHW"
im_q = x[:, 0].contiguous()
im_k = x[:, 1].contiguous()
# compute query features
emb_q = self.model(im_q)
q_projection = self.projection_model(emb_q)
q = self.prediction_model(q_projection) # queries: NxC
if self.hparams.use_lagging_model:
# compute key features
with torch.no_grad(): # no gradient to keys
if self.hparams.shuffle_batch_norm:
im_k, idx_unshuffle = utils.BatchShuffleDDP.shuffle(im_k)
k = self.lagging_projection_model(self.lagging_model(im_k)) # keys: NxC
if self.hparams.shuffle_batch_norm:
k = utils.BatchShuffleDDP.unshuffle(k, idx_unshuffle)
else:
emb_k = self.model(im_k)
k_projection = self.projection_model(emb_k)
k = self.prediction_model(k_projection) # queries: NxC
if self.hparams.use_unit_sphere_projection:
q = torch.nn.functional.normalize(q, dim=1)
k = torch.nn.functional.normalize(k, dim=1)
return emb_q, q, k
def _get_contrastive_predictions(self, q, k):
if self.hparams.use_negative_examples_from_batch:
logits = torch.mm(q, k.T)
labels = torch.arange(0, q.shape[0], dtype=torch.long).to(logits.device)
return logits, labels
# compute logits
# Einstein sum is more intuitive
# positive logits: Nx1
l_pos = torch.einsum("nc,nc->n", [q, k]).unsqueeze(-1)
if self.hparams.use_negative_examples_from_queue:
# negative logits: NxK
l_neg = torch.einsum("nc,ck->nk", [q, self.queue.clone().detach()])
logits = torch.cat([l_pos, l_neg], dim=1)
else:
logits = l_pos
# labels: positive key indicators
labels = torch.zeros(logits.shape[0], dtype=torch.long).to(logits.device)
return logits, labels
def _get_pos_neg_ip(self, emb_q, k):
with torch.no_grad():
z = self.projection_model(emb_q)
z = torch.nn.functional.normalize(z, dim=1)
ip = torch.mm(z, k.T)
eye = torch.eye(z.shape[0]).to(z.device)
pos_ip = (ip * eye).sum() / z.shape[0]
neg_ip = (ip * (1 - eye)).sum() / (z.shape[0] * (z.shape[0] - 1))
return pos_ip, neg_ip
def _get_contrastive_loss(self, logits, labels):
if self.hparams.loss_type == "ce":
if self.hparams.use_eqco_margin:
if self.hparams.use_negative_examples_from_batch:
neg_factor = self.hparams.eqco_alpha / self.hparams.batch_size
elif self.hparams.use_negative_examples_from_queue:
neg_factor = self.hparams.eqco_alpha / self.hparams.K
else:
raise Exception("Must have negative examples for ce loss")
predictions = utils.log_softmax_with_factors(logits / self.hparams.T, neg_factor=neg_factor)
return F.nll_loss(predictions, labels)
return F.cross_entropy(logits / self.hparams.T, labels)
new_labels = torch.zeros_like(logits)
new_labels.scatter_(1, labels.unsqueeze(1), 1)
if self.hparams.loss_type == "bce":
return F.binary_cross_entropy_with_logits(logits / self.hparams.T, new_labels) * logits.shape[1]
if self.hparams.loss_type == "ip":
# inner product
# negative sign for label=1 (maximize ip), positive sign for label=0 (minimize ip)
inner_product = (1 - new_labels * 2) * logits
return torch.mean((inner_product + 1).sum(dim=-1))
raise NotImplementedError(f"Loss function {self.hparams.loss_type} not implemented")
def _get_vicreg_loss(self, z_a, z_b, batch_idx):
assert z_a.shape == z_b.shape and len(z_a.shape) == 2
# invariance loss
loss_inv = F.mse_loss(z_a, z_b)
# variance loss
std_z_a = torch.sqrt(z_a.var(dim=0) + self.hparams.variance_loss_epsilon)
std_z_b = torch.sqrt(z_b.var(dim=0) + self.hparams.variance_loss_epsilon)
loss_v_a = torch.mean(F.relu(1 - std_z_a))
loss_v_b = torch.mean(F.relu(1 - std_z_b))
loss_var = loss_v_a + loss_v_b
# covariance loss
N, D = z_a.shape
z_a = z_a - z_a.mean(dim=0)
z_b = z_b - z_b.mean(dim=0)
cov_z_a = ((z_a.T @ z_a) / (N - 1)).square() # DxD
cov_z_b = ((z_b.T @ z_b) / (N - 1)).square() # DxD
loss_c_a = (cov_z_a.sum() - cov_z_a.diagonal().sum()) / D
loss_c_b = (cov_z_b.sum() - cov_z_b.diagonal().sum()) / D
loss_cov = loss_c_a + loss_c_b
weighted_inv = loss_inv * self.hparams.invariance_loss_weight
weighted_var = loss_var * self.hparams.variance_loss_weight
weighted_cov = loss_cov * self.hparams.covariance_loss_weight
loss = weighted_inv + weighted_var + weighted_cov
return {
"loss": loss,
"loss_invariance": weighted_inv,
"loss_variance": weighted_var,
"loss_covariance": weighted_cov,
}
def forward(self, x):
return self.model(x)
def training_step(self, batch, batch_idx, optimizer_idx=None):
all_params = list(self.model.parameters())
x, class_labels = batch # batch is a tuple, we just want the image
emb_q, q, k = self._get_embeddings(x)
pos_ip, neg_ip = self._get_pos_neg_ip(emb_q, k)
logits, labels = self._get_contrastive_predictions(q, k)
if self.hparams.use_vicreg_loss:
losses = self._get_vicreg_loss(q, k, batch_idx)
contrastive_loss = losses["loss"]
else:
losses = {}
contrastive_loss = self._get_contrastive_loss(logits, labels)
if self.hparams.use_both_augmentations_as_queries:
x_flip = torch.flip(x, dims=[1])
emb_q2, q2, k2 = self._get_embeddings(x_flip)
logits2, labels2 = self._get_contrastive_predictions(q2, k2)
pos_ip2, neg_ip2 = self._get_pos_neg_ip(emb_q2, k2)
pos_ip = (pos_ip + pos_ip2) / 2
neg_ip = (neg_ip + neg_ip2) / 2
contrastive_loss += self._get_contrastive_loss(logits2, labels2)
contrastive_loss = contrastive_loss.mean() * self.hparams.loss_constant_factor
log_data = {
"step_train_loss": contrastive_loss,
"step_pos_cos": pos_ip,
"step_neg_cos": neg_ip,
**losses,
}
with torch.no_grad():
self._momentum_update_key_encoder()
some_negative_examples = (
self.hparams.use_negative_examples_from_batch or self.hparams.use_negative_examples_from_queue
)
if some_negative_examples:
acc1, acc5 = utils.calculate_accuracy(logits, labels, topk=(1, 5))
log_data.update({"step_train_acc1": acc1, "step_train_acc5": acc5})
# dequeue and enqueue
if self.hparams.use_negative_examples_from_queue:
self._dequeue_and_enqueue(k)
self.log_dict(log_data)
return {"loss": contrastive_loss}
def validation_step(self, batch, batch_idx):
x, class_labels = batch
with torch.no_grad():
emb = self.model(x)
return {"emb": emb, "labels": class_labels}
def validation_epoch_end(self, outputs):
embeddings = torch.cat([x["emb"] for x in outputs]).cpu().detach().numpy()
labels = torch.cat([x["labels"] for x in outputs]).cpu().detach().numpy()
num_split_linear = embeddings.shape[0] // 2
self.sklearn_classifier.fit(embeddings[:num_split_linear], labels[:num_split_linear])
train_accuracy = self.sklearn_classifier.score(embeddings[:num_split_linear], labels[:num_split_linear]) * 100
valid_accuracy = self.sklearn_classifier.score(embeddings[num_split_linear:], labels[num_split_linear:]) * 100
log_data = {
"epoch": self.current_epoch,
"train_class_acc": train_accuracy,
"valid_class_acc": valid_accuracy,
"T": self._get_temp(),
"m": self._get_m(),
}
print(f"Epoch {self.current_epoch} accuracy: train: {train_accuracy:.1f}%, validation: {valid_accuracy:.1f}%")
self.log_dict(log_data)
def configure_optimizers(self):
# exclude bias and batch norm from LARS and weight decay
regular_parameters = []
regular_parameter_names = []
excluded_parameters = []
excluded_parameter_names = []
for name, parameter in self.named_parameters():
if parameter.requires_grad is False:
continue
if any(x in name for x in self.hparams.exclude_matching_parameters_from_lars):
excluded_parameters.append(parameter)
excluded_parameter_names.append(name)
else:
regular_parameters.append(parameter)
regular_parameter_names.append(name)
param_groups = [
{"params": regular_parameters, "names": regular_parameter_names, "use_lars": True},
{
"params": excluded_parameters,
"names": excluded_parameter_names,
"use_lars": False,
"weight_decay": 0,
},
]
if self.hparams.optimizer_name == "sgd":
optimizer = torch.optim.SGD
elif self.hparams.optimizer_name == "lars":
optimizer = partial(LARS, warmup_epochs=self.hparams.lars_warmup_epochs, eta=self.hparams.lars_eta)
else:
raise NotImplementedError(f"No such optimizer {self.hparams.optimizer_name}")
encoding_optimizer = optimizer(
param_groups,
lr=self.hparams.lr,
momentum=self.hparams.momentum,
weight_decay=self.hparams.weight_decay,
)
self.lr_scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(
encoding_optimizer,
self.hparams.max_epochs,
eta_min=self.hparams.final_lr_schedule_value,
)
return [encoding_optimizer], [self.lr_scheduler]
def _get_m(self):
if self.hparams.use_momentum_schedule is False:
return self.hparams.m
return 1 - (1 - self.hparams.m) * (math.cos(math.pi * self.current_epoch / self.hparams.max_epochs) + 1) / 2
def _get_temp(self):
return self.hparams.T
@torch.no_grad()
def _momentum_update_key_encoder(self):
"""
Momentum update of the key encoder
"""
if not self.hparams.use_lagging_model:
return
m = self._get_m()
for param_q, param_k in zip(self.model.parameters(), self.lagging_model.parameters()):
param_k.data = param_k.data * m + param_q.data * (1.0 - m)
for param_q, param_k in zip(self.projection_model.parameters(), self.lagging_projection_model.parameters()):
param_k.data = param_k.data * m + param_q.data * (1.0 - m)
@torch.no_grad()
def _dequeue_and_enqueue(self, keys):
# gather keys before updating queue
if self.hparams.gather_keys_for_queue:
keys = utils.concat_all_gather(keys)
batch_size = keys.shape[0]
ptr = int(self.queue_ptr)
assert self.hparams.K % batch_size == 0 # for simplicity
# replace the keys at ptr (dequeue and enqueue)
self.queue[:, ptr : ptr + batch_size] = keys.T
ptr = (ptr + batch_size) % self.hparams.K # move pointer
self.queue_ptr[0] = ptr
def prepare_data(self) -> None:
self.dataset.get_train()
self.dataset.get_validation()
def train_dataloader(self):
return DataLoader(
self.dataset.get_train(),
batch_size=self.hparams.batch_size,
num_workers=self.hparams.num_data_workers,
pin_memory=self.hparams.pin_data_memory,
drop_last=self.hparams.drop_last_batch,
shuffle=True,
)
def val_dataloader(self):
return DataLoader(
self.dataset.get_validation(),
batch_size=self.hparams.batch_size,
num_workers=self.hparams.num_data_workers,
pin_memory=self.hparams.pin_data_memory,
drop_last=self.hparams.drop_last_batch,
)
@classmethod
def params(cls, **kwargs) -> ModelParams:
return ModelParams(**kwargs)