Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +27 -0
- dataset.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
dataset.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
lang: en
|
| 4 |
+
---
|
| 5 |
+
Supervised finetuning dataset for training small LLMs to fix broken JSON.
|
| 6 |
+
|
| 7 |
+
Each instance follows this format:
|
| 8 |
+
```json
|
| 9 |
+
{
|
| 10 |
+
"messages": [
|
| 11 |
+
{
|
| 12 |
+
"role": "system",
|
| 13 |
+
"content": "You are a JSON formatting specialist. Convert the provided JSON data into valid JSON format with 2 line indent and no additional commentary."
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"role": "user",
|
| 17 |
+
"content": "Here you go:\n```json\n{\n \"hospitals\": [\n {\n \"name\": \"Johns Hopkins Hospital\",\n \"address\": {\n \"street\": \"1800 Orleans St\",\n \"city\": \"Baltimore\",\n \"state\": \"MD\",\n \"zip\": \"21287\"\n , },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-955-5000\"\n , },\n {\n \"label\": \"Emergency Services\",\n \"number\": \"410-955-7777\"\n , }\n , ],\n \"emergency_services\": [\n {\n \"name\": \"Trauma Care\",\n \"description\": \"24/ma care services\"\n , },\n {\n \"name\": \"Cardiovascular Surgery\",\n \"description\": \"Minimally invasive cardiovascular surgery services\"\n , }\n , ]\n , },\n {\n \"name\": \"University of Maryland Medical Center\",\n \"address\": {\n \"street\": \"22 S Greene St\",\n \"city\": \"Baltimore\",,\n \"state\": \"MD\",\n \"zip\": \"21201\"\n , },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-328-8942\"\n , },\n {\n \"label\":\"Emergency Services\",\n \"number\": \"410-328-2345\"\n , }\n , ],\n \"emergency_services\": [\n {\n \"name\": \"Pediatric Emergency Department\",\n \"description\": \"24/7 pediatric emergency services\"\n , },\n {\n \"name\": \"Burn Center\",\n \"description\": \"Comprehensive burn care services\"\n , }\n , ]\n , }\n , ]\n\n```\nHope this helps!"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"role": "assistant",
|
| 21 |
+
"content": "{\n \"hospitals\": [\n {\n \"name\": \"Johns Hopkins Hospital\",\n \"address\": {\n \"street\": \"1800 Orleans St\",\n \"city\": \"Baltimore\",\n \"state\": \"MD\",\n \"zip\": \"21287\"\n },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-955-5000\"\n },\n {\n \"label\": \"Emergency Services\",\n \"number\": \"410-955-7777\"\n }\n ],\n \"emergency_services\": [\n {\n \"name\": \"Trauma Care\",\n \"description\": \"24/7 trauma care services\"\n },\n {\n \"name\": \"Cardiovascular Surgery\",\n \"description\": \"Minimally invasive cardiovascular surgery services\"\n }\n ]\n },\n {\n \"name\": \"University of Maryland Medical Center\",\n \"address\": {\n \"street\": \"22 S Greene St\",\n \"city\": \"Baltimore\",\n \"state\": \"MD\",\n \"zip\": \"21201\"\n },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-328-8942\"\n },\n {\n \"label\": \"Emergency Services\",\n \"number\": \"410-328-2345\"\n }\n ],\n \"emergency_services\": [\n {\n \"name\": \"Pediatric Emergency Department\",\n \"description\": \"24/7 pediatric emergency services\"\n },\n {\n \"name\": \"Burn Center\",\n \"description\": \"Comprehensive burn care services\"\n }\n ]\n }\n ]\n}"
|
| 22 |
+
}
|
| 23 |
+
],
|
| 24 |
+
"user": "Here you go:\n```json\n{\n \"hospitals\": [\n {\n \"name\": \"Johns Hopkins Hospital\",\n \"address\": {\n \"street\": \"1800 Orleans St\",\n \"city\": \"Baltimore\",\n \"state\": \"MD\",\n \"zip\": \"21287\"\n , },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-955-5000\"\n , },\n {\n \"label\": \"Emergency Services\",\n \"number\": \"410-955-7777\"\n , }\n , ],\n \"emergency_services\": [\n {\n \"name\": \"Trauma Care\",\n \"description\": \"24/ma care services\"\n , },\n {\n \"name\": \"Cardiovascular Surgery\",\n \"description\": \"Minimally invasive cardiovascular surgery services\"\n , }\n , ]\n , },\n {\n \"name\": \"University of Maryland Medical Center\",\n \"address\": {\n \"street\": \"22 S Greene St\",\n \"city\": \"Baltimore\",,\n \"state\": \"MD\",\n \"zip\": \"21201\"\n , },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-328-8942\"\n , },\n {\n \"label\":\"Emergency Services\",\n \"number\": \"410-328-2345\"\n , }\n , ],\n \"emergency_services\": [\n {\n \"name\": \"Pediatric Emergency Department\",\n \"description\": \"24/7 pediatric emergency services\"\n , },\n {\n \"name\": \"Burn Center\",\n \"description\": \"Comprehensive burn care services\"\n , }\n , ]\n , }\n , ]\n\n```\nHope this helps!",
|
| 25 |
+
"assistant": "{\n \"hospitals\": [\n {\n \"name\": \"Johns Hopkins Hospital\",\n \"address\": {\n \"street\": \"1800 Orleans St\",\n \"city\": \"Baltimore\",\n \"state\": \"MD\",\n \"zip\": \"21287\"\n },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-955-5000\"\n },\n {\n \"label\": \"Emergency Services\",\n \"number\": \"410-955-7777\"\n }\n ],\n \"emergency_services\": [\n {\n \"name\": \"Trauma Care\",\n \"description\": \"24/7 trauma care services\"\n },\n {\n \"name\": \"Cardiovascular Surgery\",\n \"description\": \"Minimally invasive cardiovascular surgery services\"\n }\n ]\n },\n {\n \"name\": \"University of Maryland Medical Center\",\n \"address\": {\n \"street\": \"22 S Greene St\",\n \"city\": \"Baltimore\",\n \"state\": \"MD\",\n \"zip\": \"21201\"\n },\n \"phones\": [\n {\n \"label\": \"General Information\",\n \"number\": \"410-328-8942\"\n },\n {\n \"label\": \"Emergency Services\",\n \"number\": \"410-328-2345\"\n }\n ],\n \"emergency_services\": [\n {\n \"name\": \"Pediatric Emergency Department\",\n \"description\": \"24/7 pediatric emergency services\"\n },\n {\n \"name\": \"Burn Center\",\n \"description\": \"Comprehensive burn care services\"\n }\n ]\n }\n ]\n}"
|
| 26 |
+
}
|
| 27 |
+
```
|
dataset.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9f1cfa73c74633793ee7a8d4b781208a4537ad5e61855ea1a58fe3be9628729
|
| 3 |
+
size 84851056
|