MCPcopy Create free account
hub / github.com/GeWu-Lab/AnyTouch2 / __str__

Method __str__

util/misc.py:108–114  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

106 type(self).__name__, attr))
107
108 def __str__(self):
109 loss_str = []
110 for name, meter in self.meters.items():
111 loss_str.append(
112 "{}: {}".format(name, str(meter))
113 )
114 return self.delimiter.join(loss_str)
115
116 def synchronize_between_processes(self):
117 for meter in self.meters.values():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected