首先,我还是那句说了一万遍的话,安装任何程序,请以官方文档为准。
那么,我们就去看看官方文档吧。
https://automl.github.io/auto-sklearn/master/installation.html
官方文档第一条就说,需要Linux系统。😦
没事,自然有逆天的方法给他装上去。因为我用WSL(Windows Subsystem for Linux)。
安装WSL
然后修改控制面板 -> 程序和功能 -> 启用或关闭Windows功能 -> 勾选 适用于Linux的Windows子系统
安装auto-sklearn
首先,你当然还是要装python,jupyter等,相信怎么在linux夏装这些你已经轻车熟路了。
按照官方文档,先安装依赖:
curl https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip install
然后安装Auto-Sklearn
pip install auto-sklearn
运行jupyter notebook
打开WSL,输入
cd /mnt/d
即可进入d盘。
在WSL里面打jupyter notebook就可以运行jupyter notebook了。然后复制url地址,在windows打开即可。
第一个例子
运行例子,不要忘了设置运行时间,否则你就要等一个小时了。
automl=autoReg.AutoSklearnRegressor(time_left_for_this_task=100)
具体的例子,去看官方文档。
转载:https://blog.csdn.net/juwikuang/article/details/105659288
查看评论