Update dataset card with paper link and license metadata
Browse filesThis PR improves the dataset card for `ICDOPS-QA-2024` by:
* Adding the official paper link, "[Unlocking Public Catalogues: Instruction-Tuning LLMs for ICD Coding of German Tumor Diagnoses](https://huggingface.co/papers/2510.13624)", prominently at the top of the card and updating the "Citable publication" section. This ensures proper attribution and makes the associated research easily discoverable.
* Including a BibTeX entry for the paper in the "Citation and further information" section, facilitating academic referencing.
* Adding the `license: other` tag to the YAML metadata. This aligns with Hugging Face best practices for datasets with custom licensing terms, which are fully detailed in the Markdown content.
README.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: question
|
|
@@ -16,23 +24,18 @@ configs:
|
|
| 16 |
data_files:
|
| 17 |
- split: train
|
| 18 |
path: data/train-*
|
| 19 |
-
task_categories:
|
| 20 |
-
- question-answering
|
| 21 |
-
- text-classification
|
| 22 |
-
language:
|
| 23 |
-
- de
|
| 24 |
tags:
|
| 25 |
- medical
|
| 26 |
- icd-10
|
| 27 |
- icd-o-3
|
| 28 |
- ops
|
| 29 |
-
|
| 30 |
-
- 100K<n<1M
|
| 31 |
-
pretty_name: ICDOPS-QA-2024
|
| 32 |
---
|
| 33 |
|
| 34 |
# Dataset Card for ICDOPS-QA-2024
|
| 35 |
|
|
|
|
|
|
|
| 36 |
## Content
|
| 37 |
This dataset contains 518,116 question-answer pairs in German medical language with a focus on **oncological diagnoses**, covering the following **medical coding systems**, including:
|
| 38 |
- **ICD-10-GM** (International Statistical Classification of Diseases, 10th revision, German Modification) via the [alphabetical index (Alpha-ID)](https://www.bfarm.de/EN/Code-systems/Classifications/ICD/ICD-10-GM/Alphabetical-index/_node.html)
|
|
@@ -42,14 +45,14 @@ This dataset contains 518,116 question-answer pairs in German medical language w
|
|
| 42 |
The dataset uses the 2024 versions of the coding systems.
|
| 43 |
|
| 44 |
## Loading the dataset
|
| 45 |
-
```
|
| 46 |
import datasets
|
| 47 |
datasets.load_dataset("stefan-m-lenz/ICDOPS-QA-2024", split="train")
|
| 48 |
```
|
| 49 |
|
| 50 |
## Dataset Structure
|
| 51 |
### Schema
|
| 52 |
-
```
|
| 53 |
{
|
| 54 |
'question': string
|
| 55 |
'answer': string
|
|
@@ -126,4 +129,12 @@ The following models have been fine-tuned using the dataset:
|
|
| 126 |
## Citation and further information
|
| 127 |
This dataset and the corresponding trained models were developed by Dr. Stefan Lenz and Lakisha Ortiz Rosario in the Medical Informatics Unit of Dr. Torsten Panholzer, at the Institute of Medical Biometry, Epidemiology and Informatics (IMBEI) of the University Medical Center of the Johannes Gutenberg University Mainz. The work was conducted in cooperation with Georg Vollmar at the University Cancer Center Mainz, under the leadership of Prof. Dr. Thomas Kindler.
|
| 128 |
|
| 129 |
-
Citable publication:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- de
|
| 4 |
+
size_categories:
|
| 5 |
+
- 100K<n<1M
|
| 6 |
+
task_categories:
|
| 7 |
+
- question-answering
|
| 8 |
+
- text-classification
|
| 9 |
+
pretty_name: ICDOPS-QA-2024
|
| 10 |
dataset_info:
|
| 11 |
features:
|
| 12 |
- name: question
|
|
|
|
| 24 |
data_files:
|
| 25 |
- split: train
|
| 26 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
tags:
|
| 28 |
- medical
|
| 29 |
- icd-10
|
| 30 |
- icd-o-3
|
| 31 |
- ops
|
| 32 |
+
license: other
|
|
|
|
|
|
|
| 33 |
---
|
| 34 |
|
| 35 |
# Dataset Card for ICDOPS-QA-2024
|
| 36 |
|
| 37 |
+
Paper: [Unlocking Public Catalogues: Instruction-Tuning LLMs for ICD Coding of German Tumor Diagnoses](https://huggingface.co/papers/2510.13624)
|
| 38 |
+
|
| 39 |
## Content
|
| 40 |
This dataset contains 518,116 question-answer pairs in German medical language with a focus on **oncological diagnoses**, covering the following **medical coding systems**, including:
|
| 41 |
- **ICD-10-GM** (International Statistical Classification of Diseases, 10th revision, German Modification) via the [alphabetical index (Alpha-ID)](https://www.bfarm.de/EN/Code-systems/Classifications/ICD/ICD-10-GM/Alphabetical-index/_node.html)
|
|
|
|
| 45 |
The dataset uses the 2024 versions of the coding systems.
|
| 46 |
|
| 47 |
## Loading the dataset
|
| 48 |
+
```python
|
| 49 |
import datasets
|
| 50 |
datasets.load_dataset("stefan-m-lenz/ICDOPS-QA-2024", split="train")
|
| 51 |
```
|
| 52 |
|
| 53 |
## Dataset Structure
|
| 54 |
### Schema
|
| 55 |
+
```json
|
| 56 |
{
|
| 57 |
'question': string
|
| 58 |
'answer': string
|
|
|
|
| 129 |
## Citation and further information
|
| 130 |
This dataset and the corresponding trained models were developed by Dr. Stefan Lenz and Lakisha Ortiz Rosario in the Medical Informatics Unit of Dr. Torsten Panholzer, at the Institute of Medical Biometry, Epidemiology and Informatics (IMBEI) of the University Medical Center of the Johannes Gutenberg University Mainz. The work was conducted in cooperation with Georg Vollmar at the University Cancer Center Mainz, under the leadership of Prof. Dr. Thomas Kindler.
|
| 131 |
|
| 132 |
+
Citable publication: [Unlocking Public Catalogues: Instruction-Tuning LLMs for ICD Coding of German Tumor Diagnoses](https://huggingface.co/papers/2510.13624)
|
| 133 |
+
```bibtex
|
| 134 |
+
@article{lenz2024unlocking,
|
| 135 |
+
title={Unlocking Public Catalogues: Instruction-Tuning LLMs for ICD Coding of German Tumor Diagnoses},
|
| 136 |
+
author={Lenz, Stefan M and Ortiz Rosario, Lakisha and Vollmar, Georg and Panholzer, Torsten and Kindler, Thomas},
|
| 137 |
+
journal={arXiv preprint arXiv:2510.13624},
|
| 138 |
+
year={2024}
|
| 139 |
+
}
|
| 140 |
+
```
|