File size: 24,131 Bytes
3ea5987 | 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 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 | import collections
import csv
import json
import logging
import os
import pathlib
import random
from collections import defaultdict
from pathlib import Path
from pprint import pformat
import numpy as np
import torch
import torchvision.datasets as datasets
from .common import ImageFolderWithPaths, SubsetSampler
from .imagenet import ImageNet
def load_labels(input_paths):
if isinstance(input_paths, (Path, str)):
input_paths = [input_paths]
# Map data to list of (input_path, label) tuples.
labels = collections.defaultdict(list)
labels_list = None
for path in input_paths:
with open(path, 'r') as f:
annotations = json.load(f)
for i, row in enumerate(annotations['annotations']):
labels[row['key']].append((path, row))
if labels_list is None:
labels_list = annotations['labels']
else:
assert labels_list == annotations['labels']
for key, key_labels in labels.items():
if len(key_labels) > 1:
paths = [x[0] for x in key_labels]
logging.debug(
f'{key} labeled multiple times in {paths}; using latest '
f'label from {paths[-1]}.')
labels[key] = key_labels[-1][1]
return labels, labels_list
def filter_labels(labels,
labels_list,
file_logger=None,
must_have=[],
must_not_have=[],
can_have=[],
must_have_one_of=False,
unspecified_labels_policy='error',
return_nonmatching=False):
if file_logger is None:
file_logger = logging.getLogger()
label_map = {}
label_names = {}
for i, label in enumerate(labels_list):
label_map[label] = i
label_names[i] = label
def validate_label(label):
if label not in label_map:
raise ValueError('Unknown label %s, valid labels: %s' %
(label, label_map.keys()))
return True
must_have_labels = set(
[label_map[x] for x in must_have if validate_label(x)])
must_not_have_labels = set(
[label_map[x] for x in must_not_have if validate_label(x)])
can_have_labels = set(
[label_map[x] for x in can_have if validate_label(x)])
unspecified_labels = (
set(label_map.values()) -
(must_have_labels | must_not_have_labels | can_have_labels))
if unspecified_labels:
if unspecified_labels_policy == 'error':
raise ValueError('Label(s): %s were not specified in any of '
'--{must,must-not,can}-have.' %
[label_names[x] for x in unspecified_labels])
elif unspecified_labels_policy == 'can-have':
can_have_labels |= unspecified_labels
elif unspecified_labels_policy == 'must-have':
must_have_labels |= unspecified_labels
elif unspecified_labels_policy == 'must-not-have':
must_not_have_labels |= unspecified_labels
else:
raise ValueError('Unknown unspecified_labels_policy %s' %
unspecified_labels_policy)
logging.info('Looking for rows that')
if must_have_one_of:
logging.info('MUST HAVE (one of): %s',
[label_names[x] for x in must_have_labels])
else:
logging.info('MUST HAVE: %s',
[label_names[x] for x in must_have_labels])
logging.info('MUST NOT HAVE: %s',
[label_names[x] for x in must_not_have_labels])
logging.info('CAN HAVE: %s', [label_names[x] for x in can_have_labels])
valid_rows = []
invalid_rows = []
for key, row in labels.items():
row_labels = set(row['labels'])
missing_labels = must_have_labels - row_labels
unwanted_labels = row_labels & must_not_have_labels
if must_have_one_of:
if missing_labels == must_have_labels:
file_logger.info('Label %s missing labels %s' % (pformat(
dict(row)), [label_names[x] for x in missing_labels]))
invalid_rows.append(row)
continue
elif missing_labels:
file_logger.info(
'Label %s missing labels %s' %
(pformat(dict(row)), [label_names[x] for x in missing_labels]))
invalid_rows.append(row)
continue
if unwanted_labels:
file_logger.info(
'Label %s has unwanted labels %s' %
(pformat(dict(row)), [label_names[x]
for x in unwanted_labels]))
invalid_rows.append(row)
continue
valid_rows.append(row)
if return_nonmatching:
return valid_rows, invalid_rows
else:
return valid_rows
def evaluate_pmk(predictions, labels, valid_pmk):
"""
Args:
predictions (Dict[str, np.array])
labels (Dict[str, List[int]]): Labels for anchor frames.
valid_pmk (Dict[str, Dict[int, str]])
"""
anchor_is_correct = {}
pmk_is_correct = {}
for anchor, pmk_dict in valid_pmk.items():
anchor_labels = labels[anchor]
anchor_prediction = predictions[anchor].argmax()
anchor_is_correct[anchor] = anchor_prediction in anchor_labels
pmk_is_correct[anchor] = {}
for offset, pmk_key in pmk_dict.items():
pmk_prediction = predictions[pmk_key].argmax()
pmk_is_correct[anchor][pmk_key] = pmk_prediction in anchor_labels
return anchor_is_correct, pmk_is_correct
def create_pmk_score(predictions_by_key, anchor_labels, pmk_frames):
"""
Args:
predictions_by_key (Dict[str, np.array])
anchor_labels (Dict[str, List[int]]): Labels for anchor frames.
pmk_frames (Dict[str, Dict[int, str]]): Map anchor frame to dict
mapping valid pmk offset to pmk frame key.
"""
pmk_frames = pmk_frames.copy()
for anchor in anchor_labels:
if anchor not in pmk_frames:
pmk_frames[anchor] = {}
anchor_is_correct, pmk_is_correct = evaluate_pmk(predictions_by_key,
anchor_labels, pmk_frames)
correct_anchors = {
k for k, correct in anchor_is_correct.items() if correct
}
all_anchors = [k for k, correct in anchor_is_correct.items()]
num_anchor_correct = len(correct_anchors)
anchor_accuracy = num_anchor_correct / max(len(anchor_is_correct), 1e-9)
pmk_correct = [
anchor for anchor in correct_anchors
if all(pmk_is_correct[anchor].values())
]
rand_correct = [
anchor for anchor in all_anchors
if (len(pmk_is_correct[anchor].values()) == 0) or random.choice(list(pmk_is_correct[anchor].values()))
]
pmk_accuracy = len(pmk_correct) / max(len(anchor_is_correct), 1e-9)
rand_accuracy = len(rand_correct) / max(len(anchor_is_correct), 1e-9)
# Collect auxiliary data.
benign_frames = sorted(anchor_labels.keys())
adversarial_pmk = {} # Map anchor to list of adversarial pmk offsets
nonadversarial_pmk = {} # Map anchor to list of non-adv pmk offsets
for anchor in benign_frames:
if not anchor_is_correct[anchor]:
adversarial_pmk[anchor] = None
nonadversarial_pmk[anchor] = None
else:
incorrect_frames = []
correct_frames = []
for i, (offset, pmk_key) in enumerate(pmk_frames[anchor].items()):
if pmk_is_correct[anchor][pmk_key]:
correct_frames.append(offset)
else:
incorrect_frames.append(offset)
adversarial_pmk[anchor] = incorrect_frames
nonadversarial_pmk[anchor] = correct_frames
score_info = {}
score_info["benign_accuracy"] = anchor_accuracy
score_info["benign_frames"] = benign_frames
score_info["adversarial_pmk"] = adversarial_pmk
score_info["nonadversarial_pmk"] = nonadversarial_pmk
score_info["pmk_keys"] = pmk_frames
score_info["correct_anchors"] = sorted(correct_anchors)
score_info["incorrect_anchors"] = sorted(
set(anchor_is_correct.keys()) - correct_anchors)
score_info["l_infs"] = [] # TODO
return pmk_accuracy, score_info
def ms_to_frame_15fps(ms):
return round(ms / 1000 * 15)
def path_to_key(path):
path = pathlib.Path(path)
return f"{path.parent.name}/{path.name}"
def get_pmk_key(anchor_key, pmk_index):
"""Returns pmk portion of pmk key.
The full pm-k key, as used in annotations, is '{anchor_key},{pmk_key}'."""
video, anchor_index, anchor_ms = parse_frame_key(anchor_key)
prefix = f'{video}_{anchor_ms}'
return f'{prefix}/frame-{pmk_index}.jpg'
def split_pmk_key(key):
anchor_path, pmk_path = key.split(",")
return path_to_key(anchor_path), path_to_key(pmk_path)
def parse_frame_key(key, return_ms=True):
"""Parse key into video, frame index, and anchor ms."""
key = path_to_key(key)
# Key format: <video>_<anchor_timestamp>/frame-<idx>.jpg
parent, name = key.split('/')
video, anchor_ms = parent.rsplit('_', 1)
frame_idx = name.split('-')[1].split('.')[0]
if return_ms:
return video, int(frame_idx), int(anchor_ms)
else:
return video, int(frame_idx)
class YtbbPmkDataset:
def __init__(self, anchor_annotations, pmk_annotations):
# Split anchors into good and bad labels.
anchors_good, anchors_bad, anchor_label_list = load_anchor_annotations(
anchor_annotations)
# Collect final anchor labels.
self.anchor_valid_annotations = anchors_good
self.anchor_invalid_annotations = anchors_bad
self.anchor_label_list = anchor_label_list
valid_pmk, invalid_pmk, bad_anchors, pmk_label_list = (
load_pmk_annotations(pmk_annotations))
self.anchor_invalid_annotations += [
x for x in self.anchor_valid_annotations if x['key'] in bad_anchors
]
self.anchor_valid_annotations = [
x for x in self.anchor_valid_annotations
if x['key'] not in bad_anchors
]
self.pmk_valid_keys = defaultdict(set)
for annotation in valid_pmk:
anchor_key, pmk_key = split_pmk_key(annotation['key'])
self.pmk_valid_keys[anchor_key].add(annotation['key'])
self.pmk_invalid_keys = defaultdict(set)
for annotation in invalid_pmk:
anchor_key, pmk_key = split_pmk_key(annotation['key'])
self.pmk_invalid_keys[anchor_key].add(annotation['key'])
self.pmk_label_list = pmk_label_list
def get_anchor_labels(self,
reverse_ytbb_class_index,
reviewed=True):
"""
Args:
initial_labels (Dict[str, Set[int]]): Initial YTBB labels. We
require these because the loaded annotations are only
guaranteed to contain labels that were _added_ to each
anchor.
Returns:
anchor_labels: Map anchor_key to list of YTBB labels.
"""
initial_labels_csv = (pathlib.Path(
__file__).parent / 'ytbb-robust_metadata/ytbb_robustness_test_anchors_full.csv').resolve()
with open(initial_labels_csv, 'r') as f:
reader = csv.DictReader(f)
initial_labels = {}
for row in reader:
label = int(row["label"])
if label == 23:
label = 22
elif label == 22:
label = 23
initial_labels[f'{row["ytid"]}_{row["time_ms"]}'] = {label}
annotations = self.anchor_valid_annotations
if not reviewed:
annotations = annotations + self.anchor_invalid_annotations
anchor_labels = annotations_to_ytbb_labels(annotations,
self.anchor_label_list,
reverse_ytbb_class_index)
for key, labels in anchor_labels.items():
anchor_label_key = key.split('/')[0]
assert isinstance(initial_labels[anchor_label_key], set)
labels.update(initial_labels[anchor_label_key])
return anchor_labels
def get_pmk(self, k=10, reviewed=True):
"""
Returns:
pmk_sets (Dict[str, Dict[int, str]]): Map anchor keys to dict
mapping offset to pmk frame key. If reviewed is True, then
the mapping will only contain valid (i.e., similar) pmk frames.
"""
pmk_sets = {}
for anchor in self.anchor_valid_annotations:
anchor_key = anchor['key']
video, anchor_index, anchor_ms = parse_frame_key(
anchor_key)
pmk_sets[anchor_key] = {}
for i in range(-k, k + 1):
if i == 0:
continue
pmk_index = anchor_index + i
pmk_key = get_pmk_key(anchor_key, pmk_index)
full_pmk_key = f'{anchor_key},{pmk_key}'
if (reviewed and
full_pmk_key not in self.pmk_valid_keys[anchor_key]):
continue
pmk_sets[anchor_key][i] = pmk_key
return pmk_sets
def load_anchor_annotations(anchor_paths):
labels, labels_list = load_labels(anchor_paths)
for annotation in labels.values():
annotation['key'] = path_to_key(annotation['key'])
good_anchors, other_anchors = filter_labels(
labels,
labels_list,
must_have=['good'],
must_not_have=['bad', 'unsure'],
unspecified_labels_policy='can-have',
return_nonmatching=True)
return good_anchors, other_anchors, labels_list
def annotations_to_ytbb_labels(annotations, label_list, reverse_ytbb_map):
"""Convert annotations from labeling UI to match YTBB index labels.
Args:
annotations (List[Dict]): Contains list of annotation objects with keys
'key', 'notes', 'labels'.
label_list (List[str]): List of label names.
reverse_ytbb_map (Dict): Map YTBB label names to indices.
Returns:
labels (Dict[str, Set[int]]): Map keys to list of YTBB label indices.
"""
labels = {}
for ann in annotations:
labels_str = [label_list[l] for l in ann['labels']]
labels[ann['key']] = {
reverse_ytbb_map[l]
for l in labels_str if l in reverse_ytbb_map
}
return labels
def load_pmk_annotations(pmk_paths):
problematic_labels = [
'dissimilar', 'problematic', 'incorrect', 'dont know', 'deformation',
'background-change', 'occlusion-increased', 'blur-increase',
'bad-anchor'
]
labels, labels_list = load_labels(pmk_paths)
# Pairs that do not have a problematic label and are marked similar.
valid_pmk, bad_pmk = filter_labels(labels,
labels_list,
must_not_have=problematic_labels,
can_have=['correct'],
must_have=['similar'],
unspecified_labels_policy='can-have',
return_nonmatching=True)
# Choose bad anchors
bad_anchors = filter_labels(labels,
labels_list,
must_have=['bad-anchor'],
unspecified_labels_policy='can-have')
bad_anchors = {split_pmk_key(x['key'])[0] for x in bad_anchors}
valid_pmk = [
x for x in valid_pmk
if split_pmk_key(x['key'])[0] not in bad_anchors
]
return valid_pmk, bad_pmk, bad_anchors, labels_list
class YtbbRobustDataset(datasets.ImageFolder):
def __init__(self, pmk_dataset, rev_ytbb_class_index, path, transform):
super().__init__(path, transform=transform)
anchor_labels = pmk_dataset.get_anchor_labels(rev_ytbb_class_index, reviewed=True)
pm10_frames = pmk_dataset.get_pmk(k=10, reviewed=True)
pm0_frames = pmk_dataset.get_pmk(k=0, reviewed=True)
# Collect predictions by key
valid_pm10_keys = {key for x in pm10_frames.values() for key in x.values()}
valid_pm0_keys = {key for x in pm0_frames.values() for key in x.values()}
valid_anchor_keys = set(anchor_labels.keys())
valid_keys = valid_pm0_keys | valid_pm10_keys | valid_anchor_keys
self.labels = {}
for anchor in valid_anchor_keys:
# NOTE: This dataset uses muiltiple lables.
# Here, we are using only the first one for compatibility
# with other datasets.
# This should *not* be used for computing metrics such
# as accuracy, only for visualization / debugging purposes.
label = list(anchor_labels[anchor])[0]
keys = (set(pm0_frames[anchor].values()) | set(pm10_frames[anchor].values()) | set([anchor]))
for key in keys:
self.labels[key] = label
all_keys = [d[0].split('ytbb_videos/')[1] for d in self.samples]
filtered_indexes = set()
for idx in range(len(self.samples)):
if all_keys[idx] not in valid_keys:
filtered_indexes.add(idx)
self.samples = [
d for idx, d in enumerate(self.samples) if idx not in filtered_indexes]
self.imgs = self.samples
def __len__(self):
return len(self.samples)
def __getitem__(self, index):
path, target = self.samples[index]
sample = self.loader(path)
if self.transform is not None:
sample = self.transform(sample)
label = self.labels[path.split('ytbb_videos/')[1]]
return {
'images': sample,
'labels': label,
'image_paths': path
}
class YTBBRobustBase(ImageNet):
def __init__(self, *args, **kwargs):
loc = pathlib.Path(__file__).parent / 'ytbb-robust_metadata'
with open((loc / 'class_idx_map.json').resolve()) as f:
self.CLASS_IDX_LIST = sorted(list(map(int, json.loads(f.read()).keys())))
with open((loc / 'class_idx_map.json').resolve()) as f:
self.CLASS_IDX_MAP = {int(k): v for k, v in json.loads(f.read()).items()}
with open((loc / 'rev_class_idx_map.json').resolve()) as f:
self.rev_class_idx_map = {int(k): v for k, v in json.loads(f.read()).items()}
self.anchor_annots = (loc / 'anchor_labels.json').resolve()
self.pmk_annots = (loc / 'pmk_labels.json').resolve()
self.pmk_dataset = YtbbPmkDataset([self.anchor_annots], self.pmk_annots)
with open((loc / 'ytbb_class_index.json').resolve()) as f:
self.ytbb_class_index = {int(k): v for k, v in json.loads(f.read()).items()}
self.rev_ytbb_class_index = dict([(y, int(x)) for (x, y) in self.ytbb_class_index.items()])
self.merge_op = 'max'
super().__init__(*args, **kwargs)
self.classnames = [self.ytbb_class_index[i] for i in range(24)]
self.scattered = False
def populate_train(self):
pass
def project_logits(self, logits, device):
if isinstance(logits, list) or isinstance(logits, tuple):
return [self.project_logits(l, device) for l in logits]
if logits.shape[1] == 24:
logits_projected = logits
else:
if torch.is_tensor(logits):
logits = logits.cpu().numpy()
logits_projected = np.zeros((logits.shape[0], 24))
for k, v in self.rev_class_idx_map.items():
if self.merge_op == 'mean':
logits_projected[:, k] = np.mean(logits[:, v], axis=1).squeeze()
elif self.merge_op == 'median':
logits_projected[:, k] = np.median(logits[:, v], axis=1).squeeze()
elif self.merge_op == 'max':
logits_projected[:, k] = np.max(logits[:, v], axis=1).squeeze()
elif self.merge_op == 'sum':
logits_projected[:, k] = np.sum(logits[:, v], axis=1)
else:
raise Exception(f'unsupported merge operation {merge_op} not allowed')
if self.scattered:
for i, j in enumerate([6, 8, 14, 18]):
logits_projected[:, j] = logits[:, i]
logits_projected = torch.tensor(logits_projected)
logits_projected[:, 22] -= 1.0e10
return logits_projected.to(device)
def scatter_weights(self, weights):
if weights.size(1) == 1000:
return weights
new_weights = torch.ones((weights.size(0), 1000)).to(weights.device) * -10e10
for k, v in self.rev_class_idx_map.items():
for vv in v:
new_weights[:, vv] = weights[:, k]
for i, j in enumerate([6, 8, 14, 18]):
new_weights[:, i] = weights[:, j]
self.scattered = True
return new_weights
class YTBBRobustValClasses(YTBBRobustBase):
def post_loop_metrics(self, targets, logits, image_paths, args):
logits = logits.numpy()
targets = targets.numpy()
return {'acc': self.score_predictions(logits, targets)}
def score_predictions(self, logits_projected, targets):
preds = logits_projected.argmax(axis=1)
acc = np.sum(np.equal(preds, targets))
n = len(preds)
return acc / n
def get_test_dataset(self):
return ImageFolderWithPaths(self.get_test_path(), transform=self.preprocess)
def get_test_sampler(self):
idx_subsample_list = [range(x * 50, (x + 1) * 50) for x in self.CLASS_IDX_LIST]
idx_subsample_list = sorted([item for sublist in idx_subsample_list for item in sublist])
sampler = SubsetSampler(idx_subsample_list)
return sampler
def project_labels(self, labels, device):
labels = labels.cpu().numpy()
labels_projected = torch.tensor([self.CLASS_IDX_MAP[label] for label in labels]).to(device)
return labels_projected
class YTBBRobust(YTBBRobustBase):
def post_loop_metrics(self, targets, logits, image_paths, args):
logits = logits.numpy()
targets = targets.numpy()
anchor_labels = self.pmk_dataset.get_anchor_labels(self.rev_ytbb_class_index, reviewed=True)
pmk_frames = self.pmk_dataset.get_pmk(k=10, reviewed=True)
# Collect predictions by key
valid_pmk_keys = {key for x in pmk_frames.values() for key in x.values()}
valid_anchor_keys = set(anchor_labels.keys())
valid_keys = valid_pmk_keys | valid_anchor_keys
image_paths = [d.split('ytbb_videos/')[1] for d in image_paths]
predictions_by_key = {
k: p
for k, p in zip(image_paths, logits) if k in valid_keys
}
pmk_accuracy, score_info = create_pmk_score(
predictions_by_key, anchor_labels, pmk_frames)
pm0_frames = self.pmk_dataset.get_pmk(k=0, reviewed=True)
valid_pm0_keys = {key for x in pm0_frames.values() for key in x.values()}
valid_pm0_keys = valid_pm0_keys | valid_anchor_keys
predictions_by_key_pm0 = {
k: p
for k, p in zip(image_paths, logits) if k in valid_pm0_keys
}
pm0_accuracy, score_info_pm0 = create_pmk_score(
predictions_by_key_pm0, anchor_labels, pm0_frames)
metrics_dict = {}
metrics_dict['pm0'] = pm0_accuracy
metrics_dict['pm10'] = pmk_accuracy
metrics_dict['merge_op'] = self.merge_op
return metrics_dict
def get_test_dataset(self):
valdir = os.path.join(self.location, 'imagenet_vid_ytbb_robust/ytbb-robust/ytbb_videos/')
dataset = YtbbRobustDataset(
self.pmk_dataset, self.rev_ytbb_class_index, valdir, transform=self.preprocess)
return dataset
|