Java 类名:com.alibaba.alink.operator.batch.regression.RandomForestRegTrainBatchOp
Python 类名:RandomForestRegTrainBatchOp

功能介绍

  • 随机森林回归是一种常用的树模型,由于bagging的过程,可以避免过拟合
  • 随机森林回归组件支持稠密数据格式
  • 支持带样本权重的训练

参数说明

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

| featureCols | 特征列名 | 特征列名,必选 | String[] | ✓ | 所选列类型为 [BOOLEAN, DATE, DOUBLE, FLOAT, INTEGER, LONG, SHORT, STRING, TIME, TIMESTAMP] | |

| labelCol | 标签列名 | 输入表中的标签列名 | String | ✓ | | |

| categoricalCols | 离散特征列名 | 离散特征列名 | String[] | | 所选列类型为 [BOOLEAN, DATE, DOUBLE, FLOAT, INTEGER, LONG, SHORT, STRING, TIME, TIMESTAMP] | |

| createTreeMode | 创建树的模式。 | series表示每个单机创建单颗树,parallel表示并行创建单颗树。 | String | | | “series” |

| maxBins | 连续特征进行分箱的最大个数 | 连续特征进行分箱的最大个数。 | Integer | | | 128 |

| maxDepth | 树的深度限制 | 树的深度限制 | Integer | | | 2147483647 |

| maxLeaves | 叶节点的最多个数 | 叶节点的最多个数 | Integer | | | 2147483647 |

| maxMemoryInMB | 树模型中用来加和统计量的最大内存使用数 | 树模型中用来加和统计量的最大内存使用数 | Integer | | | 64 |

| minInfoGain | 分裂的最小增益 | 分裂的最小增益 | Double | | | 0.0 |

| minSampleRatioPerChild | 子节点占父节点的最小样本比例 | 子节点占父节点的最小样本比例 | Double | | | 0.0 |

| minSamplesPerLeaf | 叶节点的最小样本个数 | 叶节点的最小样本个数 | Integer | | | 2 |

| numSubsetFeatures | 每棵树的特征采样数目 | 每棵树的特征采样数目 | Integer | | | 2147483647 |

| numTrees | 模型中树的棵数 | 模型中树的棵数 | Integer | | [1, +inf) | 10 |

| seed | 采样种子 | 采样种子 | Long | | | 0 |

| subsamplingRatio | 每棵树的样本采样比例或采样行数 | 每棵树的样本采样比例或采样行数,行数上限100w行 | Double | | | 100000.0 |

| weightCol | 权重列名 | 权重列对应的列名 | String | | 所选列类型为 [BIGDECIMAL, BIGINTEGER, BYTE, DOUBLE, FLOAT, INTEGER, LONG, SHORT] | 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(df, schemaStr=' f0 double, f1 string, f2 int, f3 int, label int')
  11. streamSource = StreamOperator.fromDataframe(df, schemaStr=' f0 double, f1 string, f2 int, f3 int, label int')
  12. trainOp = RandomForestRegTrainBatchOp()\
  13. .setLabelCol('label')\
  14. .setFeatureCols(['f0', 'f1', 'f2', 'f3'])\
  15. .linkFrom(batchSource)
  16. RandomForestRegPredictBatchOp()\
  17. .setPredictionCol('pred')\
  18. .linkFrom(trainOp, batchSource).print()
  19. RandomForestRegPredictStreamOp(trainOp)\
  20. .setPredictionCol('pred')\
  21. .linkFrom(streamSource)\
  22. .print()
  23. 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.RandomForestRegPredictBatchOp;
  4. import com.alibaba.alink.operator.batch.regression.RandomForestRegTrainBatchOp;
  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.RandomForestRegPredictStreamOp;
  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 RandomForestRegTrainBatchOpTest {
  13. @Test
  14. public void testRandomForestRegTrainBatchOp() 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 "
  23. + "int");
  24. BatchOperator <?> trainOp = new RandomForestRegTrainBatchOp()
  25. .setLabelCol("label")
  26. .setFeatureCols("f0", "f1", "f2", "f3")
  27. .linkFrom(batchSource);
  28. new RandomForestRegPredictBatchOp()
  29. .setPredictionCol("pred")
  30. .linkFrom(trainOp, batchSource).print();
  31. new RandomForestRegPredictStreamOp(trainOp)
  32. .setPredictionCol("pred")
  33. .linkFrom(streamSource)
  34. .print();
  35. StreamOperator.execute();
  36. }
  37. }

运行结果

批预测结果

| 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 |

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

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