from local

This commit is contained in:
dohe0342 2022-12-15 17:56:18 +09:00
parent 4290b4c8d0
commit 4c7833e4c0
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@ -891,8 +891,11 @@ class MetricsTracker(collections.defaultdict):
#norm_value = (
# float(v) / num_frames if "utt_" not in k else float(v) / num_utterances
#)
#norm_value = (
# float(v) / num_utterances
#)
norm_value = (
float(v) / num_utterances
float(v)
)
ans.append((k, norm_value))