mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
d91c97d15d
* Replace underscores with hyphens * remove temporary code * fix style check * fix collapse
14 lines
1.0 KiB
Markdown
14 lines
1.0 KiB
Markdown
# Функции машинного обучения {#funktsii-mashinnogo-obucheniia}
|
||
|
||
## evalMLMethod (prediction) {#machine_learning_methods-evalmlmethod}
|
||
|
||
Предсказание с использованием подобранных регрессионных моделей.
|
||
|
||
### Stochastic Linear Regression {#stochastic-linear-regression}
|
||
|
||
Агрегатная функция [stochasticLinearRegression](../../sql-reference/functions/machine-learning-functions.md#agg_functions-stochasticlinearregression) реализует стохастический градиентный спуск, использую линейную модель и функцию потерь MSE.
|
||
|
||
### Stochastic Logistic Regression {#stochastic-logistic-regression}
|
||
|
||
Агрегатная функция [stochasticLogisticRegression](../../sql-reference/functions/machine-learning-functions.md#agg_functions-stochasticlogisticregression) реализует стохастический градиентный спуск для задачи бинарной классификации.
|