Python进程出错:<type'exception.indexerror'=“”>:索引1超出轴1的大小为1

时间:2017-05-15 14:03:46

标签: python random-forest

我必须处理其他人的代码,他们离开了公司,我无法弄清楚最后一行应该做什么?有什么想法吗?

modele1 = RandomForestClassifier(n_estimators=96,
                              criterion= 'entropy',
                              random_state=2,
                              n_jobs=-1,
                              min_samples_leaf=100,
                              max_depth=20)  
modele_churn_1=modele1.fit(X_train, Y_churn_1_train)
Y_score_proba_churn_1 = modele_churn_1.predict_proba(X_test)[:,1] # this line throws the following error :
  

Python进程中的错误::索引1是   超出轴1的大小为1的界限

0 个答案:

没有答案