Microsoft Windows 10 · Schema
LearningModelDetail
Detailed model information
DesktopOperating SystemUWPWin32Windows
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| author | string | |
| domain | string | |
| description | string | |
| version | integer | |
| inputFeatures | array | |
| outputFeatures | array | |
| metadata | object | Key-value metadata from the ONNX model |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LearningModelDetail",
"title": "LearningModelDetail",
"type": "object",
"description": "Detailed model information",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"author": {
"type": "string"
},
"domain": {
"type": "string"
},
"description": {
"type": "string"
},
"version": {
"type": "integer"
},
"inputFeatures": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FeatureDescriptor"
}
},
"outputFeatures": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FeatureDescriptor"
}
},
"metadata": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Key-value metadata from the ONNX model"
}
}
}