Java 类名:com.alibaba.alink.operator.stream.regression.CartRegPredictStreamOp
Python 类名:CartRegPredictStreamOp

功能介绍

  • cart回归是一种常用的树模型
  • cart回归组件支持稠密数据格式
  • 支持带样本权重的训练

参数说明

| 名称 | 中文名称 | 描述 | 类型 | 是否必须? | 取值范围 | 默认值 | | —- | —- | —- | —- | —- | —- | —- |

| predictionCol | 预测结果列名 | 预测结果列名 | String | ✓ | | |

| modelFilePath | 模型的文件路径 | 模型的文件路径 | String | | | null |

| reservedCols | 算法保留列名 | 算法保留列 | String[] | | | null |

| numThreads | 组件多线程线程个数 | 组件多线程线程个数 | Integer | | | 1 |

| modelStreamFilePath | 模型流的文件路径 | 模型流的文件路径 | String | | | null |

| modelStreamScanInterval | 扫描模型路径的时间间隔 | 描模型路径的时间间隔,单位秒 | Integer | | | 10 |

| modelStreamStartTime | 模型流的起始时间 | 模型流的起始时间。默认从当前时刻开始读。使用yyyy-mm-dd hh:mm:ss.fffffffff格式,详见Timestamp.valueOf(String s) | String | | | null |

代码示例

Python 代码

  1. from pyalink.alink import *
  2. import pandas as pd
  3. useLocalEnv(1)
  4. df = pd.DataFrame([
  5. [1.0, "A", 0, 0, 0],
  6. [2.0, "B", 1, 1, 0],
  7. [3.0, "C", 2, 2, 1],
  8. [4.0, "D", 3, 3, 1]
  9. ])
  10. batchSource = BatchOperator.fromDataframe(
  11. df, schemaStr='f0 double, f1 string, f2 int, f3 int, label int')
  12. streamSource = StreamOperator.fromDataframe(
  13. df, schemaStr='f0 double, f1 string, f2 int, f3 int, label int')
  14. trainOp = CartRegTrainBatchOp()\
  15. .setLabelCol('label')\
  16. .setFeatureCols(['f0', 'f1', 'f2', 'f3'])\
  17. .linkFrom(batchSource)
  18. predictBatchOp = CartRegPredictBatchOp()\
  19. .setPredictionCol('pred')
  20. predictStreamOp = CartRegPredictStreamOp(trainOp)\
  21. .setPredictionCol('pred')
  22. predictBatchOp.linkFrom(trainOp, batchSource).print()
  23. predictStreamOp.linkFrom(streamSource).print()
  24. StreamOperator.execute()

Java 代码

  1. import org.apache.flink.types.Row;
  2. import com.alibaba.alink.operator.batch.BatchOperator;
  3. import com.alibaba.alink.operator.batch.regression.CartRegPredictBatchOp;
  4. import com.alibaba.alink.operator.batch.regression.CartRegTrainBatchOp;
  5. import com.alibaba.alink.operator.batch.source.MemSourceBatchOp;
  6. import com.alibaba.alink.operator.stream.StreamOperator;
  7. import com.alibaba.alink.operator.stream.regression.CartRegPredictStreamOp;
  8. import com.alibaba.alink.operator.stream.source.MemSourceStreamOp;
  9. import org.junit.Test;
  10. import java.util.Arrays;
  11. import java.util.List;
  12. public class CartRegPredictStreamOpTest {
  13. @Test
  14. public void testCartRegPredictStreamOp() throws Exception {
  15. List <Row> df = Arrays.asList(
  16. Row.of(1.0, "A", 0, 0, 0),
  17. Row.of(2.0, "B", 1, 1, 0),
  18. Row.of(3.0, "C", 2, 2, 1),
  19. Row.of(4.0, "D", 3, 3, 1)
  20. );
  21. BatchOperator <?> batchSource = new MemSourceBatchOp(df, "f0 double, f1 string, f2 int, f3 int, label int");
  22. StreamOperator <?> streamSource = new MemSourceStreamOp(df, "f0 double, f1 string, f2 int, f3 int, label int");
  23. BatchOperator <?> trainOp = new CartRegTrainBatchOp()
  24. .setLabelCol("label")
  25. .setFeatureCols("f0", "f1", "f2", "f3")
  26. .linkFrom(batchSource);
  27. BatchOperator <?> predictBatchOp = new CartRegPredictBatchOp()
  28. .setPredictionCol("pred");
  29. StreamOperator <?> predictStreamOp = new CartRegPredictStreamOp(trainOp)
  30. .setPredictionCol("pred");
  31. predictBatchOp.linkFrom(trainOp, batchSource).print();
  32. predictStreamOp.linkFrom(streamSource).print();
  33. StreamOperator.execute();
  34. }
  35. }

运行结果

批预测结果

| f0 | f1 | f2 | f3 | label | pred | | —- | —- | —- | —- | —- | —- |

| 1.0000 | A | 0 | 0 | 0 | 0.0000 |

| 2.0000 | B | 1 | 1 | 0 | 0.0000 |

| 3.0000 | C | 2 | 2 | 1 | 1.0000 |

| 4.0000 | D | 3 | 3 | 1 | 1.0000 |

流预测结果

| f0 | f1 | f2 | f3 | label | pred | | —- | —- | —- | —- | —- | —- |

| 1.0000 | A | 0 | 0 | 0 | 0.0000 |

| 4.0000 | D | 3 | 3 | 1 | 1.0000 |

| 3.0000 | C | 2 | 2 | 1 | 1.0000 |

| 2.0000 | B | 1 | 1 | 0 | 0.0000 |