File size: 12,453 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 | import json
import numpy as np
import pandas as pd
from .builder import EVALUATORS, remove_duplicate_annotations
from .mAP import segment_iou
@EVALUATORS.register_module()
class Recall:
def __init__(
self,
ground_truth_filename,
prediction_filename,
subset,
tiou_thresholds,
topk=[1, 5, 10, 100],
max_avg_nr_proposals=100,
blocked_videos=None,
):
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.max_avg_nr_proposals = max_avg_nr_proposals
self.topk = [int(k) for k in topk]
self.gt_fields = ["database"]
self.pred_fields = ["results"]
# 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 proposals.
self.ground_truth, self.activity_index = self._import_ground_truth(ground_truth_filename)
self.proposal = self._import_proposal(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_proposal(self, proposal_filename):
"""Reads proposal file, checks if it is well formatted, and returns
the proposal instances.
Parameters
----------
proposal_filename : str
Full path to the proposal json file.
Outputs
-------
proposal : df
Data frame containing the proposal instances.
"""
# if prediction_filename is a string, then json load
if isinstance(proposal_filename, str):
with open(proposal_filename, "r") as fobj:
data = json.load(fobj)
elif isinstance(proposal_filename, dict):
data = proposal_filename
else:
raise IOError(f"Type of prediction file is {type(proposal_filename)}.")
# Checking format...
if not all([field in list(data.keys()) for field in self.pred_fields]):
raise IOError("Please input a valid proposal file.")
# Read predictions.
video_lst, t_start_lst, t_end_lst = [], [], []
score_lst = []
for videoid, v in data["results"].items():
if videoid in self.blocked_videos:
continue
for result in v:
video_lst.append(videoid)
t_start_lst.append(float(result["segment"][0]))
t_end_lst.append(float(result["segment"][1]))
score_lst.append(result["score"])
proposal = pd.DataFrame(
{
"video-id": video_lst,
"t-start": t_start_lst,
"t-end": t_end_lst,
"score": score_lst,
}
)
return proposal
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.
"""
recall, avg_recall, proposals_per_video = average_recall_vs_avg_nr_proposals(
self.ground_truth,
self.proposal,
max_avg_nr_proposals=self.max_avg_nr_proposals,
tiou_thresholds=self.tiou_thresholds,
)
area_under_curve = np.trapz(avg_recall, proposals_per_video)
self.recall = recall
self.avg_recall = avg_recall
self.proposals_per_video = proposals_per_video
self.auc = float(area_under_curve) / proposals_per_video[-1]
metric_dict = dict(AUC=self.auc)
for k in self.topk:
metric_dict[f"AR@{k}"] = np.mean(self.recall[:, k - 1])
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.proposal)))
pprint("Fixed threshold for tiou score: {}".format(self.tiou_thresholds))
pprint("AUC: {:>4.2f} (%)".format(self.auc * 100))
for k in self.topk:
pprint("AR@{:3d} is {:>4.2f}%".format(k, np.mean(self.recall[:, k - 1]) * 100))
def average_recall_vs_avg_nr_proposals(
ground_truth,
proposals,
max_avg_nr_proposals=None,
tiou_thresholds=np.linspace(0.5, 0.95, 10),
):
"""Computes the average recall given an average number
of proposals per video.
Parameters
----------
ground_truth : df
Data frame containing the ground truth instances.
Required fields: ['video-id', 't-start', 't-end']
proposal : df
Data frame containing the proposal instances.
Required fields: ['video-id, 't-start', 't-end', 'score']
tiou_thresholds : 1darray, optional
array with tiou thresholds.
Outputs
-------
recall : 2darray
recall[i,j] is recall at ith tiou threshold at the jth average number of average number of proposals per video.
average_recall : 1darray
recall averaged over a list of tiou threshold. This is equivalent to recall.mean(axis=0).
proposals_per_video : 1darray
average number of proposals per video.
"""
# Get list of videos.
video_lst = ground_truth["video-id"].unique()
if not max_avg_nr_proposals:
max_avg_nr_proposals = float(proposals.shape[0]) / video_lst.shape[0]
ratio = max_avg_nr_proposals * float(video_lst.shape[0]) / proposals.shape[0]
# Adaptation to query faster
ground_truth_gbvn = ground_truth.groupby("video-id")
proposals_gbvn = proposals.groupby("video-id")
# For each video, computes tiou scores among the retrieved proposals.
score_lst = []
total_nr_proposals = 0
for videoid in video_lst:
# Get ground-truth instances associated to this video.
ground_truth_videoid = ground_truth_gbvn.get_group(videoid)
this_video_ground_truth = ground_truth_videoid.loc[:, ["t-start", "t-end"]].values
# Get proposals for this video.
try:
proposals_videoid = proposals_gbvn.get_group(videoid)
this_video_proposals = proposals_videoid.loc[:, ["t-start", "t-end"]].values
# Sort proposals by score.
sort_idx = proposals_videoid["score"].argsort()[::-1]
this_video_proposals = this_video_proposals[sort_idx, :]
except:
n = this_video_ground_truth.shape[0]
score_lst.append(np.zeros((n, 1)))
continue
if this_video_proposals.shape[0] == 0:
n = this_video_ground_truth.shape[0]
score_lst.append(np.zeros((n, 1)))
continue
if this_video_proposals.ndim != 2:
this_video_proposals = np.expand_dims(this_video_proposals, axis=0)
if this_video_ground_truth.ndim != 2:
this_video_ground_truth = np.expand_dims(this_video_ground_truth, axis=0)
nr_proposals = np.minimum(int(this_video_proposals.shape[0] * ratio), this_video_proposals.shape[0])
total_nr_proposals += nr_proposals
this_video_proposals = this_video_proposals[:nr_proposals, :]
# Compute tiou scores.
tiou = wrapper_segment_iou(this_video_proposals, this_video_ground_truth)
score_lst.append(tiou)
# Given that the length of the videos is really varied, we
# compute the number of proposals in terms of a ratio of the total
# proposals retrieved, i.e. average recall at a percentage of proposals
# retrieved per video.
# Computes average recall.
# pcn_lst = np.arange(1, 101) / 100.0 * (max_avg_nr_proposals * float(video_lst.shape[0]) / total_nr_proposals)
pcn_lst = (
np.arange(1, max_avg_nr_proposals + 1)
/ max_avg_nr_proposals
* (max_avg_nr_proposals * float(video_lst.shape[0]) / total_nr_proposals)
)
matches = np.empty((video_lst.shape[0], pcn_lst.shape[0]))
positives = np.empty(video_lst.shape[0])
recall = np.empty((len(tiou_thresholds), pcn_lst.shape[0]))
# Iterates over each tiou threshold.
for ridx, tiou in enumerate(tiou_thresholds):
# Inspect positives retrieved per video at different
# number of proposals (percentage of the total retrieved).
for i, score in enumerate(score_lst):
# Total positives per video.
positives[i] = score.shape[0]
# Find proposals that satisfies minimum tiou threshold.
true_positives_tiou = score >= tiou
# Get number of proposals as a percentage of total retrieved.
pcn_proposals = np.minimum((score.shape[1] * pcn_lst).astype(np.int), score.shape[1])
for j, nr_proposals in enumerate(pcn_proposals):
# Compute the number of matches for each percentage of the proposals
matches[i, j] = np.count_nonzero((true_positives_tiou[:, :nr_proposals]).sum(axis=1))
# Computes recall given the set of matches per video.
recall[ridx, :] = matches.sum(axis=0) / positives.sum()
# Recall is averaged.
avg_recall = recall.mean(axis=0)
# Get the average number of proposals per video.
proposals_per_video = pcn_lst * (float(total_nr_proposals) / video_lst.shape[0])
return recall, avg_recall, proposals_per_video
def wrapper_segment_iou(target_segments, candidate_segments):
"""Compute intersection over union btw segments
Parameters
----------
target_segments : ndarray
2-dim array in format [m x 2:=[init, end]]
candidate_segments : ndarray
2-dim array in format [n x 2:=[init, end]]
Outputs
-------
tiou : ndarray
2-dim array [n x m] with IOU ratio.
Note: It assumes that candidate-segments are more scarce that target-segments
"""
if candidate_segments.ndim != 2 or target_segments.ndim != 2:
raise ValueError("Dimension of arguments is incorrect")
n, m = candidate_segments.shape[0], target_segments.shape[0]
tiou = np.empty((n, m))
for i in range(m):
tiou[:, i] = segment_iou(target_segments[i, :], candidate_segments)
return tiou
|