Add paper link, task categories, and description to dataset card
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: problem
|
|
@@ -37,3 +42,38 @@ configs:
|
|
| 37 |
- split: test
|
| 38 |
path: data/test-*
|
| 39 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- text-generation
|
| 4 |
+
tags:
|
| 5 |
+
- medical
|
| 6 |
+
- ddxplus
|
| 7 |
dataset_info:
|
| 8 |
features:
|
| 9 |
- name: problem
|
|
|
|
| 42 |
- split: test
|
| 43 |
path: data/test-*
|
| 44 |
---
|
| 45 |
+
|
| 46 |
+
# medDataset_25k
|
| 47 |
+
|
| 48 |
+
This dataset was introduced in the paper [Reaching Beyond the Mode: RL for Distributional Reasoning in Language Models](https://huggingface.co/papers/2603.24844).
|
| 49 |
+
|
| 50 |
+
[**Project Page**](https://multi-answer-rl.github.io/) | [**GitHub Repository**](https://github.com/ishapuri/multi_answer_rl)
|
| 51 |
+
|
| 52 |
+
## Dataset Summary
|
| 53 |
+
|
| 54 |
+
`medDataset_25k` contains 25,000 patient cases derived from the DDXPlus dataset. It is designed to train and evaluate language models on distributional reasoning—the ability to generate multiple plausible hypotheses with associated confidence estimates, rather than collapsing to a single modal answer.
|
| 55 |
+
|
| 56 |
+
Each sample in the dataset represents a clinical case consisting of a patient's clinical presentation and a ranked differential diagnosis.
|
| 57 |
+
|
| 58 |
+
## Dataset Structure
|
| 59 |
+
|
| 60 |
+
The dataset contains the following features:
|
| 61 |
+
|
| 62 |
+
- `problem`: The clinical presentation of the patient (symptoms and history).
|
| 63 |
+
- `Differential_Diagnoses`: A list of potential diagnoses.
|
| 64 |
+
- `Differential_Diagnoses_ICD10s`: A list of ICD-10 codes corresponding to the diagnoses.
|
| 65 |
+
- `answers`: The ground truth diagnostic answers.
|
| 66 |
+
- `Differential_Probabilities`: Floating-point probabilities for each diagnosis in the differential.
|
| 67 |
+
- `Differential_Answer_Text`: Textual representation of the differential diagnosis.
|
| 68 |
+
- `source`: The origin of the data sample.
|
| 69 |
+
|
| 70 |
+
## Citation
|
| 71 |
+
|
| 72 |
+
```bibtex
|
| 73 |
+
@article{puri2024reaching,
|
| 74 |
+
title={Reaching Beyond the Mode: RL for Distributional Reasoning in Language Models},
|
| 75 |
+
author={Puri, Isha and Damani, Mehul and Shenfeld, Idan and Ghassemi, Marzyeh and Andreas, Jacob and Kim, Yoon},
|
| 76 |
+
journal={arXiv preprint arXiv:2412.14642},
|
| 77 |
+
year={2024}
|
| 78 |
+
}
|
| 79 |
+
```
|