ClickHouse/docs/en/query_language/functions/machine_learning_functions.md
Ivan Blinkov 5abe3ac3f1
Switch docs to python3 and update MkDocs to 1.1 (#9711)
+ some grammar and css fixes
2020-03-18 16:02:32 +03:00

787 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.