Check if variable importance exists

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

Returns a list of header information for the variable importance. Used to determine whether the variable importance exists.

Request Samples

1

Response Samples

1[
2 {
3 "variable": "MORTDUE",
4 "importance": 1
5 },
6 {
7 "variable\"": "VALUE",
8 "importance\"": 0.78
9 },
10 {
11 "variable\"": "LOAN",
12 "importance\"": 0.76
13 },
14 {
15 "variable\"": "REASON",
16 "importance\"": 0.35
17 },
18 {
19 "variable\"": "JOB",
20 "importance\"": 0.21
21 }
22]

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.