myTest01 / models /util /shell_util.py
meng2003's picture
Upload 85 files
bc32eea
raw
history blame contribute delete
554 Bytes
class AverageMeter(object):
"""Computes and stores the average and current value.
Adapted from: https://github.com/pytorch/examples/blob/master/imagenet/train.py
"""
def __init__(self):
self.val = 0.
self.avg = 0.
self.sum = 0.
self.count = 0.
def reset(self):
self.val = 0.
self.avg = 0.
self.sum = 0.
self.count = 0.
def update(self, val, n=1):
self.val = val
self.sum += val * n
self.count += n
self.avg = self.sum / self.count