Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -15,12 +15,14 @@ tags:
|
|
| 15 |
size_categories:
|
| 16 |
- 10K<n<100K
|
| 17 |
configs:
|
| 18 |
-
- config_name:
|
| 19 |
-
data_files:
|
| 20 |
-
-
|
| 21 |
-
|
| 22 |
-
-
|
| 23 |
-
|
|
|
|
|
|
|
| 24 |
---
|
| 25 |
|
| 26 |
# KokushiMD-10: Benchmark for Evaluating Large Language Models on Ten Japanese National Healthcare Licensing Examinations
|
|
@@ -39,7 +41,23 @@ The dataset is available in multiple splits:
|
|
| 39 |
- **EN split**: English translated questions only
|
| 40 |
- **mixed split**: Both Japanese and English questions combined
|
| 41 |
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
## Key Features
|
| 45 |
|
|
|
|
| 15 |
size_categories:
|
| 16 |
- 10K<n<100K
|
| 17 |
configs:
|
| 18 |
+
- config_name: default
|
| 19 |
+
data_files:
|
| 20 |
+
- split: JA
|
| 21 |
+
path: "data/train_ja.jsonl"
|
| 22 |
+
- split: EN
|
| 23 |
+
path: "data/train_en.jsonl"
|
| 24 |
+
- split: mixed
|
| 25 |
+
path: "data/train_mixed.jsonl"
|
| 26 |
---
|
| 27 |
|
| 28 |
# KokushiMD-10: Benchmark for Evaluating Large Language Models on Ten Japanese National Healthcare Licensing Examinations
|
|
|
|
| 41 |
- **EN split**: English translated questions only
|
| 42 |
- **mixed split**: Both Japanese and English questions combined
|
| 43 |
|
| 44 |
+
You can load specific language splits using:
|
| 45 |
+
```python
|
| 46 |
+
from datasets import load_dataset
|
| 47 |
+
|
| 48 |
+
# Load Japanese questions only
|
| 49 |
+
dataset_ja = load_dataset("humanalysis-square/KokushiMD-10", split="JA")
|
| 50 |
+
|
| 51 |
+
# Load English questions only
|
| 52 |
+
dataset_en = load_dataset("humanalysis-square/KokushiMD-10", split="EN")
|
| 53 |
+
|
| 54 |
+
# Load both languages mixed
|
| 55 |
+
dataset_mixed = load_dataset("humanalysis-square/KokushiMD-10", split="mixed")
|
| 56 |
+
|
| 57 |
+
# Load all splits
|
| 58 |
+
dataset = load_dataset("humanalysis-square/KokushiMD-10")
|
| 59 |
+
# Access individual splits: dataset["JA"], dataset["EN"], dataset["mixed"]
|
| 60 |
+
```
|
| 61 |
|
| 62 |
## Key Features
|
| 63 |
|