File size: 3,168 Bytes
e39fb0a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
pretty_name: RadGraph-IT
language:
- it
task_categories:
- token-classification
size_categories:
- n<1K
tags:
- radiology
- clinical-nlp
- named-entity-recognition
- relation-extraction
- radgraph
- italian
configs:
- config_name: sample
  data_files:
  - split: train
    path: data/radgraph_it_50.jsonl
---

# RadGraph-IT Dataset

## Dataset summary

RadGraph-IT contains 2,850 Italian radiology reports with entity and relation
annotations in a DyGIE-compatible JSONL format. The corpus combines 2,300
reports from [RadGraph-XL](https://aclanthology.org/2024.findings-acl.765/)
with 550 reports derived from
[RadGraph 1.0](https://physionet.org/content/radgraph/1.0.0/).

This repository provides a 50-report excerpt of the corpus used for training.
The complete RadGraph-IT corpus is not currently available for publication.
The full corpus includes 1,050 chest X-ray reports, 600 chest CT reports, 600
abdomen/pelvis CT reports, and 600 brain MRI reports.

## Translation and manual review

All 2,850 English reports were localized with the English-to-Italian pipeline
developed for the thesis *AI-Driven Keyword Extraction and Structuralization
of Medical Reports* and released in the
[`EIDOSLAB/radiomicslab-keyword-extraction`](https://github.com/EIDOSLAB/radiomicslab-keyword-extraction)
repository.

After translation and span remapping, the localized reports and projected
annotations were manually reviewed. The Italian text, entity boundaries,
entity labels, and relations were corrected where necessary.

## Annotation schema

Each entity is a contiguous, inclusive token span assigned one of six labels:

- `Anatomy::definitely present`
- `Anatomy::uncertain`
- `Anatomy::definitely absent`
- `Observation::definitely present`
- `Observation::uncertain`
- `Observation::definitely absent`

Entities are connected by three directed relation types:

- `located_at`: an Observation and its anatomical site;
- `suggestive_of`: an Observation and another observation that it suggests;
- `modify`: two Observations or two Anatomy entities when one qualifies the
  other.

## Data format

The included [`data/radgraph_it_50.jsonl`](data/radgraph_it_50.jsonl)
uses the same representation consumed by the training stack. Each line is one
JSON object with:

- `dataset`: a provenance-aware RadGraph-IT source and modality label, such as
  `radgraph-it-stanford-chest-x-ray`;
- `doc_key`: the numeric index from the original source subset; the pair
  `(dataset, doc_key)` uniquely identifies and traces each report;
- `sentences`: a list containing the tokenized report;
- `ner`: entity tuples `[start, end, label]`, with inclusive token indices;
- `relations`: directed relation tuples
  `[source_start, source_end, target_start, target_end, label]`, with inclusive
  token indices.

The entire report is represented as one DyGIE "sentence" so relations can
connect entities anywhere in the report.

## Sample distribution

The 50-report excerpt is distributed across the four imaging modalities as follows:

| Modality | Sample reports |
|---|---:|
| Chest X-ray | 18 |
| Chest CT | 11 |
| Abdomen/pelvis CT | 11 |
| Brain MRI | 10 |
| **Total** | **50** |