-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix bug of evaluation only on frames with detections #36
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -111,8 +111,12 @@ def read_json(json_file, class_whitelist=None, load_score=False): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
scores = defaultdict(list) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ann_dict = json.load(json_file) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for video in ann_dict['db'].keys(): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# filter ground-truth of validation set only | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if 'val_1' not in ann_dict['db'][video]['split_ids']: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for frame in ann_dict['db'][video]['frames'].values(): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if not frame['annotated'] or len(frame['annos']) == 0: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# only load ground-truth of annotated frames | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if not frame['annotated']: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image_key = make_image_key(video, frame['input_image_id']) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for annon in frame['annos'].values(): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -183,8 +187,13 @@ def run_evaluation(labelmap, groundtruth, detections, exclusions, logger): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start = time.time() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for image_key in gt_boxes: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# pred_boxes do not include frames with no detections | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# to handle frames with no detections, add empty detections to those frames | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if image_key not in pred_boxes.keys(): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pred_boxes[image_key] = np.empty(shape=[0, 4], dtype=float) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pred_labels[image_key] = np.array([], dtype=int) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pred_scores[image_key] =np.array([], dtype=float) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+193
to
+195
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this what the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I read the code of evaluation details. Before calculation of tp/fp, invalid detection boxes will be removed. The empty detection boxes we provide will be removed. action-classification/ACAR-Net/ava_evaluation/per_image_evaluation.py Lines 90 to 92 in 49790e0
Then N detection boxes and M ground-truth boxes will be used to calculate tp/fp. I think everything else is correct after this step and this follows the evaluation process of pascal_evaluator. If we don't provide the empty detection boxes, before the step described above, less images will be evaluated according to this part of code. action-classification/ACAR-Net/ava_evaluation/object_detection_evaluation.py Lines 593 to 622 in 49790e0
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pascal_evaluator.add_single_ground_truth_image_info( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image_key, { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
standard_fields.InputDataFields.groundtruth_boxes: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -199,6 +208,7 @@ def run_evaluation(labelmap, groundtruth, detections, exclusions, logger): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start = time.time() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
num_pred_ignored = 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for image_key in pred_boxes: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# ignore frames without ground-truth annotations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is this comment referring to? |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if image_key not in gt_boxes.keys(): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.info(("Found excluded timestamp in detections: %s. " | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"It will be ignored."), image_key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only val_1, should be a changeable param