安装了最新的 auto-sklearn 库,运行例子是报错
AttributeError: module 'pandas' has no attribute 'core'
最后发现是 pandas 库的版本问题。安装 auto-sklearn 时安装的 pandas 版本是 0.25.1,这个版本有问题,需要安装 0.22 版的 pandas。
重新安装 pandas
pip install pandas==0.22
再次运行例子,问题解决。
安装了最新的 auto-sklearn 库,运行例子是报错
AttributeError: module 'pandas' has no attribute 'core'
最后发现是 pandas 库的版本问题。安装 auto-sklearn 时安装的 pandas 版本是 0.25.1,这个版本有问题,需要安装 0.22 版的 pandas。
重新安装 pandas
pip install pandas==0.22
再次运行例子,问题解决。