Skip to content

Commit

Permalink
fix accuracy test errors
Browse files Browse the repository at this point in the history
Summary:
Some accuracy tests started to fail in between Jun 11 and Jun 17:
- ❌ mask_rcnn_R_50_FPN_inference_acc_test
- ✅ keypoint_rcnn_R_50_FPN_inference_acc_test
- ✅ fast_rcnn_R_50_FPN_inference_acc_test
- ❌ panoptic_fpn_R_50_inference_acc_test
- ✅ retinanet_R_50_FPN_inference_acc_test
- ❌ rpn_R_50_FPN_inference_acc_test
- ✅ semantic_R_50_FPN_inference_acc_test
- ❌ cascade_mask_rcnn_R_50_FPN_inference_acc_test

V1: update the yaml to reflect the new scores.

Differential Revision: D61301698
  • Loading branch information
Yanghan Wang authored and facebook-github-bot committed Aug 14, 2024
1 parent bcfd464 commit 1801c3e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ MODEL:
DATASETS:
TEST: ("coco_2017_val_100",)
TEST:
EXPECTED_RESULTS: [["bbox", "AP", 50.18, 0.02], ["segm", "AP", 43.87, 0.02]]
EXPECTED_RESULTS: [["bbox", "AP", 49.850, 0.02], ["segm", "AP", 43.899, 0.02]]
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MODEL:
DATASETS:
TEST: ("coco_2017_val_100",)
TEST:
EXPECTED_RESULTS: [["bbox", "AP", 47.34, 0.02], ["segm", "AP", 42.67, 0.02], ["bbox_TTA", "AP", 49.11, 0.02], ["segm_TTA", "AP", 45.04, 0.02]]
EXPECTED_RESULTS: [["bbox", "AP", 47.415, 0.02], ["segm", "AP", 42.707, 0.02], ["bbox_TTA", "AP", 49.196, 0.02], ["segm_TTA", "AP", 45.021, 0.02]]
AUG:
ENABLED: True
MIN_SIZES: (700, 800) # to save some time
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ MODEL:
DATASETS:
TEST: ("coco_2017_val_100_panoptic_separated",)
TEST:
EXPECTED_RESULTS: [["bbox", "AP", 46.47, 0.02], ["segm", "AP", 43.39, 0.02], ["sem_seg", "mIoU", 42.55, 0.02], ["panoptic_seg", "PQ", 38.99, 0.02]]
EXPECTED_RESULTS: [["bbox", "AP", 46.552, 0.02], ["segm", "AP", 43.384, 0.02], ["sem_seg", "mIoU", 42.545, 0.02], ["panoptic_seg", "PQ", 39.000, 0.02]]
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ MODEL:
DATASETS:
TEST: ("coco_2017_val_100",)
TEST:
EXPECTED_RESULTS: [["box_proposals", "AR@1000", 58.16, 0.02]]
EXPECTED_RESULTS: [["box_proposals", "AR@1000", 58.133, 0.02]]

0 comments on commit 1801c3e

Please sign in to comment.