sklearn.linear_model#
各种线性模型。
User guide. See the 线性模型 section for further details.
The following subsections are only rough guidelines: the same estimator can fall into multiple categories, depending on its parameters.
Linear classifiers#
逻辑回归(也称为logit,MaxEnt)分类器。 |
|
逻辑回归交叉验证(即logit,MaxEnt)分类器。 |
|
被动攻击分类器。 |
|
线性感知机分类器。 |
|
分类器使用岭回归。 |
|
岭分类器,内置交叉验证。 |
|
线性分类器(SVM、逻辑回归等)使用SGD训练。 |
|
解决使用随机梯度下降的线性单类支持向量机。 |
Classical linear regressors#
普通最小二乘线性回归。 |
|
线性最小二乘法与l2正则化。 |
|
岭回归内置交叉验证。 |
|
线性模型通过最小化带有SGD的正则化经验损失进行拟合。 |
Regressors with variable selection#
The following estimators have built-in variable selection fitting procedures, but any estimator using a L1 or elastic-net penalty also performs variable selection: typically SGDRegressor
or SGDClassifier
with an appropriate penalty.
线性回归结合了L1和L2先验作为正则化项。 |
|
弹性网络模型沿正则化路径进行迭代拟合。 |
|
最小角回归模型,又名 LAR。 |
|
交叉验证的最小角回归模型。 |
|
线性模型使用L1先验作为正则化训练(又名Lasso)。 |
|
Lasso线性模型沿着正则化路径进行迭代拟合。 |
|
Lasso模型使用最小角回归进行拟合,即Lars。 |
|
交叉验证的Lasso,使用LARS算法。 |
|
Lasso模型使用Lars并通过BIC或AIC进行模型选择。 |
|
正交匹配追踪模型(OMP)。 |
|
跨验证正交匹配追踪模型(OMP)。 |
Bayesian regressors#
贝叶斯 ARD 回归。 |
|
贝叶斯岭回归。 |
Multi-task linear regressors with variable selection#
These estimators fit multiple regression problems (or tasks) jointly, while inducing sparse coefficients. While the inferred coefficients may differ between the tasks, they are constrained to agree on the features that are selected (non-zero coefficients).
多任务弹性网络模型,使用L1/L2混合范数作为正则化器进行训练。 |
|
多任务L1/L2弹性网络,内置交叉验证。 |
|
多任务Lasso模型,使用L1/L2混合范数作为正则化项进行训练。 |
|
多任务Lasso模型,使用L1/L2混合范数作为正则化项进行训练。 |
Outlier-robust regressors#
Any estimator using the Huber loss would also be robust to outliers, e.g., SGDRegressor
with loss='huber'
.
L2-正则化的线性回归模型,对异常值具有鲁棒性。 |
|
线性回归模型,用于预测条件分位数。 |
|
RANSAC (RANdom SAmple Consensus) 算法。 |
|
Theil-Sen 估计器:稳健的多变量回归模型。 |
Generalized linear models (GLM) for regression#
These models allow for response variables to have error distributions other than a normal distribution.
广义线性模型与Gamma分布。 |
|
广义线性模型与泊松分布。 |
|
广义线性模型与Tweedie分布。 |
Miscellaneous#
被动攻击回归器。 |
|
计算弹性网络路径使用坐标下降法。 |
|
计算最小角回归或Lasso路径使用LARS算法。 |
|
lars_path 在充分统计模式下。 |
|
计算Lasso路径使用坐标下降法。 |
|
正交匹配追踪 (OMP)。 |
|
Gram 正交匹配追踪 (OMP). |
|
解决岭方程通过正规方程法。 |