我有一个高度不平衡的3类数据集。为了解决这个问题,我在XGBClassifier中应用了sample_weight数组,但是我没有注意到建模结果的任何变化吗?分类报告(混淆矩阵)中的所有度量均相同。实施有问题吗?
班级比例:
military: 1171
government: 34852
other: 20869
示例:
pipeline = Pipeline([
('bow', CountVectorizer(analyzer=process_text)), # convert strings to integer counts
('tfidf', TfidfTransformer()), # convert integer counts to weighted TF-IDF scores
('classifier', XGBClassifier(sample_weight=compute_sample_weight(class_weight='balanced', y=y_train))) # train on TF-IDF vectors w/ Naive Bayes classifier
])
数据集示例:
data = pd.DataFrame({'entity_name': ['UNICEF', 'US Military', 'Ryan Miller'],
'class': ['government', 'military', 'other']})
分类报告
eval_metric
。 eval_metric=merror
或mlogloss
,然后将结果发布给我们。您向我们展示了['precision','recall','f1-score','support']
,但是它不是次优的,或者是完全破坏的,除非您以了解多类,不平衡的方式计算它们。military: government: other
1:30:18,或百分比是2:61:37%。xgb.DMatrix..., weights)
手动设置每班的权重>sklearn.utils.class_weight.compute_sample_weight('balanced', ...)
之类的样板为您提供最佳权重。1 : 1/30 : 1/18
开头并手动设置每个班级权重的实验,并尝试更多极限值。倒数,因此稀有阶级的体重增加。min_child_weight
设置得更高,因此需要一些示例(少数类)min_child_weight >= 2
(*最稀有阶级的体重)开始,然后再尝试更高。提防过度适应非常少见的少数类(这就是为什么人们为了某些保护而使用StratifiedKFold交叉验证,但是您的代码未使用CV的原因。)>