Datasets:

File size: 2,852 Bytes
5c7ce61
573c5d8
 
 
5c7ce61
573c5d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5c7ce61
573c5d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
  - en
  - bg
license: cc-by-4.0
task_categories:
  - translation
  - text-generation
tags:
  - medical
  - clinical
  - discharge-summaries
  - parallel-corpus
  - synthetic
  - bulgarian
  - english
  - biomedical
pretty_name: BGSynthMedic
size_categories:
  - 100<n<1K
---

# BGSynthMedic: Synthetic Parallel English–Bulgarian Discharge Summary Corpus

Parallel corpus of 450 synthetic discharge summaries in English and Bulgarian, covering 9 medical conditions across 4 specialties.

The English documents originate from [SynthMedic](https://huggingface.co/datasets/grazh/synth-medic) and were automatically translated into Bulgarian and validated. The dataset is intended for research in clinical NLP, machine translation, and cross-lingual entity linking for low-resource languages.

## Dataset Details

| Split | Documents |
|-------|----------:|
| train | 450       |

### Covered Specialties and Conditions

| Specialty | Condition |
|-----------|-----------|
| Cardiovascular | Arterial hypertension |
| Endocrinology | Hypothyroidism |
| Endocrinology | Type 1 diabetes |
| Endocrinology | Type 2 diabetes |
| Infectious diseases | Influenza |
| Neurology | Intracerebral hemorrhage |
| Neurology | Ischemic stroke |
| Traumatology | Ankle fractures |
| Traumatology | Distal humeral fractures |

50 documents per condition.

## Dataset Structure

```python
{
  "document_id":          "cardiovascular_arterial hypertension_0",
  "discharge_summary_en": "...",   # English discharge summary
  "discharge_summary_bg": "...",   # Bulgarian translation
}
```

### Fields

- **document_id** (`string`): Unique identifier encoding specialty, condition, and document index (e.g. `neurology_ischemic stroke_12`).
- **discharge_summary_en** (`string`): Synthetic English discharge summary generated by GPT-4.
- **discharge_summary_bg** (`string`): Bulgarian translation produced by BGGpt.

## Usage

```python
from datasets import load_dataset

ds = load_dataset("username/bgsynthmedic")
print(ds["train"][0])
```

## Source Data

English texts are derived from [SynthMedic](https://huggingface.co/datasets/grazh/synth-medic), a dataset of GPT-4-generated synthetic discharge summaries.
Bulgarian translations were produced using BGGpt and reviewed for quality.

## Citation

If you use this dataset, please cite:

```bibtex
@inproceedings{boytcheva2026bgsynthmedic,
  title     = {{BGSynthMedic}: Synthetic parallel {English}-{Bulgarian} discharge summary corpus with automatic annotations},
  author    = {Boytcheva, Svetla and Vassileva, Svetlana and Boytchev, Pavel},
  booktitle = {Proceedings of the International Conference on Computational Linguistics in Bulgaria (CLIB 2026)},
  year      = {2026}
}
```

## License

[Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/)