Check if model health metrics exist
head/models/{modelId}/healthMetrics
Returns a list of header information for the model health metrics. Used to determine whether the model health metrics exist for the training data.
1{2 "items": [3 {4 "category": "accuracy",5 "metric": "MCE",6 "variable": "",7 "threshold": "0.30000001192092896",8 "value": "0.128852",9 "success": true10 },11 {12 "category": "generalizability",13 "metric": "MCE Difference",14 "variable": "",15 "threshold": "0.10000000149011612",16 "value": "0.025910",17 "success": true18 },19 {20 "category": "fairness",21 "metric": "equalOpportunity",22 "variable": "Race",23 "threshold": "0.2",24 "value": "0.545455",25 "success": false26 }27 ],28 "isDefault": true29}