MCPcopy Create free account
hub / github.com/alinlab/SelfPatch / __str__

Method __str__

utils.py:313–319  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

311 type(self).__name__, attr))
312
313 def __str__(self):
314 loss_str = []
315 for name, meter in self.meters.items():
316 loss_str.append(
317 "{}: {}".format(name, str(meter))
318 )
319 return self.delimiter.join(loss_str)
320
321 def synchronize_between_processes(self):
322 for meter in self.meters.values():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected