File size: 928 Bytes
08bce4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
    "$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
}