mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 20:53:27 +00:00
18 lines
1018 B
Markdown
18 lines
1018 B
Markdown
---
|
|
toc_priority: 64
|
|
toc_title: Machine Learning
|
|
---
|
|
|
|
# Machine Learning Functions {#machine-learning-functions}
|
|
|
|
## evalMLMethod {#machine_learning_methods-evalmlmethod}
|
|
|
|
Prediction using fitted regression models uses `evalMLMethod` function. See link in `linearRegression`.
|
|
|
|
## stochasticLinearRegression {#stochastic-linear-regression}
|
|
|
|
The [stochasticLinearRegression](../../sql-reference/aggregate-functions/reference/stochasticlinearregression.md#agg_functions-stochasticlinearregression) aggregate function implements stochastic gradient descent method using linear model and MSE loss function. Uses `evalMLMethod` to predict on new data.
|
|
|
|
## stochasticLogisticRegression {#stochastic-logistic-regression}
|
|
|
|
The [stochasticLogisticRegression](../../sql-reference/aggregate-functions/reference/stochasticlogisticregression.md#agg_functions-stochasticlogisticregression) aggregate function implements stochastic gradient descent method for binary classification problem. Uses `evalMLMethod` to predict on new data. |