mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
57751773cd
Naming consistency
786 B
786 B
Machine learning functions
evalMLMethod (prediction)
Prediction using fitted regression models uses evalMLMethod
function. See link in linearRegression
.
Stochastic Linear Regression
The 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
The stochasticLogisticRegression aggregate function implements stochastic gradient descent method for binary classification problem. Uses evalMLMethod
to predict on new data.