Spaces:
Configuration error
Configuration error
Update README.md
Browse files
README.md
CHANGED
@@ -19,20 +19,20 @@ To work with the MedHallu dataset, please install the Hugging Face `datasets` li
|
|
19 |
|
20 |
```bash
|
21 |
pip install datasets
|
|
|
22 |
|
23 |
## How to Use MedHallu
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
|
29 |
-
|
30 |
-
|
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 |
|
@@ -56,3 +56,6 @@ If you find MedHallu useful in your research, please consider citing our work:
|
|
56 |
year={2025},
|
57 |
publisher={}
|
58 |
}
|
|
|
|
|
|
|
|
19 |
|
20 |
```bash
|
21 |
pip install datasets
|
22 |
+
```
|
23 |
|
24 |
## How to Use MedHallu
|
25 |
|
26 |
+
**Downloading the Dataset:**
|
27 |
+
```python3
|
28 |
+
from datasets import load_dataset
|
29 |
|
30 |
+
# Load the 'pqa_labeled' split: 1,000 high-quality, human-annotated samples.
|
31 |
+
medhallu_labeled = load_dataset("UTAustin-AIHealth/MedHallu", "pqa_labeled")
|
|
|
|
|
|
|
32 |
|
33 |
+
# Load the 'pqa_artificial' split: 9,000 samples generated via an automated pipeline.
|
34 |
+
medhallu_artificial = load_dataset("UTAustin-AIHealth/MedHallu", "pqa_artificial")
|
35 |
+
```
|
36 |
|
37 |
---
|
38 |
|
|
|
56 |
year={2025},
|
57 |
publisher={}
|
58 |
}
|
59 |
+
|
60 |
+
## Contact
|
61 |
+
For further information or inquiries about MedHallu, please reach out at [email protected]
|