MCPcopy Create free account
hub / github.com/MotrixLab/AiOS / info

Method info

models/utils.py:195–205  ·  view source on GitHub ↗

dict: a dictionary of info about the object

(self)

Source from the content-addressed store, hash-verified

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"""

Callers 3

mainFunction · 0.45
reduce_dictFunction · 0.45
setup_loggingFunction · 0.45

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected