from local

This commit is contained in:
dohe0342 2023-04-26 14:22:27 +09:00
parent 149de1c41a
commit 79b6cc25ea
2 changed files with 6 additions and 1 deletions

View File

@ -12,4 +12,9 @@ feats_all = feats[0]
for feat in feats:
feats_all = np.concatenate([feats_all, feat])
print(feats_all.shape)
feats_all = feats_all.transpose(0,1)
for i in range(512):
plt.hist(feats_all[i])
plt.savefig(f'dim_{i}')
plt.close()