1. AttributeError: ‘DataFrame’ object has no attribute ‘sort’
以上报错是由于Pandas升级放弃使用sort而改用sort_values和sort_index所致,可进行相应的更改,如
1 2 3 4 5 |
print(df.sort(columns="B")) #修改为 print(df.sort_values("B")) #或 print(df.sort_values(by="B")) |
2.ImportError: No module named tensorflow
打开用户目录下的keras.config文件,修改backend的值(注意先备份文件)
1 |
"backend": "theano" |