File size: 12,629 Bytes
8aa674c |
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 |
import json
import numpy as np
import pandas as pd
import multiprocessing as mp
from .builder import EVALUATORS, remove_duplicate_annotations
@EVALUATORS.register_module()
class mAP:
def __init__(
self,
ground_truth_filename,
prediction_filename,
subset,
tiou_thresholds,
blocked_videos=None,
thread=16,
):
super().__init__()
if not ground_truth_filename:
raise IOError("Please input a valid ground truth file.")
if not prediction_filename:
raise IOError("Please input a valid prediction file.")
self.subset = subset
self.tiou_thresholds = tiou_thresholds
self.gt_fields = ["database"]
self.pred_fields = ["results"]
self.thread = thread # multi-process workers
# Get blocked videos
if blocked_videos is None:
self.blocked_videos = list()
else:
with open(blocked_videos) as json_file:
self.blocked_videos = json.load(json_file)
# Import ground truth and predictions.
self.ground_truth, self.activity_index = self._import_ground_truth(ground_truth_filename)
self.prediction = self._import_prediction(prediction_filename)
def _import_ground_truth(self, ground_truth_filename):
"""Reads ground truth file, checks if it is well formatted, and returns
the ground truth instances and the activity classes.
Parameters
----------
ground_truth_filename : str
Full path to the ground truth json file.
Outputs
-------
ground_truth : df
Data frame containing the ground truth instances.
activity_index : dict
Dictionary containing class index.
"""
with open(ground_truth_filename, "r") as fobj:
data = json.load(fobj)
# Checking format
if not all([field in list(data.keys()) for field in self.gt_fields]):
raise IOError("Please input a valid ground truth file.")
# Read ground truth data.
activity_index, cidx = {}, 0
video_lst, t_start_lst, t_end_lst, label_lst = [], [], [], []
for videoid, v in data["database"].items():
if self.subset != v["subset"]:
continue
if videoid in self.blocked_videos:
continue
# remove duplicated instances following ActionFormer
v_anno = remove_duplicate_annotations(v["annotations"])
for ann in v_anno:
if ann["label"] not in activity_index:
activity_index[ann["label"]] = cidx
cidx += 1
video_lst.append(videoid)
t_start_lst.append(float(ann["segment"][0]))
t_end_lst.append(float(ann["segment"][1]))
label_lst.append(activity_index[ann["label"]])
ground_truth = pd.DataFrame(
{
"video-id": video_lst,
"t-start": t_start_lst,
"t-end": t_end_lst,
"label": label_lst,
}
)
return ground_truth, activity_index
def _import_prediction(self, prediction_filename):
"""Reads prediction file, checks if it is well formatted, and returns
the prediction instances.
Parameters
----------
prediction_filename : str
Full path to the prediction json file.
Outputs
-------
prediction : df
Data frame containing the prediction instances.
"""
# if prediction_filename is a string, then json load
if isinstance(prediction_filename, str):
with open(prediction_filename, "r") as fobj:
data = json.load(fobj)
elif isinstance(prediction_filename, dict):
data = prediction_filename
else:
raise IOError(f"Type of prediction file is {type(prediction_filename)}.")
# Checking format...
if not all([field in list(data.keys()) for field in self.pred_fields]):
raise IOError("Please input a valid prediction file.")
# Read predictions.
video_lst, t_start_lst, t_end_lst = [], [], []
label_lst, score_lst = [], []
for video_id, v in data["results"].items():
if video_id in self.blocked_videos:
continue
for result in v:
try:
label = self.activity_index[result["label"]]
except:
# this is because the predicted label is not in annotation
# such as the some classes only exists in train split, but not in val split
label = len(self.activity_index)
video_lst.append(video_id)
t_start_lst.append(float(result["segment"][0]))
t_end_lst.append(float(result["segment"][1]))
label_lst.append(label)
score_lst.append(result["score"])
prediction = pd.DataFrame(
{
"video-id": video_lst,
"t-start": t_start_lst,
"t-end": t_end_lst,
"label": label_lst,
"score": score_lst,
}
)
return prediction
def wrapper_compute_average_precision(self, cidx_list):
"""Computes average precision for a sub class list."""
for cidx in cidx_list:
gt_idx = self.ground_truth["label"] == cidx
pred_idx = self.prediction["label"] == cidx
self.result_dict[cidx] = compute_average_precision_detection(
self.ground_truth.loc[gt_idx].reset_index(drop=True),
self.prediction.loc[pred_idx].reset_index(drop=True),
tiou_thresholds=self.tiou_thresholds,
)
def multi_thread_compute_average_precision(self):
self.result_dict = mp.Manager().dict()
num_total = len(self.activity_index.values())
num_activity_per_thread = num_total // self.thread + 1
processes = []
for tid in range(self.thread):
num_start = int(tid * num_activity_per_thread)
num_end = min(num_start + num_activity_per_thread, num_total)
p = mp.Process(
target=self.wrapper_compute_average_precision,
args=(list(self.activity_index.values())[num_start:num_end],),
)
p.start()
processes.append(p)
for p in processes:
p.join()
ap = np.zeros((len(self.tiou_thresholds), len(self.activity_index.items())))
for i, cidx in enumerate(self.activity_index.values()):
ap[:, cidx] = self.result_dict[i]
return ap
def evaluate(self):
"""Evaluates a prediction file. For the detection task we measure the
interpolated mean average precision to measure the performance of a
method.
"""
self.ap = self.multi_thread_compute_average_precision()
self.mAPs = self.ap.mean(axis=1)
self.average_mAP = self.mAPs.mean()
metric_dict = dict(average_mAP=self.average_mAP)
for tiou, mAP in zip(self.tiou_thresholds, self.mAPs):
metric_dict[f"mAP@{tiou}"] = mAP
return metric_dict
def logging(self, logger=None):
if logger == None:
pprint = print
else:
pprint = logger.info
pprint("Loaded annotations from {} subset.".format(self.subset))
pprint("Number of ground truth instances: {}".format(len(self.ground_truth)))
pprint("Number of predictions: {}".format(len(self.prediction)))
pprint("Fixed threshold for tiou score: {}".format(self.tiou_thresholds))
pprint("Average-mAP: {:>4.2f} (%)".format(self.average_mAP * 100))
for tiou, mAP in zip(self.tiou_thresholds, self.mAPs):
pprint("mAP at tIoU {:.2f} is {:>4.2f}%".format(tiou, mAP * 100))
def compute_average_precision_detection(ground_truth, prediction, tiou_thresholds=np.linspace(0.5, 0.95, 10)):
"""Compute average precision (detection task) between ground truth and
predictions data frames. If multiple predictions occurs for the same
predicted segment, only the one with highest score is matches as
true positive. This code is greatly inspired by Pascal VOC devkit.
Parameters
----------
ground_truth : df
Data frame containing the ground truth instances.
Required fields: ['video-id', 't-start', 't-end']
prediction : df
Data frame containing the prediction instances.
Required fields: ['video-id, 't-start', 't-end', 'score']
tiou_thresholds : 1darray, optional
Temporal intersection over union threshold.
Outputs
-------
ap : float
Average precision score.
"""
npos = float(len(ground_truth))
lock_gt = np.ones((len(tiou_thresholds), len(ground_truth))) * -1
# Sort predictions by decreasing score order.
sort_idx = prediction["score"].values.argsort()[::-1]
prediction = prediction.loc[sort_idx].reset_index(drop=True)
# Initialize true positive and false positive vectors.
tp = np.zeros((len(tiou_thresholds), len(prediction)))
fp = np.zeros((len(tiou_thresholds), len(prediction)))
# Adaptation to query faster
ground_truth_gbvn = ground_truth.groupby("video-id")
# Assigning true positive to truly grount truth instances.
for idx, this_pred in prediction.iterrows():
try:
# Check if there is at least one ground truth in the video associated.
ground_truth_videoid = ground_truth_gbvn.get_group(this_pred["video-id"])
except Exception as e:
fp[:, idx] = 1
continue
this_gt = ground_truth_videoid.reset_index()
tiou_arr = segment_iou(this_pred[["t-start", "t-end"]].values, this_gt[["t-start", "t-end"]].values)
# We would like to retrieve the predictions with highest tiou score.
tiou_sorted_idx = tiou_arr.argsort()[::-1]
for tidx, tiou_thr in enumerate(tiou_thresholds):
for jdx in tiou_sorted_idx:
if tiou_arr[jdx] < tiou_thr:
fp[tidx, idx] = 1
break
if lock_gt[tidx, this_gt.loc[jdx]["index"]] >= 0:
continue
# Assign as true positive after the filters above.
tp[tidx, idx] = 1
lock_gt[tidx, this_gt.loc[jdx]["index"]] = idx
break
if fp[tidx, idx] == 0 and tp[tidx, idx] == 0:
fp[tidx, idx] = 1
ap = np.zeros(len(tiou_thresholds))
for tidx in range(len(tiou_thresholds)):
# Computing prec-rec
this_tp = np.cumsum(tp[tidx, :]).astype(float)
this_fp = np.cumsum(fp[tidx, :]).astype(float)
rec = this_tp / npos
prec = this_tp / (this_tp + this_fp)
ap[tidx] = interpolated_prec_rec(prec, rec)
return ap
def segment_iou(target_segment, candidate_segments):
"""Compute the temporal intersection over union between a
target segment and all the test segments.
Parameters
----------
target_segment : 1d array
Temporal target segment containing [starting, ending] times.
candidate_segments : 2d array
Temporal candidate segments containing N x [starting, ending] times.
Outputs
-------
tiou : 1d array
Temporal intersection over union score of the N's candidate segments.
"""
tt1 = np.maximum(target_segment[0], candidate_segments[:, 0])
tt2 = np.minimum(target_segment[1], candidate_segments[:, 1])
# Intersection including Non-negative overlap score.
segments_intersection = (tt2 - tt1).clip(0)
# Segment union.
segments_union = (
(candidate_segments[:, 1] - candidate_segments[:, 0])
+ (target_segment[1] - target_segment[0])
- segments_intersection
)
# Compute overlap as the ratio of the intersection
# over union of two segments.
tIoU = segments_intersection.astype(float) / segments_union.clip(1e-8)
return tIoU
def interpolated_prec_rec(prec, rec):
"""Interpolated AP - VOCdevkit from VOC 2011."""
mprec = np.hstack([[0], prec, [0]])
mrec = np.hstack([[0], rec, [1]])
for i in range(len(mprec) - 1)[::-1]:
mprec[i] = max(mprec[i], mprec[i + 1])
idx = np.where(mrec[1::] != mrec[0:-1])[0] + 1
ap = np.sum((mrec[idx] - mrec[idx - 1]) * mprec[idx])
return ap
|