Skip to main content

Big Data Model Inference

Download OpenAPI specification:Download

Authentication

Sign

Security Scheme Type: API Key
Header parameter name: Authorization

data-mining-runtime

Data Mining Runtime

Paginated Query of Algorithm Runtime Models

Authorizations:
Sign
query Parameters
name
string
Example: name=model-1

Query by model name (fuzzy search)

pageNo
string
Example: pageNo=1

Page number

pageSize
string
Example: pageSize=20

Number of items per page

Responses

Response samples

Content type
application/json
{
  • "list": [
    ],
  • "pagination": {
    }
}

List of Runtime Model Versions

Authorizations:
Sign
path Parameters
modelCode
required
string
Example: Xsdfsfd24dfsadfsaf

Model code

Responses

Response samples

Content type
application/json
{
  • "list": [
    ]
}

Invoke Runtime Model

Authorizations:
Sign
path Parameters
modelCode
required
string

Model code

modelVersion
required
string

Model version

Request Body schema: application/json
outerId
required
string

External ID passed in

inputData
required
Array of numbers[ items ]

Model input data, a two-dimensional array representing columnar data

Responses

Request samples

Content type
application/json
{
  • "outerId": "uuiduuiduuid",
  • "inputData": [
    ]
}

Response samples

Content type
application/json
{
  • "outerId": "uuiduuiduuid",
  • "data": [
    ]
}