ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

python – GridSearchCV给出ValueError:DecisionTreeRegressor不支持continuous

2019-08-28 06:55:43  阅读:355  来源: 互联网

标签:decision-tree grid-search python scikit-learn machine-learning


我正在学习ML并为波士顿房价预测做任务.我有以下代码:

from sklearn.metrics import fbeta_score, make_scorer
from sklearn.model_selection import GridSearchCV

def fit_model(X, y):
    """ Tunes a decision tree regressor model using GridSearchCV on the input data X 
        and target labels y and returns this optimal model. """

    # Create a decision tree regressor object
    regressor = DecisionTreeRegressor()

    # Set up the parameters we wish to tune
    parameters = {'max_depth':(1,2,3,4,5,6,7,8,9,10)}

    # Make an appropriate scoring function
    scoring_function = make_scorer(fbeta_score, beta=2)

    # Make the GridSearchCV object
    reg = GridSearchCV(regressor, param_grid=parameters, scoring=scoring_function)

    print reg
    # Fit the learner to the data to obtain the optimal model with tuned parameters
    reg.fit(X, y)

    # Return the optimal model
    return reg.best_estimator_

reg = fit_model(housing_features, housing_prices)

这给了我ValueError:reg.fit(X,y)行不支持连续,我不明白为什么.这是什么原因,我在这里错过了什么?

解决方法:

那是因为这条线:

scoring_function = make_scorer(fbeta_score, beta=2)

这将得分指标设置为fbeta,这是分类任务!

你在这里做回归,如下所示:

regressor = DecisionTreeRegressor()

the docs开始

enter image description here

标签:decision-tree,grid-search,python,scikit-learn,machine-learning
来源: https://codeday.me/bug/20190828/1749364.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有