ClickHouse/docs/en/sql-reference/functions/machine-learning-functions.md
2023-04-19 17:05:55 +00:00

952 B

slug sidebar_position sidebar_label
/en/sql-reference/functions/machine-learning-functions 115 Machine Learning

Machine Learning Functions

evalMLMethod

Prediction using fitted regression models uses evalMLMethod function. See link in linearRegression.

stochasticLinearRegression

The stochasticLinearRegression aggregate function implements stochastic gradient descent method using linear model and MSE loss function. Uses evalMLMethod to predict on new data.

stochasticLogisticRegression

The stochasticLogisticRegression aggregate function implements stochastic gradient descent method for binary classification problem. Uses evalMLMethod to predict on new data.