MCPcopy Create free account
hub / github.com/FreeformRobotics/OTS / __init__

Method __init__

utils.py:35–40  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

33class AverageMeter(object):
34 """Computes and stores the average and current value"""
35 def __init__(self):
36 self.initialized = False
37 self.val = None
38 self.avg = None
39 self.sum = None
40 self.count = None
41
42 def initialize(self, val, weight):
43 self.val = val

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected