python机器学习
文章平均质量分 69
雪龙无敌
python爱数据,职位爱科技
展开
-
集成学习01_xgboost参数讲解与实战
xgboost 参数详解,实战案例,最优参数网格搜索原创 2022-11-06 21:37:29 · 3141 阅读 · 0 评论 -
python提升算法3_XGBOOST_docs_Scikit-LearnAPI_XGBClassifier参数02
Scikit-Learn API1.fit()fit(X, y, *, sample_weight=None, base_margin=None, eval_set=None, eval_metric=None, early_stopping_rounds=None, verbose=True, xgb_model=None, sample_weight_eval_set=None, base_margin_eval_set=None, feature_weights=None, callbacks=N原创 2022-05-28 23:30:54 · 1118 阅读 · 0 评论 -
python_xgboost例03_evals_result评估结果
%matplotlib inline本专栏所有例题数据放在 网址[https://download.csdn.net/download/u012338969/85439555(https://download.csdn.net/download/u012338969/85439555)This script demonstrate how to access the eval metricsimport osimport xgboost as xgbdtrain = xgb.DMatrix(翻译 2022-05-22 21:22:28 · 1222 阅读 · 0 评论 -
python_xgboost例02_predict_leaf_indices获得叶子索引
本专栏所有例题数据放在 网址[https://download.csdn.net/download/u012338969/85439555(https://download.csdn.net/download/u012338969/85439555)%matplotlib inlineDemo for obtaining leaf indeximport osimport xgboost as xgb# load data in do trainingdtrain = xgb.DMatrix翻译 2022-05-22 21:10:38 · 303 阅读 · 0 评论 -
python_xgboost例01_sklearn_parallel并行
%matplotlib inlineDemo for using xgboost with sklearnfrom sklearn.model_selection import GridSearchCVfrom sklearn.datasets import fetch_california_housingimport xgboost as xgbimport multiprocessingif __name__ == "__main__": print("Parallel Para翻译 2022-05-22 20:43:09 · 243 阅读 · 0 评论 -
python提升算法3_XGBOOST_docs_Scikit-LearnAPI_XGBClassifier_train参数01
1.XGBClassifieScikit-Learn API能一个工具搞定的,就不要太多工具,关于python_api某块,重点翻译学习Scikit-Learn API,主要翻译分类,回归,排序部分,本文重点翻译分类部分、classxgboost.XGBClassifier(*, objective=‘binary:logistic’, use_label_encoder=False, **kwargs)Bases: xgboost.sklearn.XGBModel, sklearn.base.C原创 2022-05-22 19:16:31 · 1407 阅读 · 0 评论 -
python提升算法2_XGBOOST_docs_Python使用英译汉
1 Python Package Introduction由于xgboost使用文档内容较多,时间有限,此文进队文档中的Python Package Introduction(Python软件包简介)介绍给出翻译,文档网址https://xgboost.readthedocs.io/en/stable/python/python_intro.html#install-xgboost[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Yv5vVPOM-1652526423857)原创 2022-05-14 19:17:00 · 397 阅读 · 0 评论 -
python提升算法1_GBDT到XGBOOST
python提升算法1_GBDT到XGBOOST1 随机森林的启发随机森林构建的子树(决策树)分别采样建立,每个样本的权重值是一样的,属性随机,子树之间相对独立。针对随机森林,我们提取以下问题:1).假定已经训练得到了m-1颗决策树,是否可以通过现有样本和已经构建子树表现的信息,对第m颗子树的构建进行改造呢?2).各个子树组成随机森林后,最后的投票过程每个子树的权重一样,是否可以根据各个子树的表现情况进行调整呢?3).模型训练时,对于容易分类正确的样本与不容易分类正确的样本是否可以调节权重?2.原创 2022-05-14 19:12:33 · 390 阅读 · 0 评论