(self, delimiter="\t", wandb=None, output_file=None)
| 22 | |
| 23 | class MetricLogger(object): |
| 24 | def __init__(self, delimiter="\t", wandb=None, output_file=None): |
| 25 | self.meters = defaultdict(SmoothedValue) |
| 26 | self.delimiter = delimiter |
| 27 | self.output_file = output_file |
| 28 | self.wandb = wandb |
| 29 | |
| 30 | def update(self, **kwargs): |
| 31 | for k, v in kwargs.items(): |
nothing calls this directly
no outgoing calls
no test coverage detected