(self)
| 17 | |
| 18 | class DictAverageMeter(object): |
| 19 | def __init__(self): |
| 20 | self.sum_data = {} |
| 21 | self.avg_data = {} |
| 22 | self.count = 0 |
| 23 | |
| 24 | def update(self, new_input): |
| 25 | self.count += 1 |
nothing calls this directly
no outgoing calls
no test coverage detected