Evaluate data frame analytics API
Evaluates the data frame analytics for an annotated index.
This functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.
Request
POST _ml/data_frame/_evaluate
Prerequisites
If the Elasticsearch security features are enabled, you must have the following privileges:
- cluster:
monitor_ml
For more information, see Security privileges and Machine learning security privileges.
Description
The API packages together commonly used evaluation metrics for various types of machine learning features. This has been designed for use on indexes created by data frame analytics. Evaluation requires both a ground truth field and an analytics result field to be present.
Request body
evaluation
(Required, object) Defines the type of evaluation you want to perform. See Data frame analytics evaluation resources.
Available evaluation types:
binary_soft_classification
regression
classification
index
(Required, object) Defines the index
in which the evaluation will be performed.
query
(Optional, object) A query clause that retrieves a subset of data from the source index. See Query DSL.
Data frame analytics evaluation resources
Binary soft classification evaluation objects
Binary soft classification evaluates the results of an analysis which outputs the probability that each document belongs to a certain class. For example, in the context of outlier detection, the analysis outputs the probability whether each document is an outlier.
actual_field
(Required, string) The field of the index
which contains the ground truth
. The data type of this field can be boolean or integer. If the data type is integer, the value has to be either 0
(false) or 1
(true).
predicted_probability_field
(Required, string) The field of the index
that defines the probability of whether the item belongs to the class in question or not. It’s the field that contains the results of the analysis.
metrics
(Optional, object) Specifies the metrics that are used for the evaluation. Available metrics:
auc_roc
(Optional, object) The AUC ROC (area under the curve of the receiver operating characteristic) score and optionally the curve. Default value is {“includes_curve”: false}.
confusion_matrix
(Optional, object) Set the different thresholds of the outlier score at where the metrics (
tp
- true positive,fp
- false positive,tn
- true negative,fn
- false negative) are calculated. Default value is {“at”: [0.25, 0.50, 0.75]}.precision
(Optional, object) Set the different thresholds of the outlier score at where the metric is calculated. Default value is {“at”: [0.25, 0.50, 0.75]}.
recall
(Optional, object) Set the different thresholds of the outlier score at where the metric is calculated. Default value is {“at”: [0.25, 0.50, 0.75]}.
Regression evaluation objects
Regression evaluation evaluates the results of a regression analysis which outputs a prediction of values.
actual_field
(Required, string) The field of the index
which contains the ground truth
. The data type of this field must be numerical.
predicted_field
(Required, string) The field in the index
that contains the predicted value, in other words the results of the regression analysis.
metrics
(Optional, object) Specifies the metrics that are used for the evaluation. Available metrics:
mse
(Optional, object) Average squared difference between the predicted values and the actual (
ground truth
) value. For more information, read this wiki article.msle
(Optional, object) Average squared difference between the logarithm of the predicted values and the logarithm of the actual (
ground truth
) value.huber
(Optional, object) Pseudo Huber loss function. For more information, read this wiki article.
r_squared
(Optional, object) Proportion of the variance in the dependent variable that is predictable from the independent variables. For more information, read this wiki article.
Classification evaluation objects
Classification evaluation evaluates the results of a classification analysis which outputs a prediction that identifies to which of the classes each document belongs.
actual_field
(Required, string) The field of the index
which contains the ground truth
. The data type of this field must be categorical.
predicted_field
(Required, string) The field in the index
that contains the predicted value, in other words the results of the classification analysis.
metrics
(Optional, object) Specifies the metrics that are used for the evaluation. Available metrics:
accuracy
(Optional, object) Accuracy of predictions (per-class and overall).
multiclass_confusion_matrix
(Optional, object) Multiclass confusion matrix.
precision
(Optional, object) Precision of predictions (per-class and average).
recall
(Optional, object) Recall of predictions (per-class and average).
Examples
Binary soft classification
POST _ml/data_frame/_evaluate
{
"index": "my_analytics_dest_index",
"evaluation": {
"binary_soft_classification": {
"actual_field": "is_outlier",
"predicted_probability_field": "ml.outlier_score"
}
}
}
The API returns the following results:
{
"binary_soft_classification": {
"auc_roc": {
"score": 0.92584757746414444
},
"confusion_matrix": {
"0.25": {
"tp": 5,
"fp": 9,
"tn": 204,
"fn": 5
},
"0.5": {
"tp": 1,
"fp": 5,
"tn": 208,
"fn": 9
},
"0.75": {
"tp": 0,
"fp": 4,
"tn": 209,
"fn": 10
}
},
"precision": {
"0.25": 0.35714285714285715,
"0.5": 0.16666666666666666,
"0.75": 0
},
"recall": {
"0.25": 0.5,
"0.5": 0.1,
"0.75": 0
}
}
}
Regression
POST _ml/data_frame/_evaluate
{
"index": "house_price_predictions",
"query": {
"bool": {
"filter": [
{ "term": { "ml.is_training": false } }
]
}
},
"evaluation": {
"regression": {
"actual_field": "price",
"predicted_field": "ml.price_prediction",
"metrics": {
"r_squared": {},
"mse": {}
}
}
}
}
The output destination index from a data frame analytics regression analysis. | |
In this example, a test/train split ( | |
The ground truth value for the actual house price. This is required in order to evaluate results. | |
The predicted value for house price calculated by the regression analysis. |
The following example calculates the training error:
POST _ml/data_frame/_evaluate
{
"index": "student_performance_mathematics_reg",
"query": {
"term": {
"ml.is_training": {
"value": true
}
}
},
"evaluation": {
"regression": {
"actual_field": "G3",
"predicted_field": "ml.G3_prediction",
"metrics": {
"r_squared": {},
"mse": {}
}
}
}
}
In this example, a test/train split ( | |
The field that contains the ground truth value for the actual student performance. This is required in order to evaluate results. | |
The field that contains the predicted value for student performance calculated by the regression analysis. |
The next example calculates the testing error. The only difference compared with the previous example is that ml.is_training
is set to false
this time, so the query excludes the train split from the evaluation.
POST _ml/data_frame/_evaluate
{
"index": "student_performance_mathematics_reg",
"query": {
"term": {
"ml.is_training": {
"value": false
}
}
},
"evaluation": {
"regression": {
"actual_field": "G3",
"predicted_field": "ml.G3_prediction",
"metrics": {
"r_squared": {},
"mse": {}
}
}
}
}
In this example, a test/train split ( | |
The field that contains the ground truth value for the actual student performance. This is required in order to evaluate results. | |
The field that contains the predicted value for student performance calculated by the regression analysis. |
Classification
POST _ml/data_frame/_evaluate
{
"index": "animal_classification",
"evaluation": {
"classification": {
"actual_field": "animal_class",
"predicted_field": "ml.animal_class_prediction",
"metrics": {
"multiclass_confusion_matrix" : {}
}
}
}
}
The evaluation type. | |
The field that contains the ground truth value for the actual animal classification. This is required in order to evaluate results. | |
The field that contains the predicted value for animal classification by the classification analysis. | |
Specifies the metric for the evaluation. |
The API returns the following result:
{
"classification" : {
"multiclass_confusion_matrix" : {
"confusion_matrix" : [
{
"actual_class" : "cat",
"actual_class_doc_count" : 12,
"predicted_classes" : [
{
"predicted_class" : "cat",
"count" : 12
},
{
"predicted_class" : "dog",
"count" : 0
}
],
"other_predicted_class_doc_count" : 0
},
{
"actual_class" : "dog",
"actual_class_doc_count" : 11,
"predicted_classes" : [
{
"predicted_class" : "dog",
"count" : 7
},
{
"predicted_class" : "cat",
"count" : 4
}
],
"other_predicted_class_doc_count" : 0
}
],
"other_actual_class_count" : 0
}
}
}
The name of the actual class that the analysis tried to predict. | |
The number of documents in the index that belong to the | |
This object contains the list of the predicted classes and the number of predictions associated with the class. | |
The number of cats in the dataset that are correctly identified as cats. | |
The number of cats in the dataset that are incorrectly classified as dogs. | |
The number of documents that are classified as a class that is not listed as a |