mirror of
https://github.com/gsi-upm/senpy
synced 2025-09-17 20:12:22 +00:00
29 lines
576 B
JSON
29 lines
576 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"name": "Evaluation",
|
|
"properties": {
|
|
"@id": {
|
|
"type": "string"
|
|
},
|
|
"@type": {
|
|
"type": "array",
|
|
"default": "Evaluation"
|
|
|
|
},
|
|
"metrics": {
|
|
"type": "array",
|
|
"items": {"$ref": "metric.json" },
|
|
"default": []
|
|
},
|
|
"evaluatesOn": {
|
|
"description": "Name of the dataset evaluated ",
|
|
"type": "string"
|
|
},
|
|
"evaluates": {
|
|
"description": "Classifier or plugin evaluated",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["@id", "metrics"]
|
|
}
|