Skip to content

Commit

Permalink
[DOCS] Adds huber and msle metrics to Evaluate API example calls (#63414
Browse files Browse the repository at this point in the history
)
  • Loading branch information
szabosteve committed Oct 8, 2020
1 parent 85cd8e4 commit fe67d05
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,9 @@ POST _ml/data_frame/_evaluate
"predicted_field": "ml.price_prediction", <4>
"metrics": {
"r_squared": {},
"mse": {}
"mse": {},
"msle": {"offset": 10},
"huber": {"delta": 1.5}
}
}
}
Expand Down Expand Up @@ -352,7 +354,9 @@ POST _ml/data_frame/_evaluate
"predicted_field": "ml.G3_prediction", <3>
"metrics": {
"r_squared": {},
"mse": {}
"mse": {},
"msle": {},
"huber": {}
}
}
}
Expand Down Expand Up @@ -391,7 +395,9 @@ POST _ml/data_frame/_evaluate
"predicted_field": "ml.G3_prediction", <3>
"metrics": {
"r_squared": {},
"mse": {}
"mse": {},
"msle": {},
"huber": {}
}
}
}
Expand Down

0 comments on commit fe67d05

Please sign in to comment.