from local

This commit is contained in:
dohe0342 2023-04-28 01:16:30 +09:00
parent f263fbb20b
commit ae93fe172a
2 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ for spk in tqdm(spk_list):
std = feats_all[i].std() std = feats_all[i].std()
static_file.write(f'{mean} {std}\n') static_file.write(f'{mean} {std}\n')
''' '''
for i in range(512): for i in tqdm(range(512), leave=False):
plt.hist(feats_all[i], bins=500) plt.hist(feats_all[i], bins=500)
plt.savefig(f'./{spk}/dim_{i}.pdf') plt.savefig(f'./{spk}/dim_{i}.pdf')
plt.close() plt.close()