ClickHouse/docs/zh/query_language/functions/machine_learning_functions.md

16 lines
868 B
Markdown
Raw Normal View History

# 机器学习函数 {#ji-qi-xue-xi-han-shu}
2019-06-05 10:04:00 +00:00
## evalMLMethod (prediction) {#machine-learning-methods-evalmlmethod}
2019-06-05 10:04:00 +00:00
使用拟合回归模型的预测请使用`evalMLMethod`函数。 请参阅`linearRegression`中的链接。
## Stochastic Linear Regression {#stochastic-linear-regression}
2019-06-05 10:04:00 +00:00
`stochasticLinearRegression`聚合函数使用线性模型和MSE损失函数实现随机梯度下降法。 使用`evalMLMethod`来预测新数据。
请参阅示例和注释[此处](../agg_functions/reference.md#agg_functions-stochasticlinearregression)。
2019-06-05 10:04:00 +00:00
## Stochastic Logistic Regression {#stochastic-logistic-regression}
2019-06-05 10:04:00 +00:00
`stochasticLogisticRegression`聚合函数实现了二元分类问题的随机梯度下降法。 使用`evalMLMethod`来预测新数据。
请参阅示例和注释[此处](../agg_functions/reference.md#agg_functions-stochasticlogisticregression)。