Upload to Main
This commit is contained in:
239
trainers/vpt.py
Normal file
239
trainers/vpt.py
Normal file
@@ -0,0 +1,239 @@
|
||||
import os.path as osp
|
||||
from collections import OrderedDict
|
||||
import math
|
||||
|
||||
import torch
|
||||
import torch.nn as nn
|
||||
from torch.nn import functional as F
|
||||
from torch.cuda.amp import GradScaler, autocast
|
||||
|
||||
from dassl.engine import TRAINER_REGISTRY, TrainerX
|
||||
from dassl.metrics import compute_accuracy
|
||||
from dassl.utils import load_pretrained_weights, load_checkpoint
|
||||
from dassl.optim import build_optimizer, build_lr_scheduler
|
||||
|
||||
from clip import clip
|
||||
from clip.simple_tokenizer import SimpleTokenizer as _Tokenizer
|
||||
|
||||
_tokenizer = _Tokenizer()
|
||||
|
||||
|
||||
def load_clip_to_cpu(cfg):
|
||||
backbone_name = cfg.MODEL.BACKBONE.NAME
|
||||
url = clip._MODELS[backbone_name]
|
||||
model_path = clip._download(url)
|
||||
|
||||
try:
|
||||
# loading JIT archive
|
||||
model = torch.jit.load(model_path, map_location="cpu").eval()
|
||||
state_dict = None
|
||||
|
||||
except RuntimeError:
|
||||
state_dict = torch.load(model_path, map_location="cpu")
|
||||
design_details = { "trainer": "VPT",
|
||||
"vision_depth": cfg.TRAINER.VPT.PROMPT_DEPTH_VISION,
|
||||
"vision_ctx": cfg.TRAINER.VPT.N_CTX_VISION,
|
||||
"language_depth": 0,
|
||||
"language_ctx": 0}
|
||||
assert cfg.TRAINER.VPT.PROMPT_DEPTH_VISION >= 1, "For Vision Prompting, PROMPT_DEPTH_VISION should be >= 1"
|
||||
model = clip.build_model(state_dict or model.state_dict(), design_details)
|
||||
|
||||
return model.float()
|
||||
|
||||
|
||||
class TextEncoder(nn.Module):
|
||||
def __init__(self, clip_model):
|
||||
super().__init__()
|
||||
self.transformer = clip_model.transformer
|
||||
self.positional_embedding = clip_model.positional_embedding
|
||||
self.ln_final = clip_model.ln_final
|
||||
self.text_projection = clip_model.text_projection
|
||||
self.dtype = clip_model.dtype
|
||||
|
||||
def forward(self, prompts, tokenized_prompts):
|
||||
x = prompts + self.positional_embedding.type(self.dtype)
|
||||
x = x.permute(1, 0, 2) # NLD -> LND
|
||||
x = self.transformer(x)
|
||||
x = x.permute(1, 0, 2) # LND -> NLD
|
||||
x = self.ln_final(x).type(self.dtype)
|
||||
|
||||
# x.shape = [batch_size, n_ctx, transformer.width]
|
||||
# take features from the eot embedding (eot_token is the highest number in each sequence)
|
||||
x = x[torch.arange(x.shape[0]), tokenized_prompts.argmax(dim=-1)] @ self.text_projection
|
||||
|
||||
return x
|
||||
|
||||
|
||||
class FixedEmbeddings():
|
||||
def __init__(self, cfg, classnames, clip_model):
|
||||
clip_imsize = clip_model.visual.input_resolution
|
||||
cfg_imsize = cfg.INPUT.SIZE[0]
|
||||
assert cfg_imsize == clip_imsize, f"cfg_imsize ({cfg_imsize}) must equal to clip_imsize ({clip_imsize})"
|
||||
|
||||
prompt_prefix = "a photo of a"
|
||||
print('Vision Prompting Design')
|
||||
print(f'Initial context: "{prompt_prefix}"')
|
||||
print(f"Number of context words (tokens) for Vision prompting: {cfg.TRAINER.VPT.N_CTX_VISION}")
|
||||
print(f"Using fixed hand crated prompts")
|
||||
|
||||
classnames = [name.replace("_", " ") for name in classnames]
|
||||
prompts = [prompt_prefix + " " + name + "." for name in classnames]
|
||||
|
||||
tokenized_prompts = torch.cat([clip.tokenize(p) for p in prompts])
|
||||
with torch.no_grad():
|
||||
text_features = clip_model.encode_text(tokenized_prompts)
|
||||
|
||||
self.fixed_embeddings = text_features
|
||||
|
||||
def return_fixed_embeddings(self):
|
||||
return self.fixed_embeddings
|
||||
|
||||
|
||||
class CustomCLIP(nn.Module):
|
||||
def __init__(self, cfg, classnames, clip_model):
|
||||
super().__init__()
|
||||
self.embeddings = FixedEmbeddings(cfg, classnames, clip_model)
|
||||
self.image_encoder = clip_model.visual
|
||||
self.text_encoder = TextEncoder(clip_model)
|
||||
self.logit_scale = clip_model.logit_scale
|
||||
self.dtype = clip_model.dtype
|
||||
|
||||
def forward(self, image, label=None, training=False):
|
||||
logit_scale = self.logit_scale.exp()
|
||||
|
||||
text_features = self.embeddings.return_fixed_embeddings().cuda()
|
||||
image_features = self.image_encoder(image.type(self.dtype))
|
||||
|
||||
image_features = image_features / image_features.norm(dim=-1, keepdim=True)
|
||||
text_features = text_features / text_features.norm(dim=-1, keepdim=True)
|
||||
logits = logit_scale * image_features @ text_features.t()
|
||||
|
||||
if training:
|
||||
return F.cross_entropy(logits, label)
|
||||
|
||||
return logits
|
||||
|
||||
|
||||
@TRAINER_REGISTRY.register()
|
||||
class VPT(TrainerX):
|
||||
def check_cfg(self, cfg):
|
||||
assert cfg.TRAINER.VPT.PREC in ["fp16", "fp32", "amp"]
|
||||
|
||||
def build_model(self):
|
||||
cfg = self.cfg
|
||||
classnames = self.dm.dataset.classnames
|
||||
|
||||
print(f"Loading CLIP (backbone: {cfg.MODEL.BACKBONE.NAME})")
|
||||
clip_model = load_clip_to_cpu(cfg)
|
||||
|
||||
if cfg.TRAINER.VPT.PREC == "fp32" or cfg.TRAINER.VPT.PREC == "amp":
|
||||
# CLIP's default precision is fp16
|
||||
clip_model.float()
|
||||
|
||||
print("Building custom CLIP")
|
||||
self.model = CustomCLIP(cfg, classnames, clip_model)
|
||||
|
||||
print("Turning off gradients in both the image and the text encoder")
|
||||
name_to_update = "prompt_learner"
|
||||
|
||||
for name, param in self.model.named_parameters():
|
||||
if name_to_update not in name:
|
||||
# Make sure that VPT prompts are updated
|
||||
if "VPT" in name:
|
||||
param.requires_grad_(True)
|
||||
else:
|
||||
param.requires_grad_(False)
|
||||
|
||||
# Double check
|
||||
enabled = set()
|
||||
for name, param in self.model.named_parameters():
|
||||
if param.requires_grad:
|
||||
enabled.add(name)
|
||||
print(f"Parameters to be updated: {enabled}")
|
||||
|
||||
if cfg.MODEL.INIT_WEIGHTS:
|
||||
load_pretrained_weights(self.model, cfg.MODEL.INIT_WEIGHTS)
|
||||
|
||||
self.model.to(self.device)
|
||||
# NOTE: only give prompt_learner to the optimizer
|
||||
self.optim = build_optimizer(self.model, cfg.OPTIM)
|
||||
self.sched = build_lr_scheduler(self.optim, cfg.OPTIM)
|
||||
self.register_model("prompt_learner", self.model, self.optim, self.sched)
|
||||
|
||||
self.scaler = GradScaler() if cfg.TRAINER.VPT.PREC == "amp" else None
|
||||
|
||||
# Note that multi-gpu training could be slow because CLIP's size is
|
||||
# big, which slows down the copy operation in DataParallel
|
||||
device_count = torch.cuda.device_count()
|
||||
if device_count > 1:
|
||||
print(f"Multiple GPUs detected (n_gpus={device_count}), use all of them!")
|
||||
self.model = nn.DataParallel(self.model)
|
||||
|
||||
def forward_backward(self, batch):
|
||||
image, label = self.parse_batch_train(batch)
|
||||
|
||||
model = self.model
|
||||
optim = self.optim
|
||||
scaler = self.scaler
|
||||
|
||||
prec = self.cfg.TRAINER.VPT.PREC
|
||||
if prec == "amp":
|
||||
with autocast():
|
||||
loss = model(image, label)
|
||||
optim.zero_grad()
|
||||
scaler.scale(loss).backward()
|
||||
scaler.step(optim)
|
||||
scaler.update()
|
||||
else:
|
||||
loss = model(image, label, training=True)
|
||||
optim.zero_grad()
|
||||
loss.backward()
|
||||
optim.step()
|
||||
|
||||
loss_summary = {"loss": loss.item()}
|
||||
|
||||
if (self.batch_idx + 1) == self.num_batches:
|
||||
self.update_lr()
|
||||
|
||||
return loss_summary
|
||||
|
||||
def parse_batch_train(self, batch):
|
||||
input = batch["img"]
|
||||
label = batch["label"]
|
||||
input = input.to(self.device)
|
||||
label = label.to(self.device)
|
||||
return input, label
|
||||
|
||||
def load_model(self, directory, epoch=None):
|
||||
if not directory:
|
||||
print("Note that load_model() is skipped as no pretrained model is given")
|
||||
return
|
||||
|
||||
names = self.get_model_names()
|
||||
|
||||
# By default, the best model is loaded
|
||||
model_file = "model-best.pth.tar"
|
||||
|
||||
if epoch is not None:
|
||||
model_file = "model.pth.tar-" + str(epoch)
|
||||
|
||||
for name in names:
|
||||
model_path = osp.join(directory, name, model_file)
|
||||
|
||||
if not osp.exists(model_path):
|
||||
raise FileNotFoundError('Model not found at "{}"'.format(model_path))
|
||||
|
||||
checkpoint = load_checkpoint(model_path)
|
||||
state_dict = checkpoint["state_dict"]
|
||||
epoch = checkpoint["epoch"]
|
||||
|
||||
# Ignore fixed token vectors
|
||||
if "prompt_learner.token_prefix" in state_dict:
|
||||
del state_dict["prompt_learner.token_prefix"]
|
||||
|
||||
if "prompt_learner.token_suffix" in state_dict:
|
||||
del state_dict["prompt_learner.token_suffix"]
|
||||
|
||||
print("Loading weights to {} " 'from "{}" (epoch = {})'.format(name, model_path, epoch))
|
||||
# set strict=False
|
||||
self._models[name].load_state_dict(state_dict, strict=False)
|
||||
Reference in New Issue
Block a user