From ae93fe172a5c78a3c15a74954276fcf07810dd2d Mon Sep 17 00:00:00 2001 From: dohe0342 Date: Fri, 28 Apr 2023 01:16:30 +0900 Subject: [PATCH] from local --- egs/librispeech/ASR/.conv_feat_vis.py.swp | Bin 12288 -> 12288 bytes egs/librispeech/ASR/conv_feat_vis.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/.conv_feat_vis.py.swp b/egs/librispeech/ASR/.conv_feat_vis.py.swp index 0e36091d1e15fbbf8ca3a447db629f4b35bbd7b7..6046d61c045c6b396b0a3d78595c6f7a7523e41c 100644 GIT binary patch delta 72 zcmZojXh;xEG6?hZRj|}EU;qLE28P=CUMVdbMc>P_PUmJ|u%67R(9XMrhk>CQi2Z@s Ydh=X`h1`<^b&4m4>1uDjqocwM0Gj0z{r~^~ delta 93 zcmZojXh;xEG6?hZRj|}EU;qLE1_t-}UMT?^Mc>P_uHt53@SDu3(9XM^hk>CFh?9WW lZ}VJ*h1`7V>go&%a4^|Yr-HL6F)uw;!_?4d^I08ZW&jN>7E1sC diff --git a/egs/librispeech/ASR/conv_feat_vis.py b/egs/librispeech/ASR/conv_feat_vis.py index 65632dd48..f7b2c1074 100644 --- a/egs/librispeech/ASR/conv_feat_vis.py +++ b/egs/librispeech/ASR/conv_feat_vis.py @@ -28,7 +28,7 @@ for spk in tqdm(spk_list): std = feats_all[i].std() 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.savefig(f'./{spk}/dim_{i}.pdf') plt.close()