Updated the dataset details
Browse files
README.md
CHANGED
|
@@ -8,17 +8,37 @@ The corpus was curated to enable systematic investigation of how data compositio
|
|
| 8 |
|
| 9 |
## Dataset Overview
|
| 10 |
|
| 11 |
-
Dataset Name
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
## Details
|
| 21 |
|
| 22 |
This dataset is accompanied by a peer-reviewed research paper accepted at EMNLP 2025 Conference, which presents comprehensive bias analysis methodology for clinical LLMs and provides transparency in dataset composition and curation.
|
| 23 |
|
| 24 |
-
**Reference Paper:** "Building Trust in Clinical LLMs: Bias Analysis and Dataset Transparency" (EMNLP 2025)
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
## Dataset Overview
|
| 10 |
|
| 11 |
+
**Dataset Name**: HC4 (Healthcare Comprehensive Commons Corpus)
|
| 12 |
+
|
| 13 |
+
**Size**: 153GB (around 65 billion tokens)
|
| 14 |
+
|
| 15 |
+
**Number of samples**: 9.7+ million documents from diverse sources including peer-reviewed scientific literature collected from PubMed Central, Semantic Scholar, OpenAlex repositories
|
| 16 |
+
|
| 17 |
+
**Repository**: m42-health/HC4
|
| 18 |
+
|
| 19 |
+
**Purpose**: Pretraining large language models for healthcare applications
|
| 20 |
+
|
| 21 |
+
**Format**: `.parquet` files
|
| 22 |
+
|
| 23 |
+
**License**: Open licenses for each data sample permitting commercial use and redistribution
|
| 24 |
+
|
| 25 |
+
**Organization**: M42 (Abu Dhabi)
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
## How to load the dataset
|
| 29 |
+
|
| 30 |
+
```python
|
| 31 |
+
from datasets import load_dataset
|
| 32 |
+
|
| 33 |
+
dataset = load_dataset("m42-health/HC4")
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
|
| 37 |
|
| 38 |
## Details
|
| 39 |
|
| 40 |
This dataset is accompanied by a peer-reviewed research paper accepted at EMNLP 2025 Conference, which presents comprehensive bias analysis methodology for clinical LLMs and provides transparency in dataset composition and curation.
|
| 41 |
|
| 42 |
+
**Reference Paper:** "Building Trust in Clinical LLMs: Bias Analysis and Dataset Transparency" (EMNLP 2025)
|
| 43 |
+
|
| 44 |
+
**Link to arxiv page**: https://arxiv.org/pdf/2510.18556
|