MCPcopy Create free account
hub / github.com/PolymathicAI/AstroCLIP / __init__

Method __init__

astroclip/astrodino/utils.py:24–28  ·  view source on GitHub ↗
(self, delimiter="\t", wandb=None, output_file=None)

Source from the content-addressed store, hash-verified

22
23class 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():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected