Java 类名:com.alibaba.alink.operator.batch.regression.RidgeRegPredictBatchOp
Python 类名:RidgeRegPredictBatchOp
岭回归(Ridge regression)算法是一种经典的回归算法。岭回归组件支持稀疏、稠密两种数据格式,并且支持带权重样本训练。
岭回归是一种专用于共线性数据分析的有偏估计回归方法,实质上是一种改良的最小二乘估计法,通过放弃最小二乘法的无偏性,以损失部分信息、降低精度为代价获得回归系数更为符合实际、更可靠的回归方法,对病态数据的拟合要强于最小二乘法。
岭回归模型应用领域和线性回归类似,经常被用来做一些数值型变量的预测,类似房价预测、销售量预测、贷款额度预测、温度预测、适度预测等。
[1] Hoerl, Arthur E., and Robert W. Kennard. “Ridge regression: Biased estimation for nonorthogonal problems.” Technometrics 12.1 (1970): 55-67.
[2] https://baike.baidu.com/item/%E5%B2%AD%E5%9B%9E%E5%BD%92/554917?fr=aladdin
名称 | 中文名称 | 描述 | 类型 | 是否必须? | 取值范围 | 默认值 |
---|---|---|---|---|---|---|
predictionCol | 预测结果列名 | 预测结果列名 | String | ✓ | ||
modelFilePath | 模型的文件路径 | 模型的文件路径 | String | null | ||
reservedCols | 算法保留列名 | 算法保留列 | String[] | null | ||
vectorCol | 向量列名 | 向量列对应的列名,默认值是null | String | 所选列类型为 [DENSE_VECTOR, SPARSE_VECTOR, STRING, VECTOR] | null | |
numThreads | 组件多线程线程个数 | 组件多线程线程个数 | Integer | 1 |
from pyalink.alink import * import pandas as pd useLocalEnv(1) df = pd.DataFrame([ [2, 1, 1], [3, 2, 1], [4, 3, 2], [2, 4, 1], [2, 2, 1], [4, 3, 2], [1, 2, 1], [5, 3, 3]]) batchData = BatchOperator.fromDataframe(df, schemaStr='f0 int, f1 int, label int') ridge = RidgeRegTrainBatchOp()\ .setLambda(0.1)\ .setFeatureCols(["f0","f1"])\ .setLabelCol("label") model = batchData.link(ridge) predictor = RidgeRegPredictBatchOp()\ .setPredictionCol("pred") predictor.linkFrom(model, batchData).print()
import org.apache.flink.types.Row; import com.alibaba.alink.operator.batch.BatchOperator; import com.alibaba.alink.operator.batch.regression.RidgeRegPredictBatchOp; import com.alibaba.alink.operator.batch.regression.RidgeRegTrainBatchOp; import com.alibaba.alink.operator.batch.source.MemSourceBatchOp; import org.junit.Test; import java.util.Arrays; import java.util.List; public class RidgeRegPredictBatchOpTest { @Test public void testRidgeRegPredictBatchOp() throws Exception { List <Row> df = Arrays.asList( Row.of(2, 1, 1), Row.of(3, 2, 1), Row.of(4, 3, 2), Row.of(2, 4, 1), Row.of(2, 2, 1), Row.of(4, 3, 2), Row.of(1, 2, 1) ); BatchOperator <?> batchData = new MemSourceBatchOp(df, "f0 int, f1 int, label int"); BatchOperator <?> ridge = new RidgeRegTrainBatchOp() .setLambda(0.1) .setFeatureCols("f0", "f1") .setLabelCol("label"); BatchOperator model = batchData.link(ridge); BatchOperator <?> predictor = new RidgeRegPredictBatchOp() .setPredictionCol("pred"); predictor.linkFrom(model, batchData).print(); } }
f0 | f1 | label | pred |
---|---|---|---|
2 | 1 | 1 | 0.830304 |
3 | 2 | 1 | 1.377312 |
4 | 3 | 2 | 1.924320 |
2 | 4 | 1 | 1.159119 |
2 | 2 | 1 | 0.939909 |
4 | 3 | 2 | 1.924320 |
1 | 2 | 1 | 0.502506 |
5 | 3 | 3 | 2.361724 |