1
0
зеркало из https://github.com/gsi-upm/senpy synced 2025-09-18 04:22:21 +00:00
Files
senpy/senpy/schemas/evaluation.json
2018-05-16 11:16:32 +02:00

29 строки
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"]
}