mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
746 B
746 B
Machine learning methods
evalMLMethod (prediction)
Prediction using fitted regression models uses evalMLMethod
function. See link in linearRegression
.
Stochastic Linear Regression
stochasticLinearRegression
aggregate function implements stochastic gradient descent method using linear model and MSE loss function. Uses evalMLMethod
to predict on new data.
See examples and notes here.
Stochastic Logistic Regression
stochasticLogisticRegression
aggregate function implements stochastic gradient descent method for binary classification problem. Uses evalMLMethod
to predict on new data.
See examples and notes here.