from local

This commit is contained in:
dohe0342 2023-04-26 14:30:17 +09:00
parent 648098adb3
commit 3085a87f4f
2 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ feats_all = feats[0]
for feat in feats: for feat in feats:
feats_all = np.concatenate([feats_all, feat]) feats_all = np.concatenate([feats_all, feat])
feats_all = feats_all.transpose(0,1) feats_all = feats_all.transpose(1,0)
print(feats_all.shape) print(feats_all.shape)
exit() exit()