Upload folder using huggingface_hub
Browse files- bugs.json +31 -0
- mappingStandards.json +7 -0
- test_labeled.jsonl +0 -0
- train_labeled.jsonl +0 -0
- unlabeled_pool.jsonl +0 -0
- validation_labeled.jsonl +0 -0
bugs.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"title": "IssueUrgencyTextClassificationRecord",
|
| 4 |
+
"type": "object",
|
| 5 |
+
"required": ["id", "text", "label", "label_id", "split"],
|
| 6 |
+
"properties": {
|
| 7 |
+
"id": {
|
| 8 |
+
"type": "string",
|
| 9 |
+
"description": "Unique row id"
|
| 10 |
+
},
|
| 11 |
+
"text": {
|
| 12 |
+
"type": "string",
|
| 13 |
+
"description": "Model input text (usually title + '\\n\\n' + body)"
|
| 14 |
+
},
|
| 15 |
+
"label": {
|
| 16 |
+
"type": "string",
|
| 17 |
+
"enum": ["critical_bug", "high", "medium", "low", "question"]
|
| 18 |
+
},
|
| 19 |
+
"label_id": {
|
| 20 |
+
"type": "integer",
|
| 21 |
+
"enum": [0, 1, 2, 3, 4],
|
| 22 |
+
"description": "0=critical_bug,1=high,2=medium,3=low,4=question"
|
| 23 |
+
},
|
| 24 |
+
"split": {
|
| 25 |
+
"type": "string",
|
| 26 |
+
"enum": ["train", "validation", "test"]
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"additionalProperties": false
|
| 30 |
+
}
|
| 31 |
+
|
mappingStandards.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"critical_bug": 0,
|
| 3 |
+
"high": 1,
|
| 4 |
+
"medium": 2,
|
| 5 |
+
"low": 3,
|
| 6 |
+
"question": 4
|
| 7 |
+
}
|
test_labeled.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
train_labeled.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
unlabeled_pool.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
validation_labeled.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|