Add paper link, GitHub link, task category, and sample usage
Browse filesHi! I'm Niels, part of the community science team at Hugging Face. I've updated the dataset card to better document the artifact. This PR includes:
- A link to the associated research paper.
- A link to the official GitHub repository.
- Relevant task category (`text-classification`).
- A sample usage code snippet from the repository's documentation.
- Preservation of the existing dataset metadata (features, splits, and configs).
README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
| 3 |
dataset_version: 0.2.3
|
| 4 |
dataset_info:
|
| 5 |
features:
|
|
@@ -243,10 +245,43 @@ configs:
|
|
| 243 |
- split: test
|
| 244 |
path: data/test-*
|
| 245 |
---
|
| 246 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 247 |
|
| 248 |
## Version
|
| 249 |
This repository contains dataset version **0.2.3**.
|
| 250 |
|
| 251 |
## License
|
| 252 |
-
This dataset is licensed under **CC BY 4.0** (`cc-by-4.0`).
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
dataset_version: 0.2.3
|
| 6 |
dataset_info:
|
| 7 |
features:
|
|
|
|
| 245 |
- split: test
|
| 246 |
path: data/test-*
|
| 247 |
---
|
| 248 |
+
|
| 249 |
+
# Dataset Card for ct-dosing-errors
|
| 250 |
+
|
| 251 |
+
This dataset provides the materials accompanying the paper "[Early Risk Stratification of Dosing Errors in Clinical Trials Using Machine Learning](https://huggingface.co/papers/2602.22285)".
|
| 252 |
+
|
| 253 |
+
The dataset is designed for the prediction of dosing errors in interventional clinical research. It comprises 42,112 clinical trials extracted from ClinicalTrials.gov, containing structured, semi-structured trial data, and unstructured protocol-related free-text data.
|
| 254 |
+
|
| 255 |
+
## Links
|
| 256 |
+
|
| 257 |
+
- **Paper:** [https://huggingface.co/papers/2602.22285](https://huggingface.co/papers/2602.22285)
|
| 258 |
+
- **GitHub Repository:** [https://github.com/ds4dh/CT-dosing-errors](https://github.com/ds4dh/CT-dosing-errors)
|
| 259 |
+
|
| 260 |
+
## Sample Usage
|
| 261 |
+
|
| 262 |
+
You can load the dataset using the `datasets` library:
|
| 263 |
+
|
| 264 |
+
```python
|
| 265 |
+
from datasets import load_dataset
|
| 266 |
+
|
| 267 |
+
ds = load_dataset(
|
| 268 |
+
"ds4dh/ct-dosing-errors",
|
| 269 |
+
split="train"
|
| 270 |
+
)
|
| 271 |
+
|
| 272 |
+
print(ds)
|
| 273 |
+
print(ds.features)
|
| 274 |
+
```
|
| 275 |
+
|
| 276 |
+
## Dataset Summary
|
| 277 |
+
|
| 278 |
+
The dataset includes labels for the prediction of dosing errors derived from adverse event reports and MedDRA terminology. It features a wide range of fields including:
|
| 279 |
+
- **Textual data:** Brief summaries, detailed descriptions, conditions, and protocol PDF text.
|
| 280 |
+
- **Structured data:** Clinical trial phases, enrollment counts, allocation, and intervention types.
|
| 281 |
+
- **Labels:** Binary indicators (`LABEL_wilson_label`) for elevated dosing error rates.
|
| 282 |
|
| 283 |
## Version
|
| 284 |
This repository contains dataset version **0.2.3**.
|
| 285 |
|
| 286 |
## License
|
| 287 |
+
This dataset is licensed under **CC BY 4.0** (`cc-by-4.0`).
|