MCPcopy Create free account
hub / github.com/MotrixLab/MotionDiffuse / get_metric_statistics

Function get_metric_statistics

text2motion/tools/evaluation.py:146–150  ·  view source on GitHub ↗
(values)

Source from the content-addressed store, hash-verified

144
145
146def get_metric_statistics(values):
147 mean = np.mean(values, axis=0)
148 std = np.std(values, axis=0)
149 conf_interval = 1.96 * std / np.sqrt(replication_times)
150 return mean, conf_interval
151
152
153def evaluation(log_file):

Callers 1

evaluationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected