mmarquezsa commited on
Commit
06a4505
·
verified ·
1 Parent(s): 2ee4ff3

fix: update README to trigger clean rebuild

Browse files
Files changed (1) hide show
  1. README.md +13 -37
README.md CHANGED
@@ -10,44 +10,20 @@ app_file: app.py
10
  pinned: false
11
  ---
12
 
13
- # WoundNetB7 — Automated DFU Assessment Pipeline
14
 
15
- End-to-end pipeline for Diabetic Foot Ulcer (DFU) analysis:
 
 
 
 
16
 
17
- **Image** -> **Multiclass Segmentation** -> **PWAT Scoring** + **Fitzpatrick/ITA Estimation**
 
 
 
18
 
19
- ## Pipeline
 
20
 
21
- ```
22
- Input Image (DFU photograph)
23
- |
24
- v
25
- [1] WoundNetB7 Segmentation (EfficientNet-B7 + ASPP + CBAM)
26
- -> 4-class masks: background, foot, perilesion, ulcer
27
- -> Ulcer Dice: 0.927 (95% CI: [0.917, 0.936])
28
- |
29
- +---> [2] PWAT Estimation (XGBoost per item)
30
- | -> Items 3-8 scores (0-4 ordinal)
31
- | -> 5-fold CV: MAE 0.61-0.87, Adjacent Match 75-89%
32
- |
33
- +---> [3] Fitzpatrick/ITA Estimation
34
- | -> Healthy skin = foot - perilesion - ulcer
35
- | -> ITA angle + Fitzpatrick I-VI classification
36
- | -> Calibrated on 61 DFU images (86.9% exact match)
37
- |
38
- +---> [4] Debiasing
39
- -> PWAT scores adjusted by Fitzpatrick type
40
- -> 18% max group gap reduction (p < 10^-27)
41
- ```
42
-
43
- ## Models
44
-
45
- | Component | Architecture | Metric | Value |
46
- |-----------|-------------|--------|-------|
47
- | Segmentation | EfficientNet-B7 + UNet + ASPP + CBAM | Ulcer Dice | 0.927 |
48
- | PWAT Item 7 | XGBoost + SMOTE | MAE / Adjacent | 0.61 / 89.3% |
49
- | Fitzpatrick | ITA calibrated thresholds | Exact match | 86.9% |
50
-
51
- ## License
52
-
53
- Research use only. Clinical deployment requires regulatory approval.
 
10
  pinned: false
11
  ---
12
 
13
+ # WoundNetB7 — DFU Analysis Pipeline
14
 
15
+ Complete pipeline for Diabetic Foot Ulcer analysis:
16
+ 1. **Binary segmentation** (ulcer detection, Dice: 0.927)
17
+ 2. **Multiclass segmentation** (background / foot / perilesion / ulcer)
18
+ 3. **Fitzpatrick/ITA** skin type estimation (86.9% accuracy)
19
+ 4. **PWAT scores** with Fitzpatrick debiasing (46.6% group gap reduction)
20
 
21
+ ## Features
22
+ - **Guided camera capture** with foot silhouette overlay for healthcare workers
23
+ - **PDF clinical report** downloadable with all results
24
+ - **JSON output** for system integration
25
 
26
+ ## Model
27
+ EfficientNet-B7 + ASPP + CBAM + CoordAttention + TAM (Topological Attention Module)
28
 
29
+ Trained with Combo Loss + Small Object Focal Loss. 6-fold TTA at inference.