| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| import os |
| import argparse |
| import json |
| from pathlib import Path |
|
|
| import torch |
| from torch import nn |
| import torch.distributed as dist |
| import torch.backends.cudnn as cudnn |
| from torchvision import datasets |
| from torchvision import transforms as pth_transforms |
| from torchvision import models as torchvision_models |
|
|
| import utils |
| import vision_transformer as vits |
| from datasets import CUB200 |
| from torch.utils.tensorboard import SummaryWriter |
|
|
|
|
| def eval_linear(args): |
| if args.device != 'cuda': |
| args.distributed = False |
| else: |
| utils.init_distributed_mode(args) |
| |
| print(args) |
| device = torch.device(args.device) |
| cudnn.benchmark = True |
|
|
| |
| |
| if args.arch in vits.__dict__.keys(): |
| model = vits.__dict__[args.arch](patch_size=args.patch_size, num_classes=args.num_labels) |
| embed_dim = model.embed_dim * (args.n_last_blocks + int(args.avgpool_patchtokens)) |
| else: |
| print(f"Unknow architecture: {args.arch}") |
| sys.exit(1) |
| model.to(device) |
| model.eval() |
|
|
| |
| |
| |
| |
| |
| n_parameters = sum(p.numel() for p in model.parameters() if p.requires_grad) |
| print('number of params:', n_parameters) |
|
|
| |
| utils.load_pretrained_weights(model, args.pretrained_weights, args.checkpoint_key, args.arch, args.patch_size) |
| print(f"Model {args.arch} built.") |
|
|
| linear_classifier = LinearClassifier(embed_dim, num_labels=args.num_labels) |
| linear_classifier = linear_classifier.to(device) |
| linear_classifier = nn.parallel.DistributedDataParallel(linear_classifier, device_ids=[args.gpu]) |
| linear_classifier_without_ddp = linear_classifier.module |
|
|
| |
| train_transform = pth_transforms.Compose([ |
| pth_transforms.RandomResizedCrop(args.input_size), |
| pth_transforms.RandomHorizontalFlip(), |
| pth_transforms.ToTensor(), |
| pth_transforms.Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225)), |
| ]) |
| val_transform = pth_transforms.Compose([ |
| pth_transforms.Resize(int((256/224)*args.input_size), interpolation=3), |
| pth_transforms.CenterCrop(args.input_size), |
| pth_transforms.ToTensor(), |
| pth_transforms.Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225)), |
| ]) |
| if args.dataset == 'cub': |
| dataset_train = CUB200(args.data_path, is_train=True, transform=train_transform, ori_size=args.ori_size, input_size=args.input_size) |
| dataset_val = CUB200(args.data_path, is_train=False,transform=val_transform, ori_size = args.ori_size, input_size = args.input_size) |
| else: |
| raise NotImplementedError |
| if args.distributed: |
| sampler_train = torch.utils.data.distributed.DistributedSampler(dataset_train) |
| sampler_val = torch.utils.data.distributed.DistributedSampler(dataset_val, shuffle=False) |
| else: |
| sampler_train = torch.utils.data.RandomSampler(dataset_train) |
| sampler_val = torch.utils.data.SequentialSampler(dataset_val) |
| |
| val_loader = torch.utils.data.DataLoader( |
| dataset_val, |
| sampler=sampler_val, |
| batch_size=args.batch_size_per_gpu, |
| num_workers=args.num_workers, |
| pin_memory=True, |
| ) |
|
|
| |
| |
| |
| |
| |
| |
|
|
| |
| train_loader = torch.utils.data.DataLoader( |
| dataset_train, |
| sampler=sampler_train, |
| batch_size=args.batch_size_per_gpu, |
| num_workers=args.num_workers, |
| pin_memory=True, |
| ) |
| print(f"Data loaded with {len(dataset_train)} train and {len(dataset_val)} val imgs.") |
|
|
| |
| optimizer = torch.optim.SGD( |
| linear_classifier.parameters(), |
| args.lr * (args.batch_size_per_gpu * utils.get_world_size()) / 256., |
| momentum=0.9, |
| weight_decay=args.weight_decay, |
| ) |
| scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(optimizer, args.epochs, eta_min=0) |
|
|
| if utils.is_main_process(): |
| writer = SummaryWriter(args.output_dir + '/log') |
| start_epoch = 0 |
| best_acc = 0 |
| print('Starting training') |
|
|
| for epoch in range(start_epoch, args.epochs): |
| train_loader.sampler.set_epoch(epoch) |
|
|
| train_stats = train(model, linear_classifier_without_ddp, device, 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 = validate_network(val_loader, model, linear_classifier, device, args.n_last_blocks, args.avgpool_patchtokens) |
| print(f"Accuracy at epoch {epoch} of the network on the {len(dataset_val)} test images: {test_stats['acc1']:.1f}%") |
| best_acc = max(best_acc, test_stats["acc1"]) |
| print(f'Max accuracy so far: {best_acc:.2f}%') |
| log_stats = {**{k: v for k, v in log_stats.items()}, |
| **{f'test_{k}': v for k, v in test_stats.items()}, |
| "best_acc": best_acc} |
| if 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, |
| "model": model.state_dict(), |
| "classifier": linear_classifier_without_ddp.state_dict(), |
| "optimizer": optimizer.state_dict(), |
| "scheduler": scheduler.state_dict(), |
| "best_acc": best_acc, |
| } |
|
|
| writer.add_scalar('Train_loss', train_stats['loss'], global_step=epoch) |
| writer.add_scalar('Learning_rate', train_stats['lr'], global_step=epoch) |
| writer.add_scalar('Train Acc_1', train_stats['acc1'], global_step=epoch) |
| writer.add_scalar('Acc_1', test_stats['acc1'], global_step=epoch) |
| writer.add_scalar('Acc_5', test_stats['acc5'], global_step=epoch) |
|
|
| torch.save(save_dict, os.path.join(args.output_dir, "checkpoint.pth")) |
| |
| if best_acc < float(test_stats['acc1']): |
| best_acc = float(test_stats['acc1']) |
| shutil.copyfile(checkpoint_path, args.output_dir + '/model_best.pth') |
| print(f'Max accuracy so far: {best_acc:.2f}%') |
| print("Training of the supervised linear classifier on frozen features completed.\n" |
| "Top-1 test accuracy: {acc:.1f}".format(acc=best_acc)) |
|
|
|
|
| def train(model, linear_classifier, device, optimizer, loader, epoch, n, avgpool): |
| 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 batch in metric_logger.log_every(loader, 20, header): |
| inp,target = batch[:2] |
| |
| |
| inp = inp.to(device, non_blocking=True) |
| target = target.to(device, non_blocking=True) |
|
|
| |
| with torch.no_grad(): |
| if "vit" in args.arch: |
| intermediate_output, _ = model.get_intermediate_layers(inp, n) |
| output = torch.cat([x[:, 0] for x in intermediate_output], dim=-1) |
| if avgpool: |
| output = torch.cat((output.unsqueeze(-1), torch.mean(intermediate_output[-1][:, 1:], dim=1).unsqueeze(-1)), dim=-1) |
| output = output.reshape(output.shape[0], -1) |
| else: |
| output = model(inp) |
| output = linear_classifier(output) |
|
|
| |
| loss = nn.CrossEntropyLoss()(output, target) |
| |
| acc1, = utils.accuracy(output, target, topk=(1,)) |
| |
| optimizer.zero_grad() |
| loss.backward() |
|
|
| |
| optimizer.step() |
|
|
| |
| torch.cuda.synchronize() |
| batch_size = inp.shape[0] |
| metric_logger.update(loss=loss.item()) |
| metric_logger.update(lr=optimizer.param_groups[0]["lr"]) |
| metric_logger.meters['acc1'].update(acc1.item(), n=batch_size) |
| |
| |
| 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, device, n, avgpool): |
| linear_classifier.eval() |
| metric_logger = utils.MetricLogger(delimiter=" ") |
| header = 'Test:' |
| for batch in metric_logger.log_every(val_loader, 20, header): |
| inp, target = batch[:2] |
| |
| inp = inp.to(device, non_blocking=True) |
| target = target.to(device, non_blocking=True) |
|
|
| |
| with torch.no_grad(): |
| if "vit" in args.arch: |
| intermediate_output, _ = model.get_intermediate_layers(inp, n) |
| output = torch.cat([x[:, 0] for x in intermediate_output], dim=-1) |
| if avgpool: |
| output = torch.cat((output.unsqueeze(-1), torch.mean(intermediate_output[-1][:, 1:], dim=1).unsqueeze(-1)), dim=-1) |
| output = output.reshape(output.shape[0], -1) |
| else: |
| 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,)) |
|
|
| 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) |
| if linear_classifier.module.num_labels >= 5: |
| print('* Acc@1 {top1.global_avg:.3f} Acc@5 {top5.global_avg:.3f} loss {losses.global_avg:.3f}' |
| .format(top1=metric_logger.acc1, top5=metric_logger.acc5, losses=metric_logger.loss)) |
| else: |
| print('* Acc@1 {top1.global_avg:.3f} loss {losses.global_avg:.3f}' |
| .format(top1=metric_logger.acc1, losses=metric_logger.loss)) |
| return {k: meter.global_avg for k, meter in metric_logger.meters.items()} |
|
|
|
|
| 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): |
| |
| x = x.view(x.size(0), -1) |
|
|
| |
| 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, help='Architecture') |
| parser.add_argument('--dataset', default='cub', type=str, help='Dataset') |
| parser.add_argument('--device', default='cuda', type=str, help='Deivce') |
| 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("--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('--evaluate', dest='evaluate', action='store_true', help='evaluate model on validation set') |
| parser.add_argument('--ori_size', default=False, action='store_true', help='Evaluate on image raw size') |
| parser.add_argument('--input_size', default=224, type=int, help='Input image size, default(224).') |
| parser.add_argument('--distributed', default=False, action='store_true', help='Using distributed data parallel') |
| parser.add_argument("--weight_decay", default=0.001, type=float, help='weight decay') |
| args = parser.parse_args() |
| eval_linear(args) |
|
|