Spaces:
Runtime error
Runtime error
File size: 10,649 Bytes
a5f8a35 |
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 |
import argparse
import multiprocessing as mp
import os
from typing import Any, List
from loguru import logger
import numpy as np
from sklearn.svm import LinearSVC
from sklearn.metrics import average_precision_score
from sklearn.model_selection import cross_val_score
import torch
from torch.utils.data import DataLoader
from torch.utils.tensorboard import SummaryWriter
from tqdm import tqdm
from virtex.config import Config
from virtex.factories import PretrainingModelFactory, DownstreamDatasetFactory
from virtex.utils.checkpointing import CheckpointManager
from virtex.utils.common import common_parser, common_setup
parser = common_parser(
description="Train SVMs for VOC2007 classification on a pretrained model."
)
group = parser.add_argument_group("Downstream config arguments.")
group.add_argument(
"--down-config", metavar="FILE", help="Path to a downstream config file."
)
group.add_argument(
"--down-config-override",
nargs="*",
default=[],
help="A list of key-value pairs to modify downstream config params.",
)
# fmt: off
parser.add_argument_group("Checkpointing")
parser.add_argument(
"--weight-init", choices=["random", "imagenet", "torchvision", "virtex"],
default="virtex", help="""How to initialize weights:
1. 'random' initializes all weights randomly
2. 'imagenet' initializes backbone weights from torchvision model zoo
3. {'torchvision', 'virtex'} load state dict from --checkpoint-path
- with 'torchvision', state dict would be from PyTorch's training
script.
- with 'virtex' it should be for our full pretrained model."""
)
parser.add_argument(
"--checkpoint-path",
help="Path to load checkpoint and run downstream task evaluation."
)
# fmt: on
def train_test_single_svm(args):
feats_train, tgts_train, feats_test, tgts_test, cls_name = args
SVM_COSTS = [0.01, 0.1, 1.0, 10.0]
cls_labels = np.copy(tgts_train)
# Meaning of labels in VOC/COCO original loaded target files:
# label 0 = not present, set it to -1 as svm train target
# label 1 = present. Make the svm train target labels as -1, 1.
cls_labels[np.where(cls_labels == 0)] = -1
# See which cost maximizes the AP for this class.
best_crossval_ap: float = 0.0
best_crossval_clf = None
best_cost: float = 0.0
# fmt: off
for cost in SVM_COSTS:
clf = LinearSVC(
C=cost, class_weight={1: 2, -1: 1}, penalty="l2",
loss="squared_hinge", max_iter=2000,
)
ap_scores = cross_val_score(
clf, feats_train, cls_labels, cv=3, scoring="average_precision",
)
clf.fit(feats_train, cls_labels)
# Keep track of best SVM (based on cost) for each class.
if ap_scores.mean() > best_crossval_ap:
best_crossval_ap = ap_scores.mean()
best_crossval_clf = clf
best_cost = cost
logger.info(f"Best SVM {cls_name}: cost {best_cost}, mAP {best_crossval_ap * 100}")
# fmt: on
# -------------------------------------------------------------------------
# TEST THE TRAINED SVM (PER CLASS)
# -------------------------------------------------------------------------
predictions = best_crossval_clf.decision_function(feats_test)
evaluate_data_inds = tgts_test != -1
eval_preds = predictions[evaluate_data_inds]
cls_labels = np.copy(tgts_test)
eval_cls_labels = cls_labels[evaluate_data_inds]
eval_cls_labels[np.where(eval_cls_labels == 0)] = -1
# Binarize class labels to make AP targets.
targets = eval_cls_labels > 0
return average_precision_score(targets, eval_preds)
def main(_A: argparse.Namespace):
if _A.num_gpus_per_machine == 0:
# Set device as CPU if num_gpus_per_machine = 0.
device = torch.device("cpu")
else:
# Get the current device (this will be zero here by default).
device = torch.cuda.current_device()
# Create a downstream config object (this will be immutable) and perform
# common setup such as logging and setting up serialization directory.
_DOWNC = Config(_A.down_config, _A.down_config_override)
common_setup(_DOWNC, _A, job_type="downstream")
# Create a (pretraining) config object and backup in serialization directory.
_C = Config(_A.config, _A.config_override)
_C.dump(os.path.join(_A.serialization_dir, "pretrain_config.yaml"))
# -------------------------------------------------------------------------
# INSTANTIATE DATALOADER, MODEL, AND FEATURE EXTRACTOR
# -------------------------------------------------------------------------
train_dataset = DownstreamDatasetFactory.from_config(_DOWNC, split="trainval")
train_dataloader = DataLoader(
train_dataset,
batch_size=_DOWNC.OPTIM.BATCH_SIZE,
num_workers=_A.cpu_workers,
pin_memory=True,
)
test_dataset = DownstreamDatasetFactory.from_config(_DOWNC, split="test")
test_dataloader = DataLoader(
test_dataset,
batch_size=_DOWNC.OPTIM.BATCH_SIZE,
num_workers=_A.cpu_workers,
pin_memory=True,
)
NUM_CLASSES = len(train_dataset.class_names)
# Initialize from a checkpoint, but only keep the visual module.
model = PretrainingModelFactory.from_config(_C)
# Load weights according to the init method, do nothing for `random`, and
# `imagenet` is already taken care of.
if _A.weight_init == "virtex":
ITERATION = CheckpointManager(model=model).load(_A.checkpoint_path)
elif _A.weight_init == "torchvision":
# Keep strict=False because this state dict may have weights for
# last fc layer.
model.visual.cnn.load_state_dict(
torch.load(_A.checkpoint_path, map_location="cpu")["state_dict"],
strict=False,
)
# Set ``ITERATION`` to a dummy value.
ITERATION = 0
# Transfer model to GPU and set to eval mode. This is a torchvision model
# and it returns features as ``(batch_size, 2048, 7, 7)``.
model = model.visual.cnn.to(device).eval()
# -------------------------------------------------------------------------
# EXTRACT FEATURES FOR TRAINING SVMs
# -------------------------------------------------------------------------
features_train: List[torch.Tensor] = []
targets_train: List[torch.Tensor] = []
features_test: List[torch.Tensor] = []
targets_test: List[torch.Tensor] = []
# VOC07 is small, extract all features and keep them in memory.
with torch.no_grad():
for batch in tqdm(train_dataloader, desc="Extracting train features:"):
features = model(batch["image"].to(device))
# Global average pool features. Assume the tensor is in NCHW format.
if len(features.size()) > 2:
features = features.view(features.size(0), features.size(1), -1)
# shape: (batch_size, visual_feature_size)
features = features.mean(dim=-1)
# shape: (batch_size, visual_feature_size)
features = features.view(features.size(0), -1)
# L2-normalize the global average pooled features.
features = features / torch.norm(features, dim=-1).unsqueeze(-1)
features_train.append(features.cpu())
targets_train.append(batch["label"])
# Similarly extract test features.
for batch in tqdm(test_dataloader, desc="Extracting test features:"):
features = model(batch["image"].to(device))
if len(features.size()) > 2:
features = features.view(features.size(0), features.size(1), -1)
features = features.mean(dim=-1)
features = features.view(features.size(0), -1)
features = features / torch.norm(features, dim=-1).unsqueeze(-1)
features_test.append(features.cpu())
targets_test.append(batch["label"])
# Convert batches of features/targets to one large numpy array
features_train = torch.cat(features_train, dim=0).numpy()
targets_train = torch.cat(targets_train, dim=0).numpy().astype(np.int32)
features_test = torch.cat(features_test, dim=0).numpy()
targets_test = torch.cat(targets_test, dim=0).numpy().astype(np.int32)
# -------------------------------------------------------------------------
# TRAIN AND TEST SVMs WITH EXTRACTED FEATURES
# -------------------------------------------------------------------------
input_args: List[Any] = []
# Iterate over all VOC07 classes and train one-vs-all linear SVMs.
for cls_idx in range(NUM_CLASSES):
# fmt: off
input_args.append((
features_train, targets_train[:, cls_idx],
features_test, targets_test[:, cls_idx],
train_dataset.class_names[cls_idx],
))
# fmt: on
pool = mp.Pool(processes=_A.cpu_workers)
pool_output = pool.map(train_test_single_svm, input_args)
# -------------------------------------------------------------------------
# TENSORBOARD LOGGING (RELEVANT MAINLY FOR weight_init=checkpoint)
# -------------------------------------------------------------------------
# Tensorboard writer for logging mAP scores. This is useful especially
# when weight_init=checkpoint (which maybe be coming from a training job).
tensorboard_writer = SummaryWriter(log_dir=_A.serialization_dir)
# Test set mAP for each class, for features from every layer.
test_map = torch.tensor(pool_output).mean()
logger.info(f"Iteration: {ITERATION}, mAP: {test_map * 100}")
tensorboard_writer.add_scalars(
"metrics/voc07_clf", {f"voc07_mAP": test_map * 100}, ITERATION
)
# NOTE: for copy-pasting to spreadsheet.
logger.info(
f"{_C.DATA.ROOT.split('/')[1]},{_C.DATA.TOKENIZER_MODEL.split('/')[-1][:-6]},"
f"{_C.DATA.VOCAB_SIZE},{_C.MODEL.NAME},{_C.MODEL.VISUAL.NAME},{_C.MODEL.TEXTUAL.NAME},"
f"{_C.MODEL.LABEL_SMOOTHING},{_C.OPTIM.OPTIMIZER_NAME},{_C.OPTIM.BATCH_SIZE},"
f"{_C.OPTIM.NUM_ITERATIONS},{_C.OPTIM.LR},{_C.OPTIM.WEIGHT_DECAY},"
f"{ITERATION},{test_map * 100:.3f}"
)
if __name__ == "__main__":
_A = parser.parse_args()
if _A.num_gpus_per_machine > 1:
raise ValueError("Using multiple GPUs is not supported for this script.")
# Add an arg in config override if `--weight-init` is imagenet.
if _A.weight_init == "imagenet":
_A.config_override.extend(["MODEL.VISUAL.PRETRAINED", True])
# No distributed training here, just a single process.
main(_A)
|