Metric Importances Object

An object describing the relative importance of each parameter, corresponding to a specific metric. A Pagination of these objects is returned from the Metric Importances List endpoint. This object behaves like a dictionary or mapping in most programming languages. Fields can be accessed using standard notation, such as obj['key'] in Python or obj.get('key') in Java.

Fields

KeyTypeValue

importances

object

A mapping of each parameter to its relative importance for the corresponding metric.

metric

string

The corresponding metric name.

Example

{
  "importances": {
    "a": 0.32,
    "b": 0.65,
    "c": 0.03
  },
  "metric": "Accuracy",
  "object": "metric_importances"
}

Last updated