Skip to content

Structured Data for Machine Learning Model

Below, the user can find an example JSON structured representation for the Machine Learning Model.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{
    "$id": "models-category/st/det/ml",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "machine learning model category schema",
    "allOf": [
        {
            "$ref": "../det.json"
        }
    ],
    "properties": {
        "tier3": {
            "$ref": "enum_options.json#/machineLearning"
        }
    }
}
1
2
3
4
5
6
7
{
    "type": "ml",
    "subtype": "re",
    "method": {
        "...": "include(../../method.json)"
    }
}