dict: a dictionary of info about the object
(self)
| 193 | |
| 194 | @property |
| 195 | def info(self): |
| 196 | """dict: a dictionary of info about the object""" |
| 197 | basic_info = { |
| 198 | 'num_gts': self.num_gts, |
| 199 | 'num_preds': self.num_preds, |
| 200 | 'gt_inds': self.gt_inds, |
| 201 | 'max_overlaps': self.max_overlaps, |
| 202 | 'labels': self.labels, |
| 203 | } |
| 204 | basic_info.update(self._extra_properties) |
| 205 | return basic_info |
| 206 | |
| 207 | def __nice__(self): |
| 208 | """str: a "nice" summary string describing this assign result""" |
no test coverage detected