Results

Retrieve prediction outputs and the raw explanation data behind them.
View as Markdown

The Results view is the primary deployed model view for querying predictions and retrieving the raw explanation data behind them.

Use it when you need the predicted output together with the raw dataframes that support prediction-level explanations, including feature attributions, module attributions, partition activations, and partition attributions.

When to use

Use caseDescription
Run inferenceRetrieve the predicted output for one or more query rows.
Inspect raw explanation dataGet the underlying attribution and activation data used by other explanation views.
Debug a predictionCompare the query input, prediction, total attribution, and attribution breakdowns in one response.
Build custom visualisationsUse the returned dataframes directly in tables, charts, or downstream analysis.

Generate the view

Generate the Results view from a deployed model.

POST
/deployed-models/:deployedModelId/views
curl -X POST https://api.hi.umnai.com/deployed-models/deployedModelId/views \
-H "X-Views-Cache-Control: no-cache, no-store" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"data": [
{
"view_type": "RESULTS"
}
],
"query": {
"age": [
58
],
"capital_45_gain": [
0
],
"capital_45_loss": [
0
],
"education": [
"HS-grad"
],
"educational_45_num": [
9
],
"fnlwgt": [
299831
],
"gender": [
"Male"
],
"hours_45_per_45_week": [
35
],
"marital_45_status": [
"Married-civ-spouse"
],
"native_45_country": [
"United-States"
],
"occupation": [
"?"
],
"race": [
"White"
],
"relationship": [
"Husband"
],
"workclass": [
"?"
]
},
"targets": {
"income": [
0
]
}
}'
Response
{
"data": [
{
"view_type": "RESULTS",
"commons_version": {
"major_version": 0,
"minor_version": 18,
"patch_version": 0,
"build_version": "dev72"
},
"core_version": {
"major_version": 7,
"minor_version": 10,
"patch_version": 0,
"build_version": "dev52"
},
"output_version": {
"major_version": 2,
"minor_version": 0,
"patch_version": 0
},
"view_data": {
"model_info": {
"columns": [
"model_intercept",
"model_id",
"dataset_name",
"commons_version",
"core_version",
"estimators_aggregation_type",
"estimators_aggregation_weights",
"estimators_aggregation_bias"
],
"index": [
0
],
"data": [
[
-1.0836982274,
"2bcb9dc8-adult_income-root_ae51ef149e564e44aea29d4289015533",
"2bcb9dc8-adult_income-root",
"0.18.0.dev72",
"7.10.0.dev52",
"MEAN",
null,
[
0
]
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "ARRAY",
"format": {
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
}
]
},
"query_input": {
"columns": [
"age",
"workclass",
"fnlwgt",
"education",
"educational_45_num",
"marital_45_status",
"occupation",
"relationship",
"race",
"gender",
"capital_45_gain",
"capital_45_loss",
"hours_45_per_45_week",
"native_45_country"
],
"index": [
0
],
"data": [
[
58,
"?",
299831,
"HS-grad",
9,
"Married-civ-spouse",
"?",
"Husband",
"White",
"Male",
0,
0,
35,
"United-States"
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "STRING",
"format": null
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "STRING",
"format": null
}
]
},
"feature_attribution": {
"columns": [
"age",
"workclass",
"education",
"educational_45_num",
"marital_45_status",
"occupation",
"relationship",
"race",
"gender",
"capital_45_gain",
"capital_45_loss",
"hours_45_per_45_week",
"native_45_country"
],
"index": [
0
],
"data": [
[
0.0647808541,
-0.0676474605,
-0.0313969485,
-0.1116615309,
0.3690593203,
-0.1066994267,
0.1462616659,
0.0019960039,
0.0136857833,
-0.0931422759,
-0.0472697232,
-0.032039807,
-0.006444931
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
}
]
},
"total_attribution": {
"columns": [
"0"
],
"index": [
0
],
"data": [
[
-0.9842167034
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
}
]
},
"predicted_output": {
"columns": [
"0"
],
"index": [
0
],
"data": [
[
0.2720585794
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
}
]
},
"module_attribution": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17"
],
"index": [
0
],
"data": [
[
0.0647808541,
-0.1318352376,
-0.0931422759,
-0.0472697232,
-0.032039807,
-0.0242657021,
0.0136857833,
0.3415582307,
-0.006444931,
-0.13539332,
0.0019960039,
0.1094945188,
-0.0676474605,
0.003414743,
0.0240163011,
0.0231456524,
0.0253621205,
0.0300657735
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
}
]
},
"partition_activation": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17"
],
"index": [
0
],
"data": [
[
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
}
]
},
"partition_attribution": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17"
],
"index": [
0
],
"data": [
[
0.0647808541,
-0.1318352376,
-0.0931422759,
-0.0472697232,
-0.032039807,
-0.0242657021,
0.0136857833,
0.3415582307,
-0.006444931,
-0.13539332,
0.0019960039,
0.1094945188,
-0.0676474605,
0.003414743,
0.0240163011,
0.0231456524,
0.0253621205,
0.0300657735
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
}
]
},
"decomposition_activation": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23",
"24",
"25",
"26",
"27",
"28",
"29",
"30",
"31",
"32",
"33",
"34",
"35",
"36",
"37",
"38",
"39",
"40",
"41",
"42",
"43",
"44",
"45",
"46",
"47",
"48",
"49",
"50",
"51",
"52",
"53",
"54",
"55",
"56",
"57",
"58",
"59",
"60",
"61",
"62",
"63",
"64",
"65",
"66",
"67",
"68",
"69",
"70",
"71",
"72",
"73",
"74",
"75",
"76",
"77",
"78",
"79",
"80",
"81",
"82",
"83",
"84",
"85",
"86",
"87",
"88",
"89",
"90",
"91",
"92",
"93",
"94",
"95",
"96",
"97",
"98",
"99",
"100",
"101",
"102",
"103",
"104",
"105",
"106",
"107",
"108",
"109",
"110",
"111",
"112",
"113",
"114",
"115",
"116",
"117",
"118",
"119",
"120",
"121",
"122",
"123",
"124",
"125",
"126",
"127",
"128",
"129",
"130",
"131",
"132",
"133",
"134",
"135",
"136",
"137",
"138",
"139",
"140",
"141",
"142",
"143",
"144",
"145",
"146",
"147",
"148",
"149",
"150",
"151",
"152",
"153",
"154",
"155",
"156",
"157",
"158",
"159",
"160",
"161",
"162",
"163",
"164",
"165",
"166",
"167",
"168",
"169",
"170",
"171",
"172",
"173",
"174",
"175",
"176",
"177",
"178",
"179",
"180",
"181",
"182",
"183",
"184",
"185",
"186",
"187",
"188",
"189",
"190",
"191",
"192",
"193",
"194",
"195",
"196",
"197",
"198",
"199",
"200",
"201",
"202"
],
"index": [
0
],
"data": [
[
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
1,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
1,
0,
0,
0,
0,
0,
1,
0,
1,
0,
0,
0,
0,
0
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
}
]
},
"decomposition_attribution": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23",
"24",
"25",
"26",
"27",
"28",
"29",
"30",
"31",
"32",
"33",
"34",
"35",
"36",
"37",
"38",
"39",
"40",
"41",
"42",
"43",
"44",
"45",
"46",
"47",
"48",
"49",
"50",
"51",
"52",
"53",
"54",
"55",
"56",
"57",
"58",
"59",
"60",
"61",
"62",
"63",
"64",
"65",
"66",
"67",
"68",
"69",
"70",
"71",
"72",
"73",
"74",
"75",
"76",
"77",
"78",
"79",
"80",
"81",
"82",
"83",
"84",
"85",
"86",
"87",
"88",
"89",
"90",
"91",
"92",
"93",
"94",
"95",
"96",
"97",
"98",
"99",
"100",
"101",
"102",
"103",
"104",
"105",
"106",
"107",
"108",
"109",
"110",
"111",
"112",
"113",
"114",
"115",
"116",
"117",
"118",
"119",
"120",
"121",
"122",
"123",
"124",
"125",
"126",
"127",
"128",
"129",
"130",
"131",
"132",
"133",
"134",
"135",
"136",
"137",
"138",
"139",
"140",
"141",
"142",
"143",
"144",
"145",
"146",
"147",
"148",
"149",
"150",
"151",
"152",
"153",
"154",
"155",
"156",
"157",
"158",
"159",
"160",
"161",
"162",
"163",
"164",
"165",
"166",
"167",
"168",
"169",
"170",
"171",
"172",
"173",
"174",
"175",
"176",
"177",
"178",
"179",
"180",
"181",
"182",
"183",
"184",
"185",
"186",
"187",
"188",
"189",
"190",
"191",
"192",
"193",
"194",
"195",
"196",
"197",
"198",
"199",
"200",
"201",
"202"
],
"index": [
0
],
"data": [
[
0.0647808541,
-0.1318352376,
-0.0931422759,
-0.0472697232,
-0.032039807,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
-0.0242657021,
0,
0,
0,
0,
0,
0,
0.0136857833,
0,
0,
0,
0.3415582307,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
-0.006444931,
0,
0,
0,
-0.13539332,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0019960039,
0,
0.1094945188,
0,
0,
0,
0,
0,
0,
-0.0676474605,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0019017831,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.00151296,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
-0.0071312464,
0,
0,
0,
0,
0,
0,
0,
0.0311475476,
0,
0,
0,
0,
0,
0,
0,
-0.0036464579,
0,
0,
0,
0,
0,
0.0267921103,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0253621205,
0,
0,
0,
0,
0,
0.0201737068,
0,
0.0098920667,
0,
0,
0,
0,
0
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
},
{
"data_type": "NUMBER",
"format": "INT64"
}
]
},
"estimators_predicted_output": {
"columns": [
"0",
"1"
],
"index": [
0
],
"data": [
[
0.2735845447,
0.2705326141
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "NUMBER",
"format": "FLOAT64"
},
{
"data_type": "NUMBER",
"format": "FLOAT64"
}
]
},
"estimators_feature_attribution": {
"columns": [
"age",
"workclass",
"education",
"educational_45_num",
"marital_45_status",
"occupation",
"relationship",
"race",
"gender",
"capital_45_gain",
"capital_45_loss",
"hours_45_per_45_week",
"native_45_country"
],
"index": [
0
],
"data": [
[
[
0.0646486257,
0.0649130825
],
[
-0.0659330512,
-0.0693618697
],
[
-0.0218890662,
-0.0423094627
],
[
-0.1120373673,
-0.1112866485
],
[
0.3605294714,
0.3840125829
],
[
-0.1032622882,
-0.1151560485
],
[
0.1468037999,
0.1457211876
],
[
0.0023801547,
0.0016118531
],
[
0.0133834105,
0.013988156
],
[
-0.0926833867,
-0.0936011651
],
[
-0.046602184,
-0.0479372623
],
[
-0.0321763441,
-0.0319032698
],
[
-0.0064493431,
-0.0064405189
]
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
}
]
},
"estimators_module_attribution": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17"
],
"index": [
0
],
"data": [
[
[
0.0646486257,
0.0649130825
],
[
-0.1319163195,
-0.1317541558
],
[
-0.0926833867,
-0.0936011651
],
[
-0.046602184,
-0.0479372623
],
[
-0.0321763441,
-0.0319032698
],
[
-0.0239412169,
-0.0245901872
],
[
0.0133834105,
0.013988156
],
[
0.342082156,
0.3410343053
],
[
-0.0064493431,
-0.0064405189
],
[
-0.1365255436,
-0.1342610965
],
[
0.0023801547,
0.0016118531
],
[
0.1099097792,
0.1090792583
],
[
-0.0659330512,
-0.0693618697
],
[
0.0044787801,
0.0023507059
],
[
0.02410137,
0.0239312323
],
[
0.0273065793,
0.0189847254
],
[
0.0250790796,
0.0256451614
],
[
0.0295698854,
0.0305616616
]
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
}
]
},
"estimators_partition_attribution": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17"
],
"index": [
0
],
"data": [
[
[
0.0646486257,
0.0649130825
],
[
-0.1319163195,
-0.1317541558
],
[
-0.0926833867,
-0.0936011651
],
[
-0.046602184,
-0.0479372623
],
[
-0.0321763441,
-0.0319032698
],
[
-0.0239412169,
-0.0245901872
],
[
0.0133834105,
0.013988156
],
[
0.342082156,
0.3410343053
],
[
-0.0064493431,
-0.0064405189
],
[
-0.1365255436,
-0.1342610965
],
[
0.0023801547,
0.0016118531
],
[
0.1099097792,
0.1090792583
],
[
-0.0659330512,
-0.0693618697
],
[
0.0044787801,
0.0023507059
],
[
0.02410137,
0.0239312323
],
[
0.0273065793,
0.0189847254
],
[
0.0250790796,
0.0256451614
],
[
0.0295698854,
0.0305616616
]
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
}
]
},
"estimators_decomposition_attribution": {
"columns": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23",
"24",
"25",
"26",
"27",
"28",
"29",
"30",
"31",
"32",
"33",
"34",
"35",
"36",
"37",
"38",
"39",
"40",
"41",
"42",
"43",
"44",
"45",
"46",
"47",
"48",
"49",
"50",
"51",
"52",
"53",
"54",
"55",
"56",
"57",
"58",
"59",
"60",
"61",
"62",
"63",
"64",
"65",
"66",
"67",
"68",
"69",
"70",
"71",
"72",
"73",
"74",
"75",
"76",
"77",
"78",
"79",
"80",
"81",
"82",
"83",
"84",
"85",
"86",
"87",
"88",
"89",
"90",
"91",
"92",
"93",
"94",
"95",
"96",
"97",
"98",
"99",
"100",
"101",
"102",
"103",
"104",
"105",
"106",
"107",
"108",
"109",
"110",
"111",
"112",
"113",
"114",
"115",
"116",
"117",
"118",
"119",
"120",
"121",
"122",
"123",
"124",
"125",
"126",
"127",
"128",
"129",
"130",
"131",
"132",
"133",
"134",
"135",
"136",
"137",
"138",
"139",
"140",
"141",
"142",
"143",
"144",
"145",
"146",
"147",
"148",
"149",
"150",
"151",
"152",
"153",
"154",
"155",
"156",
"157",
"158",
"159",
"160",
"161",
"162",
"163",
"164",
"165",
"166",
"167",
"168",
"169",
"170",
"171",
"172",
"173",
"174",
"175",
"176",
"177",
"178",
"179",
"180",
"181",
"182",
"183",
"184",
"185",
"186",
"187",
"188",
"189",
"190",
"191",
"192",
"193",
"194",
"195",
"196",
"197",
"198",
"199",
"200",
"201",
"202"
],
"index": [
0
],
"data": [
[
[
0.0646486257,
0.0649130825
],
[
-0.1319163195,
-0.1317541558
],
[
-0.0926833867,
-0.0936011651
],
[
-0.046602184,
-0.0479372623
],
[
-0.0321763441,
-0.0319032698
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
-0.0239412169,
-0.0245901872
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0133834105,
0.013988156
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.342082156,
0.3410343053
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
-0.0064493431,
-0.0064405189
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
-0.1365255436,
-0.1342610965
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0023801547,
0.0016118531
],
[
0,
0
],
[
0.1099097792,
0.1090792583
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
-0.0659330512,
-0.0693618697
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0023547721,
0.0014480924
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.002124008,
0.0009026135
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0020521507,
-0.0177192754
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0220492193,
0.0416505077
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
-0.0036019039,
0.0013277699
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0309084832,
0.0176569555
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0250790796,
0.0256451614
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0.0198789522,
0.0204675072
],
[
0,
0
],
[
0.0096909332,
0.0100941544
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
]
]
],
"foreign_keys": [],
"labels": [],
"types": [
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "FLOAT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
},
{
"data_type": "ARRAY",
"format": {
"data_type": "NUMBER",
"format": "INT64"
}
}
]
}
},
"views_version": {
"major_version": 0,
"minor_version": 7,
"patch_version": 0,
"build_version": "dev13"
}
}
]
}

The request needs view_type set to RESULTS and query data aligned with the deployed model input schema.

Output

The response follows the shared Response structure format.

The Results view returns multiple named dataframes inside view_data.

DataframeDescription
model_infoMetadata about the model and the inference output, including model identifier and intercept information.
query_inputThe query values submitted to the deployed model, organised by input feature.
feature_attributionAttribution values organised by input feature.
total_attributionTotal attribution for each query row.
predicted_outputPredicted output for each query row.
module_attributionAttribution values organised by model module.
partition_activationPartition activation values for each query row.
partition_attributionAttribution values organised by partition.
decomposition_activationActivation values for decomposition components.
decomposition_attributionAttribution values for decomposition components.
estimators_predicted_outputOptional predicted output from each estimator, when estimator output is available.
estimators_feature_attributionOptional feature attribution values by estimator.
estimators_module_attributionOptional module attribution values by estimator.
estimators_partition_attributionOptional partition attribution values by estimator.
estimators_decomposition_attributionOptional decomposition attribution values by estimator.

The Results view also includes commons_version and core_version metadata alongside the common view metadata.

Interpret the result

The Results view is easiest to read from the prediction outward: start with the predicted output, then inspect attribution, modules, partitions, and estimator data when available.

Start with the prediction

Use predicted_output as the model response for each query row.

For a single query row, the dataframe contains the prediction returned by the deployed model. For a batch query, each row corresponds to a query row.

Use query_input beside predicted_output when you need to display the request and result together.

Check total attribution

Use total_attribution to understand the total contribution behind the prediction.

For many models, the prediction can be read as the model intercept plus the total attribution. The model_info dataframe contains model-level information such as the intercept and model identifier.

This is useful when you need to check whether the explanation data aligns with the prediction output.

Inspect feature and module contributions

Use feature_attribution to see the contribution of each input feature.

Use module_attribution to see the contribution of each module. A module may represent a single feature or an interaction between features, so module attribution can be more structural than feature attribution.

If you need a cleaner, user-facing rollup of these values, use Feature attribution or Module attribution.

Trace partitions and decompositions

Use partition_activation to see which partitions were active for the query.

Use partition_attribution to see how much each partition contributed. Then use decomposition_activation and decomposition_attribution when you need a finer-grained breakdown of the activated model components.

These dataframes are useful for debugging or building custom explanation tools, but they are lower-level than the attribution views.

Compare estimator outputs

If estimator data is present, use the estimators_* dataframes to inspect how individual estimators contributed.

Large differences across estimator outputs or attributions can indicate uncertainty or instability. For a user-facing view of strength, uncertainty, and adjusted error, use Strengths and weaknesses.

Field reference

The Results view returns dataframes, so individual columns are not documented as standalone API schema properties. Many columns are dynamic and depend on the model features, targets, modules, partitions, decompositions, and estimators.

model_info

The model_info dataframe contains model-level metadata for the result.

FieldDescription
model_interceptModel intercept term used in the prediction.
model_idID of the model behind the deployed model.
dataset_nameName of the dataset used to train the model, when available.
commons_versionVersion of the commons library used to generate the result, when included in the dataframe.
core_versionVersion of the core library used to generate the result, when included in the dataframe.
estimators_aggregation_typeMethod used to aggregate estimator outputs, when available.
estimators_aggregation_weightsWeights applied to estimator outputs, when available.
estimators_aggregation_biasBias term applied during estimator aggregation, when available.

query_input

The query_input dataframe contains the input values submitted to the deployed model.

Column patternDescription
<input_feature>Value of the input feature for each query row.

feature_attribution

The feature_attribution dataframe contains attribution values by input feature.

Column patternDescription
<input_feature>Attribution value for the input feature. Positive values raise the prediction; negative values lower it.

total_attribution

The total_attribution dataframe contains the total attribution for each query row.

Column patternDescription
<target_index>Total attribution for the target output.

predicted_output

The predicted_output dataframe contains the model prediction for each query row.

Column patternDescription
<target_index>Predicted value for the target output.

module_attribution

The module_attribution dataframe contains attribution values by model module.

Column patternDescription
<module_index>Attribution value for the module.

partition_activation

The partition_activation dataframe indicates which partitions were activated.

Column patternDescription
<partition_index>Activation value for the partition.

partition_attribution

The partition_attribution dataframe contains attribution values by partition.

Column patternDescription
<partition_index>Attribution value for the partition.

decomposition_activation

The decomposition_activation dataframe indicates which decomposition components were activated.

Column patternDescription
<decomposition_index>Activation value for the decomposition component.

decomposition_attribution

The decomposition_attribution dataframe contains attribution values by decomposition component.

Column patternDescription
<decomposition_index>Attribution value for the decomposition component.

Estimator dataframes

Estimator dataframes are included when estimator output is available.

DataframeDescription
estimators_predicted_outputPredicted output from each estimator.
estimators_feature_attributionFeature attribution values by estimator.
estimators_module_attributionModule attribution values by estimator.
estimators_partition_attributionPartition attribution values by estimator.
estimators_decomposition_attributionDecomposition attribution values by estimator.