- 决策树预测(stream)
- 功能介绍
- 参数说明
- 脚本示例
- 脚本代码
- 脚本结果
决策树预测(stream)
功能介绍
决策树支持多种树模型
id3,cart,c4.5
支持带样本权重的训练
参数说明
名称 | 中文名称 | 描述 | 类型 | 是否必须? | 默认值 | |
---|---|---|---|---|---|---|
predictionCol | 预测结果列名 | 预测结果列名 | String | ✓ | ||
predictionDetailCol | 预测详细信息列名 | 预测详细信息列名 | String | |||
reservedCols | 算法保留列名 | 算法保留列 | String[] | null |
脚本示例
脚本代码
import numpy as np
import pandas as pd
from pyalink.alink import *
def exampleData():
return np.array([
[1.0, "A", 0, 0, 0],
[2.0, "B", 1, 1, 0],
[3.0, "C", 2, 2, 1],
[4.0, "D", 3, 3, 1]
])
def sourceFrame():
data = exampleData()
return pd.DataFrame({
"f0": data[:, 0],
"f1": data[:, 1],
"f2": data[:, 2],
"f3": data[:, 3],
"label": data[:, 4]
})
def batchSource():
return dataframeToOperator(
sourceFrame(),
schemaStr='''
f0 double,
f1 string,
f2 int,
f3 int,
label int
''',
op_type='batch'
)
def streamSource():
return dataframeToOperator(
sourceFrame(),
schemaStr='''
f0 double,
f1 string,
f2 int,
f3 int,
label int
''',
op_type='stream'
)
trainOp = (
DecisionTreeTrainBatchOp()
.setLabelCol('label')
.setFeatureCols(['f0', 'f1', 'f2', 'f3'])
)
predictBatchOp = (
DecisionTreePredictBatchOp()
.setPredictionDetailCol('pred_detail')
.setPredictionCol('pred')
)
(
predictBatchOp
.linkFrom(
batchSource().link(trainOp),
batchSource()
)
.print()
)
predictStreamOp = (
DecisionTreePredictStreamOp(
batchSource().link(trainOp)
)
.setPredictionDetailCol('pred_detail')
.setPredictionCol('pred')
)
(
predictStreamOp
.linkFrom(
streamSource()
)
.print()
)
StreamOperator.execute()
脚本结果
f0 f1 f2 f3 label pred pred_detail
0 1.0 A 0 0 0 0 {"0":1.0,"1":0.0}
1 3.0 C 2 2 1 1 {"0":0.0,"1":1.0}
2 2.0 B 1 1 0 0 {"0":1.0,"1":0.0}
3 4.0 D 3 3 1 1 {"0":0.0,"1":1.0}