XGBoost:xgb.cv调用有什么问题?

Fag*_*ain 8 python xgboost

我正在尝试在Python上使用xgboost.

这是我的代码. 虽然看起来我用它是正确的方法xgb.train,xgb.cv但我仍然犯了错误.

以下适用于我:

###### XGBOOST ######

import datetime
startTime = datetime.datetime.now()

import xgboost as xgb
data_train   = np.array(traindata.drop('Category',axis=1))
labels_train = np.array(traindata['Category'].cat.codes)

data_valid   = np.array(validdata.drop('Category',axis=1))
labels_valid = np.array(validdata['Category'].astype('category').cat.codes)

weights_train = np.ones(len(labels_train))
weights_valid  = np.ones(len(labels_valid ))

dtrain = xgb.DMatrix( data_train, label=labels_train,weight = weights_train)
dvalid  = xgb.DMatrix( data_valid , label=labels_valid ,weight = weights_valid )

param = {'bst:max_depth':5, 'bst:eta':0.05, # eta [default=0.3]
         #'min_child_weight':1,'gamma':0,'subsample':1,'colsample_bytree':1,'scale_pos_weight':0, # default
         # max_delta_step:0 # default
         'min_child_weight':5,'scale_pos_weight':0, 'max_delta_step':2,
         'subsample':0.8,'colsample_bytree':0.8,
         'silent':1, 'objective':'multi:softprob' }

param['nthread'] = 4
param['eval_metric'] = 'mlogloss'
param['lambda'] = 2
param['num_class']=39

evallist  = [(dtrain,'train'),(dvalid,'eval')] # if there is a validation set
# evallist  = [(dtrain,'train')]                   # if there is no validation set

plst = param.items()
plst += [('ams@0','eval_metric')]

num_round = 100

bst = xgb.train( plst, dtrain, num_round, evallist,early_stopping_rounds=5 ) # early_stopping_rounds=10 # when there is a validation set

# bst.res=xgb.cv(plst,dtrain,num_round,nfold = 5,evallist,early_stopping_rounds=5)

bst.save_model('0001.model')

# dump model
bst.dump_model('dump.raw.txt')
# dump model with feature map
# bst.dump_model('dump.raw.txt','featmap.txt')

x = datetime.datetime.now() - startTime
print(x)
Run Code Online (Sandbox Code Playgroud)

但如果我改变了这条线:

bst = xgb.train( plst, dtrain, num_round, evallist,early_stopping_rounds=5 )
Run Code Online (Sandbox Code Playgroud)

对此:

bst.res=xgb.cv(plst,dtrain,num_round,nfold = 5,evallist,early_stopping_rounds=5)
Run Code Online (Sandbox Code Playgroud)

我收到以下意外错误:

File "<ipython-input-46-ebdf0546f464>", line 45
    bst.res=xgb.cv(plst,dtrain,num_round,nfold = 5,evallist,early_stopping_rounds=5) SyntaxError: non-keyword arg after
keyword arg
Run Code Online (Sandbox Code Playgroud)

编辑:按照以下@martineau的建议,并尝试这一点

bst.res=xgb.cv(plst,dtrain,num_round,evallist,nfold = 5,early_stopping_rounds=5)
Run Code Online (Sandbox Code Playgroud)

产生此错误

()中的TypeError Traceback(最近的最后一次调用)43#bst = xgb.train(plst,dtrain,num_round,evallist,early_stopping_rounds = 5)当有验证集44 ---> 45 bst时,#early_stopping_rounds = 10#. res = xgb.cv(plst,dtrain,num_round,evallist,nfold = 5,early_stopping_rounds = 5)46 47 bst.save_model('0001.model')

TypeError:cv()为关键字参数'nfold'获取了多个值

Chr*_*rry 0

我的理解是这个错误是通过 pip 安装 xgboost 造成的,pip 现在已经过时了。XGBoost 应按如下方式安装:

git clone --recursive https://github.com/dmlc/xgboost
cd xgboost; make -j4 
cd python-package; sudo python setup.py install
Run Code Online (Sandbox Code Playgroud)