from local

This commit is contained in:
dohe0342 2023-04-27 21:08:39 +09:00
parent 952eee4869
commit 3839093e06
2 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ for spk in tqdm(spk_list):
spk_id = spk.split('/')[-1]
feats = []
feat_list = glob(f'{spk}/*.npy')
static_file = open(f'{spk}/{spk_id}_statistic.txt', 'w')
for feat in feat_list:
for feat in tqdm(feat_list, leave=False):
feat = np.load(feat)
feats.append(feat)