(self, score:float, is_true:bool)
| 521 | self.num_gt_positives = 0 |
| 522 | |
| 523 | def push(self, score:float, is_true:bool): |
| 524 | self.data_points.append((score, is_true)) |
| 525 | |
| 526 | def add_gt_positives(self, num_positives:int): |
| 527 | """ Call this once per image. """ |