from local

This commit is contained in:
dohe0342 2023-04-27 20:39:44 +09:00
parent b4d9a7eb16
commit c505d48d4e
2 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ for spk in tqdm(spk_list):
feats_all = feats_all.transpose(1,0)
for i in range(512):
for i in tqdm(range(512), leave=False):
mean = feats_all[i].mean()
std = feats_all[i].std()
statistic_file.write(f'{mean} {std}')