shapes (32,27) and (32,27) not aligned: 27 (dim 1) != 32 (dim 0) ValueError: shape mismatch: v...

1.这个原因是因为后面的转意字符\xa0 (不间断转义字符-latin1的空白符)。

```

X_train= np.array(df_melt["value"])

print(X_train)

```

可能是因为我在做array转换的时候引入了\xa0

2.利用strip与join函数去除后面的\xa0

 ```each="".join(each.split())```



就可以搞定了

你可能感兴趣的:(shapes (32,27) and (32,27) not aligned: 27 (dim 1) != 32 (dim 0) ValueError: shape mismatch: v...)