from local

This commit is contained in:
dohe0342 2023-04-26 14:35:02 +09:00
parent 6cac7f1ade
commit cbf13d8465
2 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ feats_all = feats_all.transpose(1,0)
print(feats_all.shape)
for i in range(512):
plt.hist(feats_all[i])
plt.hist(feats_all[i], bins=500)
plt.savefig(f'./conv_feat/dim_{i}.pdf')
plt.close()