mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +00:00
19 lines
992 B
Markdown
19 lines
992 B
Markdown
|
---
|
||
|
toc_priority: 64
|
||
|
toc_title: Machine Learning Functions
|
||
|
---
|
||
|
|
||
|
# Machine Learning Functions {#machine-learning-functions}
|
||
|
|
||
|
## evalMLMethod (prediction) {#machine_learning_methods-evalmlmethod}
|
||
|
|
||
|
Prediction using fitted regression models uses `evalMLMethod` function. See link in `linearRegression`.
|
||
|
|
||
|
### Stochastic Linear Regression {#stochastic-linear-regression}
|
||
|
|
||
|
The [stochasticLinearRegression](../../sql_reference/aggregate_functions/reference.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.
|
||
|
|
||
|
### Stochastic Logistic Regression {#stochastic-logistic-regression}
|
||
|
|
||
|
The [stochasticLogisticRegression](../../sql_reference/aggregate_functions/reference.md#agg_functions-stochasticlogisticregression) aggregate function implements stochastic gradient descent method for binary classification problem. Uses `evalMLMethod` to predict on new data.
|