Check if model health metrics exist

head/models/{modelId}/healthMetrics
Internal-Use Only

Returns a list of header information for the model health metrics. Used to determine whether the model health metrics exist for the training data.

Request Samples

1

Response Samples

1{
2 "items": [
3 {
4 "category": "accuracy",
5 "metric": "MCE",
6 "variable": "",
7 "threshold": "0.30000001192092896",
8 "value": "0.128852",
9 "success": true
10 },
11 {
12 "category": "generalizability",
13 "metric": "MCE Difference",
14 "variable": "",
15 "threshold": "0.10000000149011612",
16 "value": "0.025910",
17 "success": true
18 },
19 {
20 "category": "fairness",
21 "metric": "equalOpportunity",
22 "variable": "Race",
23 "threshold": "0.2",
24 "value": "0.545455",
25 "success": false
26 }
27 ],
28 "isDefault": true
29}

Path Parameters

NameTypeRequiredDescription
modelId
string
true

The unique identifier for the model.

Query Parameters

NameTypeRequiredDescription
limit
integer<int32>
false

The maximum number of items to return in this request.

Default:
20
modelVersionId
string
false

The unique identifier for the model version.

start
integer<int32>
false

The 0-based start index of a paginated request.

>= 0
Default:
0

Responses

StatusMeaningDescription
200OKThe request succeeded.HeadersSchema
404Not FoundNo model exists at the requested path.