File size: 6,585 Bytes
12c02a1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
---
license: other
license_name: mixed-dataset-terms
license_link: LICENSE
task_categories:
  - image-classification
  - image-segmentation
  - object-detection
language:
  - en
tags:
  - medical-imaging
  - wound-care
  - benchmark
  - chronic-wounds
  - multi-task
  - mlhc-2026
pretty_name: WILLIE Wound Benchmark
size_categories:
  - 1K<n<10K
extra_gated_prompt: >-
  This benchmark aggregates three third-party wound datasets, each governed by
  its own terms. By requesting access you confirm you have obtained, or are
  eligible to obtain, the underlying datasets under their original licences —
  including the FUSeg challenge data-use agreement — and that you will use them
  for research purposes only.
extra_gated_fields:
  Name: text
  Institution: text
  Intended use: text
  I agree to the terms of the underlying datasets: checkbox
---

# WILLIE Wound Benchmark

<div align="center">

<img src="assets/hero.png" alt="WILLIE benchmark overview" width="90%">

<em>Three public wound datasets unified into a single 5-class taxonomy with
fixed splits for classification, segmentation and localization.</em>

</div>

The benchmark accompanying **WILLIE**, published at **MLHC 2026**.

Developed in the **Qian Group**, University of Houston.

- **Models:** [QianGroup/willie-weights](https://huggingface.co/QianGroup/willie-weights)
- **Code and notebooks:** [GitHub repository](https://github.com/<GITHUB_ORG>/<REPO>)
- **Paper:** MLHC 2026 *(link to follow)*

---

## What this is

Three public wound datasets — FUSeg, AZH and Medetec — mapped onto one 5-class
taxonomy with fixed, verified splits and a shared evaluation protocol across
three tasks. Before this, the three were benchmarked separately with
incompatible label schemes, which made cross-dataset comparison impossible.

**The contribution is the unification and the splits, not the images.**

| Class | Label |
|:--|--:|
| `diabetic` | 0 |
| `pressure` | 1 |
| `surgical` | 2 |
| `venous` | 3 |
| `no_wound` | 4 |

**3,535 referenced files** across classification, detection and segmentation
tasks.

---

## Contents

```
data.tar.gz              images from all three source datasets
index/
  data_index.csv         unified index, 2,525 rows, the authoritative source
  splits.json            split definitions
  label_map.json         taxonomy mapping
  azh_clean_trainval.csv AZH cleaned train/val index
  fuseg_det_boxes.csv    FUSeg detection boxes
manifests/
  cls_train.csv          918   classification
  cls_val.csv            648
  cls_test.csv           234
  det_train.csv          810   detection
  det_val.csv            400
  fuseg_test.csv         200   segmentation test
  5fold_splits_v2.pt     cross-validation folds
  data_census.json       per-source counts
verify_data.py           confirms your images are correctly placed
```

---

## Usage

```bash
tar -xzf data.tar.gz
python verify_data.py
```

Expected output:

```
TOTAL                      3535        0
All referenced files present. The splits will reproduce.
```

The script reports per-directory counts and names any missing files, so a
partial or mis-nested extraction is caught before you train on it.

### Expected layout

```
data/
├── FUSeg/
│   ├── train/images/   610      train/labels/   610
│   ├── val/images/     400      val/labels/     400
│   └── test/images/    200      (no public labels)
├── AZH/
│   ├── train/   BG 75 · diabetic 139 · "no wound" 75 ·
│   │            pressure 100 · surgical 122 · venous 185
│   └── test/    BG 25 · diabetic 46 · "no wound" 25 ·
│                pressure 34 · surgical 42 · venous 62
└── Medetec/
    ├── diabetic/   48        pressure/  170
    └── toes/       34        venous/    133
```

> The AZH class folder `no wound` contains a space. Keep it.

All manifest paths are relative to the repository root.

---

## Source datasets

| Dataset | Source | Terms |
|:--|:--|:--|
| **FUSeg** | [fusc.grand-challenge.org](https://fusc.grand-challenge.org) | Challenge data-use agreement required |
| **AZH** | UWM Big Data Lab, AZH Wound and Vascular Center | See source repository |
| **Medetec** | [medetec.co.uk](http://www.medetec.co.uk) | See site terms |

Each carries its own licence. **Obtain them from their original sources and
comply with those terms.** The archive here is provided for reproducibility of
the published splits and does not grant any rights over the underlying images.

---

## Reference results

WILLIE test-set results on this benchmark:

| Task | Metric | Score |
|:--|:--|--:|
| Classification | Accuracy | 91.88% |
| Segmentation | Dice | 91.41% |
| Localization | AP@0.5 | 96.23% |

Headline numbers use the 5-fold ensemble with test-time augmentation. See the
paper for the full protocol.

---

## Known limitations

**Duplicate images across splits.** Verified by byte-level comparison:

- One image identical between AZH train and test
  (`train/surgical/10_0.jpg` / `test/surgical/99_0.jpg`). On the 234-image AZH
  test set, the maximum effect on the reported 91.88% accuracy is **0.43
  percentage points** (worst case 91.45%).
- Nine image pairs identical between FUSeg train and validation. Validation is
  used for model selection only and does not enter the reported test Dice.
- Duplicate copies within splits: FUSeg train 10, validation 6, test 7.
- FUSeg train↔test and validation↔test: no duplicates.

**Domain coverage.** Foot, pressure, venous and surgical wound photographs from
a small number of clinical sources. Imaging conditions, camera hardware and
skin-tone distribution are not controlled or documented, and per-skin-tone
performance has not been measured. Treat cross-population generalisation as
untested.

**Class balance.** `no_wound` and background classes derive from AZH only. The
taxonomy merges source-specific labels; the mapping is in
`index/label_map.json`.

**Research use only.** Not validated for clinical decision-making.

---

## Citation

```bibtex
@inproceedings{willie2026,
  title     = {WILLIE: A Unified Vision-Transformer Framework and Benchmark
               for Wound Classification, Segmentation, and Localization},
  author    = {Maddikunta, Gopi Trinadh and Qian, Peizhu},
  booktitle = {Proceedings of the Machine Learning for Healthcare Conference (MLHC)},
  year      = {2026}
}
```

Please also cite FUSeg, AZH and Medetec per their own requirements.

---

Developed in the Qian Group, University of Houston. Advisor: Dr. Peizhu Qian.
Computation performed on the UH *carya* cluster.