bug-report-fix / bugs.json
buttersx's picture
Upload folder using huggingface_hub
08bce4c verified
raw
history blame contribute delete
928 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "IssueUrgencyTextClassificationRecord",
"type": "object",
"required": ["id", "text", "label", "label_id", "split"],
"properties": {
"id": {
"type": "string",
"description": "Unique row id"
},
"text": {
"type": "string",
"description": "Model input text (usually title + '\\n\\n' + body)"
},
"label": {
"type": "string",
"enum": ["critical_bug", "high", "medium", "low", "question"]
},
"label_id": {
"type": "integer",
"enum": [0, 1, 2, 3, 4],
"description": "0=critical_bug,1=high,2=medium,3=low,4=question"
},
"split": {
"type": "string",
"enum": ["train", "validation", "test"]
}
},
"additionalProperties": false
}