LoadModelRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
filePath string Path to the ONNX model file
modelFormat string Model format (currently only ONNX supported)
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-loadmodelrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoadModelRequest",
  "title": "LoadModelRequest",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Path to the ONNX model file"
    },
    "modelFormat": {
      "type": "string",
      "enum": [
        "ONNX"
      ],
      "description": "Model format (currently only ONNX supported)",
      "default": "ONNX"
    }
  },
  "required": [
    "filePath"
  ]
}