mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 20:53:27 +00:00
16 lines
689 B
Markdown
16 lines
689 B
Markdown
|
# 机器学习函数
|
||
|
|
||
|
## evalMLMethod (prediction)
|
||
|
|
||
|
使用拟合回归模型的预测请使用`evalMLMethod`函数。 请参阅`linearRegression`中的链接。
|
||
|
|
||
|
## Stochastic Linear Regression
|
||
|
|
||
|
`stochasticLinearRegression`聚合函数使用线性模型和MSE损失函数实现随机梯度下降法。 使用`evalMLMethod`来预测新数据。
|
||
|
请参阅示例和注释[此处](../agg_functions/reference.md#linearregression)。
|
||
|
|
||
|
## Stochastic Logistic Regression
|
||
|
|
||
|
`stochasticLogisticRegression`聚合函数实现了二元分类问题的随机梯度下降法。 使用`evalMLMethod`来预测新数据。
|
||
|
请参阅示例和注释[此处](../agg_functions/reference.md#logisticregression)。
|