- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试调整梯度增强回归器的参数。
首先,仅考虑 n_estimators,使用 staged_predict
方法获得最佳 n_estimators,我得到 RMSE = 4.84 。
X_train, X_test, y_train, y_test = train_test_split(X,y,test_size=0.3, random_state=0)
gbr_onehot = GradientBoostingRegressor(
n_estimators = 1000,
learning_rate = 0.1,
random_state = 214
)
model = gbr_onehot.fit(X_train, y_train)
errors = [mean_squared_error(y_test, y_pred)
for y_pred in gbr_onehot.staged_predict(X_test)]
best_num_trees =np.argmin(errors)
GBR_best_num_trees_onehot = GradientBoostingRegressor(
n_estimators =best_num_trees,
learning_rate = 0.1,
random_state = 214
)
best_num_tree_model = GBR_best_num_trees_onehot.fit(X_train, y_train)
y_pred = GBR_best_num_trees_onehot.predict(X_test)
print(best_num_trees)
print(f'RMSE with label encoding (best_num_trees) = {np.sqrt(metrics.mean_squared_error(y_test, y_pred))}')
>>> 596
>>> RMSE with label encoding (best_num_trees) = 4.849497587420823
或者,这次我使用 GridsearchCV 调整了每棵树的 n_estimator、learning_rate 和 max_depth。
首先,调整n_estimator和learning_rate:
def rmse(actual, predict):
predict = np.array(predict)
actual = np.array(actual)
distance = predict - actual
square_distance = distance ** 2
mean_square_distance = square_distance.mean()
score = np.sqrt(mean_square_distance)
return score
rmse_score = make_scorer(rmse, greater_is_better=False)
p_test = {
'learning_rate': [0.15,0.1,0.05,0.01,0.005,0.001],
'n_estimators' : [100,250,500,750,1000,1250,1500,1750]
}
tuning = GridSearchCV(estimator=GradientBoostingRegressor(max_depth=3,
min_samples_split=2,
min_samples_leaf=1,
subsample=1,
max_features='sqrt',
random_state=214),
param_grid = p_test,
scoring = rmse_score,
n_jobs = 4,
iid=False,
cv=5)
tuning.fit(X_train, y_train)
然后使用来自tuning.best_params_
p_test_2 = {'max_depth':[2,3,4,5,6,7]}
tuning = GridSearchCV(estimator = GradientBoostingRegressor(learning_rate=0.05,
n_estimators=1000,
min_samples_split=2,
min_samples_leaf=1,
max_features='sqrt',
random_state=214),
param_grid = p_test_2,
scoring = rmse_score,
n_jobs=4,
iid=False,
cv=5)
tuning.fit(X_train, y_train)
用于获取最佳max_深度参数。
插入从上面收到的参数并进行测试后
model = GradientBoostingRegressor(
learning_rate=0.1,
n_estimators=1000,
min_samples_split=2,
min_samples_leaf=1,
max_features='sqrt',
random_state=214,
max_depth=3
)
model.fit(X_train, y_train)
y_pred = model.predict(X_test)
print(f'RMSE = {np.sqrt(metrics.mean_squared_error(y_test, y_pred))}')
>>> RMSE = 4.876534569535954
它的 RMSE 比我仅使用 staged_predict
得到的要高。为什么会这样呢?另外,当我打印(tuning.best_score_)时,为什么它返回负值?
最佳答案
呵呵,就这么简单。当您在训练数据上获得最佳拟合参数时,您尝试比较测试数据的 RMSE 指标。它必须是具有不同质量值的不同数据集。如果您根据训练数据计算 RMSE - 您应该获得具有最佳拟合参数的更好质量的回归器。
[更新]
这里的模型复杂度对应于您的一些调整参数(最大深度等),预测误差类似于您的 RMSE 测量以及根据您的训练和测试数据集的两条曲线。因此,当您使用 GridSearchCV 搜索最适合的参数时 - 您正在沿着训练曲线向下移动并在高位置附近获得一个 RMSE 值,但这是危险的原因 overfitting但是,测试样本的 RMSE 并不是最佳的。
关于python - 使用 GridsearchCV 调整参数未给出最佳结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59607441/
考虑以下网格搜索: grid = GridSearchCV(clf, parameters, n_jobs =-1, iid=True, cv =5) grid_fit = grid.fit(X_tr
我正在做一个 GridSearchCV,我已经监控了核心的百分比,并且我看到当我运行一个简单的神经网络时,4 个核心具有相同的百分比,但是当网格搜索 cv (n_jobs = 1) 开始时在情节的线条
我在带有 RBF 内核的 SVM 上进行了网格搜索 + 交叉验证,以使用类 GridShearchCV 找到参数 C 和 gamma 的最佳值。现在我想以表格格式获得结果,例如 C/gamma 1e-
我正在尝试为 sklearn 的 GridSearchCV 结果生成热图。我喜欢的东西sklearn-evaluation是因为生成热图真的很容易。但是,我遇到了一个问题。当我将参数设为 None 时
我想提高这个的参数GridSearchCV 对于 随机森林回归器 . def Grid_Search_CV_RFR(X_train, y_train): from sklearn.model_
我正在尝试设置 GridSearchCV 的实例来确定哪一组超参数将产生最低的平均绝对误差。 This scikit documentation表示分数指标可以在创建 GridSearchCV 时传递
当使用网格搜索在 python 中使用此函数 GridSearchCV() 进行分类器时,假设我们有一个参数区间来调整形式 1 到 100,我们如何能够指定它(1:100 不起作用)? p> 最佳答案
我是机器学习的新手,并且一直坚持这个。 当我尝试在线性模型中实现多项式回归时,例如使用多个次数的多项式范围(1,10)并获得不同的 MSE。我实际上使用 GridsearchCV 方法来查找多项式的最
我想在一系列 alpha(拉普拉斯平滑参数)上使用 GridSearchCV 来检查哪个为伯努利朴素贝叶斯模型提供了最佳准确度。 def binarize_pixels(data, threshold
使用 sklearn 在随机森林分类器上运行网格搜索。这个运行的时间比我想象的要长,我正在尝试估计这个过程还剩多少时间。我认为它的总拟合次数是 3*3*3*3*5 = 405。 clf = Rando
我正在尝试使用网格搜索找出要在 PCA 中使用的 n_components 的最佳值: from sklearn.decomposition import PCA from sklearn.grid_
我正在尝试 GridsearchCV 但我希望在 param grid 中有一些异常(exception)。这是我的网格搜索代码: from sklearn.model_selection impor
我很难找出 GridSearchCV 中的参数 return_train_score。来自docs : return_train_score : boolean, optional If
我必须进行多类分类 (3)。我使用 GridSearchCV 为我的分类器搜索最佳参数。 但我有一个不平衡的 x_train(和 x_test):0 有 3079 个实例,1 有 12 个实例,3 有
有没有办法访问在 GridSearchCV 过程中计算的预测值? 我希望能够根据实际值(来自测试/验证集)绘制预测的 y 值。 网格搜索完成后,我可以使用 将其与其他一些数据相匹配 ypred =
我正在使用GridsearchCV来调整超参数,现在我想在训练和验证步骤中进行最小-最大Normalization(StandardScaler())。但我认为我不能做到这一点。 问题是: 如果我对整
我正在使用 scikit learn 进行多标签分类。我使用 RandomForestClassifier 作为基本估计器。我想使用 GridSearchCV 优化每个标签的参数。目前我正在按以下方式
好的,我只想说,我对 SciKit-Learn 和数据科学完全陌生。但这是问题所在,也是我目前对该问题的研究。代码在底部。 总结 我正尝试使用 BernoulliRBM 进行类型识别(例如数字),并尝
我正在使用 GridSearchCV ,并且在每次迭代之后,我想将 clf.cv_results_ 属性保存到一个文件中(以防进程在中间崩溃)。 我尝试寻找解决方案,但就是想不通。 我们将不胜感激。
我正在尝试自学如何在基本的多层神经网络中对神经元的数量进行网格搜索。我正在使用 Python 的 GridSearchCV 和 KerasClasifier 以及 Keras。下面的代码适用于其他数据
我是一名优秀的程序员,十分优秀!