Код: Выделить всё
clf = xgboost.XGBClassifier(verbosity=1)
print (clf.__class__, clf.verbosity)
# prints 1
clf.fit(X=train_data_iter[features].fillna(0), y=train_data_iter['y']) # the error is raised here
Подробнее здесь: https://stackoverflow.com/questions/787 ... -bound-0-3