-
Notifications
You must be signed in to change notification settings - Fork 16
/
eval_finetune.py
360 lines (306 loc) · 15.4 KB
/
eval_finetune.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
# Copyright (c) Facebook, Inc. and its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse
import json
import os
import torch
import torch.backends.cudnn as cudnn
from pathlib import Path
from torch import nn
from tqdm import tqdm
import numpy as np
from sklearn.metrics import f1_score
from datasets import UCF101, HMDB51, Kinetics
from models import get_vit_base_patch16_224, get_aux_token_vit, SwinTransformer3D
from utils import utils
from utils.meters import TestMeter
from utils.parser import load_config
def eval_finetune(args):
utils.init_distributed_mode(args)
print("git:\n {}\n".format(utils.get_sha()))
print("\n".join("%s: %s" % (k, str(v)) for k, v in sorted(dict(vars(args)).items())))
cudnn.benchmark = True
os.makedirs(args.output_dir, exist_ok=True)
json.dump(vars(args), open(f"{args.output_dir}/config.json", "w"), indent=4)
# ============ preparing data ... ============
config = load_config(args)
config.TEST.NUM_SPATIAL_CROPS = 1
if args.dataset == "ucf101":
dataset_train = UCF101(cfg=config, mode="train", num_retries=10)
dataset_val = UCF101(cfg=config, mode="val", num_retries=10)
config.TEST.NUM_SPATIAL_CROPS = 3
elif args.dataset == "hmdb51":
dataset_train = HMDB51(cfg=config, mode="train", num_retries=10)
dataset_val = HMDB51(cfg=config, mode="val", num_retries=10)
config.TEST.NUM_SPATIAL_CROPS = 3
elif args.dataset == "kinetics400":
dataset_train = Kinetics(cfg=config, mode="train", num_retries=10)
dataset_val = Kinetics(cfg=config, mode="val", num_retries=10)
config.TEST.NUM_SPATIAL_CROPS = 3
else:
raise NotImplementedError(f"invalid dataset: {args.dataset}")
train_sampler = torch.utils.data.distributed.DistributedSampler(dataset_train, shuffle=True)
train_loader = torch.utils.data.DataLoader(
dataset_train,
sampler=train_sampler,
batch_size=args.batch_size_per_gpu,
num_workers=args.num_workers,
pin_memory=True,
)
val_loader = torch.utils.data.DataLoader(
dataset_val,
batch_size=args.batch_size_per_gpu,
num_workers=args.num_workers,
pin_memory=True,
shuffle=False
)
print(f"Data loaded with {len(dataset_train)} train and {len(dataset_val)} val imgs.")
# ============ building network ... ============
if config.DATA.USE_FLOW or config.MODEL.TWO_TOKEN:
model = get_aux_token_vit(cfg=config, no_head=True)
model_embed_dim = 2 * model.embed_dim
else:
if args.arch == "vit_base":
model = get_vit_base_patch16_224(cfg=config, no_head=True)
model_embed_dim = model.embed_dim
elif args.arch == "swin":
model = SwinTransformer3D(depths=[2, 2, 18, 2], embed_dim=128, num_heads=[4, 8, 16, 32])
model_embed_dim = 1024
else:
raise Exception(f"invalid model: {args.arch}")
if not args.scratch and args.pretrained_weights:
ckpt = torch.load(args.pretrained_weights, map_location='cpu')
if "teacher" in ckpt:
ckpt = ckpt["teacher"]
renamed_checkpoint = {x[len("backbone."):]: y for x, y in ckpt.items() if x.startswith("backbone.")}
msg = model.load_state_dict(renamed_checkpoint, strict=False)
print(f"Loaded model with msg: {msg}")
elif args.scratch:
ckpt = torch.load('kinetics400_vitb_ssl.pth', map_location='cpu')
if "teacher" in ckpt:
ckpt = ckpt["teacher"]
renamed_checkpoint = {x[len("backbone."):]: y for x, y in ckpt.items() if x.startswith("backbone.")}
msg = model.load_state_dict(renamed_checkpoint, strict=False)
print(f"Loaded model with msg: {msg}")
model.cuda()
model = nn.parallel.DistributedDataParallel(model, device_ids=[args.gpu])
if utils.has_batchnorms(model):
model = nn.SyncBatchNorm.convert_sync_batchnorm(model)
print(f"Model {args.arch} {args.patch_size}x{args.patch_size} built.")
# load weights to evaluate
linear_classifier = LinearClassifier(model_embed_dim * (args.n_last_blocks + int(args.avgpool_patchtokens)),
num_labels=args.num_labels)
linear_classifier = linear_classifier.cuda()
linear_classifier = nn.parallel.DistributedDataParallel(linear_classifier, device_ids=[args.gpu])
if args.test:
utils.restart_from_checkpoint(
args.pretrained_model_weights,
backbone_state_dict=model,
state_dict=linear_classifier,
)
test_stats, f1 = validate_network(val_loader, model, linear_classifier, args.n_last_blocks,
args.avgpool_patchtokens)
print(f"F1 score of the network on the {len(dataset_val)} test images: {f1 * 100:.1f}%")
exit(0)
scaled_lr = args.lr * (args.batch_size_per_gpu * utils.get_world_size()) / 256.
# set optimizer
optimizer = torch.optim.SGD(
[{'params': model.parameters(), 'lr': scaled_lr},
{'params': linear_classifier.parameters(), 'lr': scaled_lr}],
momentum=0.9,
weight_decay=0, # we do not apply weight decay
)
scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(optimizer, args.epochs, eta_min=0)
# Optionally resume from a checkpoint
to_restore = {"epoch": 0, "best_acc": 0., "best_f1": 0.}
utils.restart_from_checkpoint(
os.path.join(args.output_dir, "checkpoint.pth.tar"),
run_variables=to_restore,
state_dict=linear_classifier,
optimizer=optimizer,
scheduler=scheduler,
)
start_epoch = to_restore["epoch"]
best_f1 = to_restore["best_acc"]
for epoch in range(start_epoch, args.epochs):
train_loader.sampler.set_epoch(epoch)
train_stats = train(args, model, linear_classifier, optimizer, train_loader, epoch, args.n_last_blocks, args.avgpool_patchtokens)
scheduler.step()
log_stats = {**{f'train_{k}': v for k, v in train_stats.items()}, 'epoch': epoch}
if epoch % args.val_freq == 0 or epoch == args.epochs - 1:
test_stats, f1 = validate_network(val_loader, model, linear_classifier, args.n_last_blocks, args.avgpool_patchtokens)
print(f"F1 score at epoch {epoch} of the network on the {len(dataset_val)} test images: {f1 * 100:.1f}%")
log_stats = {**{k: v for k, v in log_stats.items()},
**{f'test_{k}': v for k, v in test_stats.items()}}
if f1 > best_f1 and utils.is_main_process():
with (Path(args.output_dir) / "log.txt").open("a") as f:
f.write(json.dumps(log_stats) + "\n")
save_dict = {
"epoch": epoch + 1,
"state_dict": linear_classifier.state_dict(),
"backbone_state_dict": model.state_dict(),
"optimizer": optimizer.state_dict(),
"scheduler": scheduler.state_dict(),
"best_f1": best_f1,
}
torch.save(save_dict, os.path.join(args.output_dir, "checkpoint.pth.tar"))
best_f1 = max(best_f1, f1)
print(f'Max F1 score so far: {best_f1 * 100:.1f}%')
def train(args, model, linear_classifier, optimizer, loader, epoch, n, avgpool):
model.train()
linear_classifier.train()
metric_logger = utils.MetricLogger(delimiter=" ")
metric_logger.add_meter('lr', utils.SmoothedValue(window_size=1, fmt='{value:.6f}'))
header = 'Epoch: [{}]'.format(epoch)
for (inp, target, sample_idx, meta) in metric_logger.log_every(loader, 20, header):
# move to gpu
inp = inp.cuda(non_blocking=True)
target = target.cuda(non_blocking=True)
output = model(inp)
output = linear_classifier(output)
# compute cross entropy loss
loss = nn.CrossEntropyLoss()(output, target)
# compute the gradients
optimizer.zero_grad()
loss.backward()
# step
optimizer.step()
# log
torch.cuda.synchronize()
metric_logger.update(loss=loss.item())
metric_logger.update(lr=optimizer.param_groups[0]["lr"])
# gather the stats from all processes
metric_logger.synchronize_between_processes()
print("Averaged stats:", metric_logger)
return {k: meter.global_avg for k, meter in metric_logger.meters.items()}
@torch.no_grad()
def validate_network(val_loader, model, linear_classifier, n, avgpool):
model.eval()
linear_classifier.eval()
metric_logger = utils.MetricLogger(delimiter=" ")
header = 'Test:'
all_target = []
all_output = []
for (inp, target, sample_idx, meta) in metric_logger.log_every(val_loader, 20, header):
# move to gpu
inp = inp.cuda(non_blocking=True)
target = target.cuda(non_blocking=True)
# forward
with torch.no_grad():
output = model(inp)
output = linear_classifier(output)
loss = nn.CrossEntropyLoss()(output, target)
if linear_classifier.module.num_labels >= 5:
acc1, acc5 = utils.accuracy(output, target, topk=(1, 5))
else:
acc1, = utils.accuracy(output, target, topk=(1,))
all_target.extend(target.detach().cpu().numpy())
all_output.extend(np.argmax(output.detach().cpu().numpy(), axis=1))
batch_size = inp.shape[0]
metric_logger.update(loss=loss.item())
metric_logger.meters['acc1'].update(acc1.item(), n=batch_size)
if linear_classifier.module.num_labels >= 5:
metric_logger.meters['acc5'].update(acc5.item(), n=batch_size)
f1 = f1_score(all_target, all_output)
return {k: meter.global_avg for k, meter in metric_logger.meters.items()}, f1
@torch.no_grad()
def validate_network_multi_view(val_loader, model, linear_classifier, n, avgpool, cfg):
linear_classifier.eval()
test_meter = TestMeter(
len(val_loader.dataset)
// (cfg.TEST.NUM_ENSEMBLE_VIEWS * cfg.TEST.NUM_SPATIAL_CROPS),
cfg.TEST.NUM_ENSEMBLE_VIEWS * cfg.TEST.NUM_SPATIAL_CROPS,
args.num_labels,
len(val_loader),
cfg.DATA.MULTI_LABEL,
cfg.DATA.ENSEMBLE_METHOD,
)
test_meter.iter_tic()
all_target = []
all_output = []
for cur_iter, (inp, target, sample_idx, meta) in tqdm(enumerate(val_loader), total=len(val_loader)):
# move to gpu
inp = inp.cuda(non_blocking=True)
test_meter.data_toc()
# forward
with torch.no_grad():
output = model(inp)
output = linear_classifier(output)
all_target.extend(target.detach().cpu().numpy())
all_output.extend(np.argmax(output.detach().cpu().numpy(), axis=1))
output = output.cpu()
target = target.cpu()
sample_idx = sample_idx.cpu()
test_meter.iter_toc()
# Update and log stats.
test_meter.update_stats(
output.detach(), target.detach(), sample_idx.detach()
)
test_meter.log_iter_stats(cur_iter)
test_meter.iter_tic()
f1 = f1_score(all_target, all_output)
test_meter.finalize_metrics(ks=(1, ))
return test_meter.stats, f1
class LinearClassifier(nn.Module):
"""Linear layer to train on top of frozen features"""
def __init__(self, dim, num_labels=1000):
super(LinearClassifier, self).__init__()
self.num_labels = num_labels
self.linear = nn.Linear(dim, num_labels)
self.linear.weight.data.normal_(mean=0.0, std=0.01)
self.linear.bias.data.zero_()
def forward(self, x):
# flatten
x = x.view(x.size(0), -1)
# linear layer
return self.linear(x)
if __name__ == '__main__':
parser = argparse.ArgumentParser('Evaluation with linear classification on ImageNet')
parser.add_argument('--n_last_blocks', default=4, type=int, help="""Concatenate [CLS] tokens
for the `n` last blocks. We use `n=4` when evaluating ViT-Small and `n=1` with ViT-Base.""")
parser.add_argument('--avgpool_patchtokens', default=False, type=utils.bool_flag,
help="""Whether ot not to concatenate the global average pooled features to the [CLS] token.
We typically set this to False for ViT-Small and to True with ViT-Base.""")
parser.add_argument('--arch', default='vit_small', type=str,
choices=['vit_tiny', 'vit_small', 'vit_base', 'swin'],
help='Architecture (support only ViT atm).')
parser.add_argument('--patch_size', default=16, type=int, help='Patch resolution of the model.')
parser.add_argument('--pretrained_weights', default='', type=str, help="Path to pretrained weights to evaluate.")
parser.add_argument('--lc_pretrained_weights', default='', type=str, help="Path to pretrained weights to evaluate.")
parser.add_argument("--checkpoint_key", default="teacher", type=str, help='Key to use in the checkpoint (example: "teacher")')
parser.add_argument('--epochs', default=100, type=int, help='Number of epochs of training.')
parser.add_argument("--lr", default=0.001, type=float, help="""Learning rate at the beginning of
training (highest LR used during training). The learning rate is linearly scaled
with the batch size, and specified here for a reference batch size of 256.
We recommend tweaking the LR depending on the checkpoint evaluated.""")
parser.add_argument('--batch_size_per_gpu', default=128, type=int, help='Per-GPU batch-size')
parser.add_argument("--dist_url", default="env://", type=str, help="""url used to set up
distributed training; see https://pytorch.org/docs/stable/distributed.html""")
parser.add_argument("--local_rank", default=0, type=int, help="Please ignore and do not set this argument.")
parser.add_argument('--data_path', default='/path/to/imagenet/', type=str)
parser.add_argument('--num_workers', default=10, type=int, help='Number of data loading workers per GPU.')
parser.add_argument('--val_freq', default=1, type=int, help="Epoch frequency for validation.")
parser.add_argument('--output_dir', default=".", help='Path to save logs and checkpoints')
parser.add_argument('--num_labels', default=1000, type=int, help='Number of labels for linear classifier')
parser.add_argument('--dataset', default="ucf101", help='Dataset: ucf101 / hmdb51')
parser.add_argument('--use_flow', default=False, type=utils.bool_flag, help="use flow teacher")
parser.add_argument('--scratch', action='store_true')
parser.add_argument('--test', action='store_true')
parser.add_argument('--pretrained_model_weights', default='polypdiag.pth', type=str, help='pre-trained weights')
# config file
parser.add_argument("--cfg", dest="cfg_file", help="Path to the config file", type=str,
default="models/configs/Kinetics/TimeSformer_divST_8x32_224.yaml")
parser.add_argument("--opts", help="See utils/defaults.py for all options", default=None, nargs=argparse.REMAINDER)
args = parser.parse_args()
eval_finetune(args)