Machine learning functions
The machine learning plugin provides machine learning functionality as an aggregation function. It enables you to train Support Vector Machine (SVM) based classifiers and regressors for the supervised learning problems.
Note: The machine learning functions are not optimized for distributed processing.The capability to train large data sets is limited by the execution of the final training on a single instance.
Feature vector
features()
Example:
SELECT features ( 1 . 0 , 2 . 0 , 3 . 0 ) AS features ;
---features
-----------------------
{ 0 = 1 . 0 , 1 = 2 . 0 , 2 = 3 . 0 }
Classification
The function to train a classification model looks like as follows:
SELECT
learn_classifier (
species ,
features ( sepal_length , sepal_width , petal_length , petal_width )
) AS model
FROM
iris
# output :
model
-------------------------------------------------
3 c 43 6 c 61 73 73 69 66 69 65 72 28 76 61 72 63
68 61 72 29 3 e
The trained model can not be saved natively, and needs to be passed in the format of a nested query:
SELECT
classify ( features ( 5 . 9 , 3 , 5 . 1 , 1 . 8 ), model ) AS predicted_label
FROM (
SELECT
learn_classifier ( species , features ( sepal_length , sepal_width , petal_length , petal_width )) AS model
FROM
iris
) t
# output :
predicted_label
-----------------
Iris - virginica
Regression
The following code shows the creation of the model predicting sepal_length from the other 3 features:
SELECT
learn_regressor ( sepal_length , features ( sepal_width , petal_length , petal_width )) AS model
FROM
iris
# or
SELECT
regress ( features ( 3 , 5 . 1 , 1 . 8 ), model ) AS predicted_target
FROM (
SELECT
learn_regressor ( sepal_length , features ( sepal_width , petal_length , petal_width )) AS model
FROM iris
) t ;
# output :
predicted_target
-------------------
6 . 407376822560477
Machine learning functions
features()
learn_classifier()
learn_libsvm_classifier()
classify()
learn_regressor()
leearn_libsvm_regressor()
regress()