Spaces:
Configuration error
Configuration error
Update README.md
Browse files
README.md
CHANGED
@@ -1,38 +1,58 @@
|
|
1 |
# UTAustin-AIHealth
|
2 |
|
3 |
-
Welcome to **UTAustin-AIHealth** – a hub dedicated to advancing research in medical AI.
|
|
|
4 |
|
5 |
**MedHallu: A Comprehensive Benchmark for Detecting Medical Hallucinations in Large Language Models**
|
6 |
|
7 |
-
MedHallu is a rigorously designed
|
|
|
|
|
|
|
|
|
8 |
|
9 |
---
|
10 |
|
11 |
-
##
|
12 |
|
13 |
-
|
14 |
|
15 |
-
|
|
|
16 |
|
17 |
## How to Use MedHallu
|
18 |
|
19 |
- **Downloading the Dataset:**
|
20 |
-
|
|
|
21 |
|
22 |
-
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
---
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
## Citations
|
28 |
|
29 |
If you find MedHallu useful in your research, please consider citing our work:
|
30 |
|
31 |
```bibtex
|
32 |
-
@
|
33 |
title={MedHallu: A Comprehensive Benchmark for Detecting Medical Hallucinations in Large Language Models},
|
34 |
-
author={
|
35 |
-
booktitle={
|
36 |
year={2025},
|
37 |
-
publisher={
|
38 |
}
|
|
|
1 |
# UTAustin-AIHealth
|
2 |
|
3 |
+
Welcome to **UTAustin-AIHealth** – a hub dedicated to advancing research in medical AI.
|
4 |
+
This repo contains the **MedHallu** dataset, which underpins our recent work:
|
5 |
|
6 |
**MedHallu: A Comprehensive Benchmark for Detecting Medical Hallucinations in Large Language Models**
|
7 |
|
8 |
+
MedHallu is a rigorously designed benchmark intended to evaluate large language models' ability to detect hallucinations in medical question-answering tasks.
|
9 |
+
The dataset is organized into two distinct splits:
|
10 |
+
|
11 |
+
- **pqa_labeled:** Contains 1,000 high-quality, human-annotated samples derived from PubMedQA.
|
12 |
+
- **pqa_artificial:** Contains 9,000 samples generated via an automated pipeline from PubMedQA.
|
13 |
|
14 |
---
|
15 |
|
16 |
+
## Setup Environment
|
17 |
|
18 |
+
To work with the MedHallu dataset, please install the Hugging Face `datasets` library using pip:
|
19 |
|
20 |
+
```bash
|
21 |
+
pip install datasets
|
22 |
|
23 |
## How to Use MedHallu
|
24 |
|
25 |
- **Downloading the Dataset:**
|
26 |
+
```python3
|
27 |
+
from datasets import load_dataset
|
28 |
|
29 |
+
# Load the 'pqa_labeled' split: 1,000 high-quality, human-annotated samples.
|
30 |
+
medhallu_labeled = load_dataset("UTAustin-AIHealth/MedHallu", "pqa_labeled")
|
31 |
+
|
32 |
+
# Load the 'pqa_artificial' split: 9,000 samples generated via an automated pipeline.
|
33 |
+
medhallu_artificial = load_dataset("UTAustin-AIHealth/MedHallu", "pqa_artificial")
|
34 |
+
|
35 |
+
```
|
36 |
|
37 |
---
|
38 |
|
39 |
+
|
40 |
+
## License
|
41 |
+
|
42 |
+
This dataset and associated resources are distributed under the [MIT License](https://opensource.org/license/mit/).
|
43 |
+
|
44 |
+
---
|
45 |
+
|
46 |
+
|
47 |
## Citations
|
48 |
|
49 |
If you find MedHallu useful in your research, please consider citing our work:
|
50 |
|
51 |
```bibtex
|
52 |
+
@misc{MedHallu,
|
53 |
title={MedHallu: A Comprehensive Benchmark for Detecting Medical Hallucinations in Large Language Models},
|
54 |
+
author={},
|
55 |
+
booktitle={},
|
56 |
year={2025},
|
57 |
+
publisher={}
|
58 |
}
|