我根据this article
尝试了CatBoost在它的代码中,CatBoost在plot
中有model.fit()
,所以我想在我的IPython上尝试。
这是我的CatBoost代码:
from catboost import CatBoostRegressor
# indicate categorical features for CatBoost
categorical_features_indices = np.where(X.dtypes != np.float)[0]
model=CatBoostRegressor(iterations=50, depth=3, learning_rate=0.1,
loss_function='RMSE')
model.fit(X_train, y_train,
cat_features=categorical_features_indices,
use_best_model=True,
eval_set=(X_validation, y_validation), plot=True)
但是,它无法显示任何情节,并一直给我错误:
我确实安装了ipywidgets和ipython。 你知道如何处理这个问题吗?
答案 0 :(得分:1)
最后,我解决了这个问题,现在我可以看到这个情节了
就我而言,解决方案是安装Conda
并创建conda虚拟环境,然后通过Conda安装ipywidgets
。
让我在这里写下所有细节,希望它会有所帮助。 这可能只会帮助Mac用户
$PATH
:How to run Conda? conda create -n yourenvname python=x.x anaconda
source activate yourenvname
virtualenv
并为此安装了IPython,则可以跳过此步骤):
(yourenvname)$ pip install jupyter
(yourenvname)$ pip install ipykernel
(yourenvname)$ python -m ipykernel install --user --name testenv --display-name "Python2 (yourenvname)"
,如果您有多个ipykernel,此处testenv
也应更改为其他名称(yourenvname)$ conda install ipywidgets --no-deps
(yourenvname)$ pip install catboost
jupyter notebook
并在Python2 (yourenvname)
下创建一个新笔记本,然后它就能正常工作注意:如果在步骤8 之前无效,请尝试以下操作:
pip install widgetsnbextension
jupyter nbextension enable --py widgetsnbextension --sys-prefix