mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-12-11 06:55:27 +00:00
from local
This commit is contained in:
parent
cbf13d8465
commit
b19d1ad988
Binary file not shown.
@ -15,7 +15,13 @@ for feat in feats:
|
||||
feats_all = feats_all.transpose(1,0)
|
||||
print(feats_all.shape)
|
||||
|
||||
for i in range(512):
|
||||
mean = feats_all[i].mean()
|
||||
std = feats_all[i].std()
|
||||
print(mean, std)
|
||||
'''
|
||||
for i in range(512):
|
||||
plt.hist(feats_all[i], bins=500)
|
||||
plt.savefig(f'./conv_feat/dim_{i}.pdf')
|
||||
plt.close()
|
||||
'''
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user