gpt4 book ai didi

python - 如何在sklearn中使用自定义评分函数 cross_val_score

转载 作者:行者123 更新时间:2023-11-30 09:05:12 25 4
gpt4 key购买 nike

我想在 cross_val_score 函数中使用调整后的 Rsquare。我尝试使用 make_scorer 函数,但它不起作用。

from sklearn.cross_validation import train_test_split
X_tr, X_test, y_tr, y_test = train_test_split(X, Y, test_size=0.2, random_state=0)

regression = LinearRegression(normalize=True)
from sklearn.metrics.scorer import make_scorer
from sklearn.metrics import r2_score
def adjusted_rsquare(y_true,y_pred):
adjusted_r_squared = 1 - (1-r2_score(y_true, y_pred))*(len(y_pred)-1)/(len(y_pred)-X_test.shape[1]-1)
return adjusted_r_squared

my_scorer = make_scorer(adjusted_rsquare, greater_is_better=True)
score = np.mean(cross_val_score(regression, X_tr, y_tr, scoring=my_scorer,cv=crossvalidation, n_jobs=1))

它抛出一个错误:

IndexError: positional indexers are out-of-bounds

有什么方法可以使用我的自定义函数,即; 调整_rsquarecross_val_score

最佳答案

adjusted_rsquare(X,Y) 是一个数字,它不是一个函数,只需像这样创建记分器:

my_scorer = make_scorer(adjusted_rsquare, greater_is_better=True)

您还需要change the score function :

def adjusted_rsquare(y_true, y_pred, **kwargs):

这就是您应该使用的原型(prototype)。您将实际结果与应有的结果进行比较。

关于python - 如何在sklearn中使用自定义评分函数 cross_val_score,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53850812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com