Check if misclassification metrics exist

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

Returns a list of header information for the misclassification metrics. Used to determine whether the misclassification metrics exist.

Request Samples

1

Response Samples

1{
2 "validateEventCorrect": 1293,
3 "validateEventIncorrect": 1059,
4 "validateNonEventCorrect": 6838,
5 "validateNonEventIncorrect": 578,
6 "trainEventCorrect": 2595,
7 "trainEventIncorrect": 2110,
8 "trainNonEventCorrect": 13717,
9 "trainNonEventIncorrect": 1115,
10 "testEventCorrect": 456,
11 "testEventIncorrect": 328,
12 "testNonEventCorrect": 2282,
13 "testNonEventIncorrect": 190,
14 "event": "1",
15 "nEvent": "0"
16}

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.