API Reference
Log In

Sample results

Overview

The sample request snippet is created with the input test file upon Model Deployment. It features on the Model Details page and shows how to read a model’s results. Samples may be updated but need to match their model’s output requirements.

The sample results object

{
    "jobIdentifier": "...",
    "total": 1,
    "completed": 1,
    "failed": 0,
    "finished": true,
    "submittedByKey": "...",
    "explained": true,
    "results": {
        "inputName": {}
    },
    "failures": {}
}
ParameterTypeDescription
jobIdentifierstringThe job’s identifier.
totalnumberTotal number of inputs processed by the job request.
completednumberTotal number of inputs fully processed by the model.
failednumberTotal number of inputs that failed to be processed by the model.
finishedbooleanIf the job finished processing the outputs.
submittedByKeystringThe API key that submitted the job.
explainedbooleanDefines if the job has explainable results.
resultsobjectContains an input object for every input item processed. Input item names can be defined before running the model and used to retrieve individual results.
failuresobjectContains an input object for every input that failed to be processed by the model. Input item names can be defined before running the model and used to retrieve individual results.