XGBoost:我的手机怎么了xgb.cv调用语法?

2024-09-29 19:25:42 发布

您现在位置:Python中文网/ 问答频道 /正文

我尝试在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)

但如果我换了行:

^{pr2}$

为此:

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

我得到以下意外错误:

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

编辑: 听从@martineau的建议,试试这个

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

产生这个错误

TypeError Traceback (most recent call last) in () 43 # bst = xgb.train( plst, dtrain, num_round, evallist,early_stopping_rounds=5 ) # early_stopping_rounds=10 # when there is a validation set 44 ---> 45 bst.res=xgb.cv(plst,dtrain,num_round,evallist,nfold = 5,early_stopping_rounds=5) 46 47 bst.save_model('0001.model')

TypeError: cv() got multiple values for keyword argument 'nfold'


Tags: modelnptrainnumcvvalidbstround
2条回答

不能在cv中使用evallist。 所以您应该从xgb.cv调用的参数中删除evallist。 换句话说,你应该试试:

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

而不是

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

克里斯, python培训API在pip版本和github中的当前主分支之间略有变化。他们主要在verbose_evalcallbacks和{}添加到cv函数中。在pip版本中,verbose_evalcallbacks关键字已经存在于train函数的pip版本中,而不是{}函数。在

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

git clone  recursive https://github.com/dmlc/xgboost
cd xgboost; make -j4 
cd python-package; sudo python setup.py install

相关问题 更多 >

    热门问题