HuberRegressor与Ridge在具有强异常值的数据集上#

将Ridge和HuberRegressor与具有异常值的数据集进行匹配。

该示例表明,山脊的预测受到数据集中存在的异常值的强烈影响。休伯回归量受异常值的影响较小,因为模型使用这些异常值的线性损失。随着胡伯回归量的参数RST的增加,决策函数接近岭的决策函数。

Comparison of HuberRegressor vs Ridge
# Authors: The scikit-learn developers
# SPDX-License-Identifier: BSD-3-Clause

import matplotlib.pyplot as plt
import numpy as np

from sklearn.datasets import make_regression
from sklearn.linear_model import HuberRegressor, Ridge

# Generate toy data.
rng = np.random.RandomState(0)
X, y = make_regression(
    n_samples=20, n_features=1, random_state=0, noise=4.0, bias=100.0
)

# Add four strong outliers to the dataset.
X_outliers = rng.normal(0, 0.5, size=(4, 1))
y_outliers = rng.normal(0, 2.0, size=4)
X_outliers[:2, :] += X.max() + X.mean() / 4.0
X_outliers[2:, :] += X.min() - X.mean() / 4.0
y_outliers[:2] += y.min() - y.mean() / 4.0
y_outliers[2:] += y.max() + y.mean() / 4.0
X = np.vstack((X, X_outliers))
y = np.concatenate((y, y_outliers))
plt.plot(X, y, "b.")

# Fit the huber regressor over a series of epsilon values.
colors = ["r-", "b-", "y-", "m-"]

x = np.linspace(X.min(), X.max(), 7)
epsilon_values = [1, 1.5, 1.75, 1.9]
for k, epsilon in enumerate(epsilon_values):
    huber = HuberRegressor(alpha=0.0, epsilon=epsilon)
    huber.fit(X, y)
    coef_ = huber.coef_ * x + huber.intercept_
    plt.plot(x, coef_, colors[k], label="huber loss, %s" % epsilon)

# Fit a ridge regressor to compare it to huber regressor.
ridge = Ridge(alpha=0.0, random_state=0)
ridge.fit(X, y)
coef_ridge = ridge.coef_
coef_ = ridge.coef_ * x + ridge.intercept_
plt.plot(x, coef_, "g-", label="ridge regression")

plt.title("Comparison of HuberRegressor vs Ridge")
plt.xlabel("X")
plt.ylabel("y")
plt.legend(loc=0)
plt.show()

Total running time of the script: (0分0.176秒)

相关实例

绘制岭系数作为正规化的函数

Plot Ridge coefficients as a function of the regularization

普通最小二乘和岭回归

Ordinary Least Squares and Ridge Regression

核岭回归与高斯过程回归的比较

Comparison of kernel ridge and Gaussian process regression

特征聚集与单变量选择

Feature agglomeration vs. univariate selection

Gallery generated by Sphinx-Gallery <https://sphinx-gallery.github.io> _