from local

This commit is contained in:
dohe0342 2023-04-26 14:42:56 +09:00
parent cbf13d8465
commit b19d1ad988
2 changed files with 6 additions and 0 deletions

View File

@ -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()
'''