python xgb_feature_importance

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python xgb_feature_importance相关的知识,希望对你有一定的参考价值。

def xgb_feature_importance(model, feature_list):
    scores = model.get_fscore()
    sum_scores = sum(scores.values())
    fnames = model.feature_names
    result = {feature_list[i]: round(scores.get(fnames[i], 0) / sum_scores, 3)
              for i in range(len(feature_list))}
    return sorted(result.items(), key=lambda x: x[1], reverse=True)

以上是关于python xgb_feature_importance的主要内容,如果未能解决你的问题,请参考以下文章

001--python全栈--基础知识--python安装

Python代写,Python作业代写,代写Python,代做Python

Python开发

Python,python,python

Python 介绍

Python学习之认识python