EvaluationResult

Result of a model evaluation (LearningModelEvaluationResult)

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
correlationId string Correlation ID from the request
succeeded boolean Whether evaluation succeeded
errorStatus integer Error code if evaluation failed
outputs object Map of output feature names to their values
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-evaluationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvaluationResult",
  "title": "EvaluationResult",
  "type": "object",
  "description": "Result of a model evaluation (LearningModelEvaluationResult)",
  "properties": {
    "correlationId": {
      "type": "string",
      "description": "Correlation ID from the request"
    },
    "succeeded": {
      "type": "boolean",
      "description": "Whether evaluation succeeded"
    },
    "errorStatus": {
      "type": "integer",
      "description": "Error code if evaluation failed"
    },
    "outputs": {
      "type": "object",
      "additionalProperties": {
        "type": "object"
      },
      "description": "Map of output feature names to their values"
    }
  }
}