Backened commited on
Commit
3fa4109
·
verified ·
1 Parent(s): 7f916b2

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ dataset_preview.png filter=lfs diff=lfs merge=lfs -text
37
+ seg_predictions.png filter=lfs diff=lfs merge=lfs -text
38
+ seg_training_curves.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - medical-imaging
5
+ - retinal-segmentation
6
+ - retinopathy-of-prematurity
7
+ - pytorch
8
+ - unet
9
+ - segmentation
10
+ ---
11
+
12
+ # ROP Retinal Segmentation — U-Net (ResNet50)
13
+
14
+ Multi-class segmentation of retinal structures in ROP screening images.
15
+ Dataset: HVDROPDB | Classes: Background · Vessel · OpticDisc · Ridge
16
+
17
+ ## Test Set Metrics
18
+ | Structure | IoU | Dice |
19
+ |-----------|-----|------|
20
+ | Vessel | 0.1987 | 0.3280 |
21
+ | OpticDisc | 0.4838 | 0.6389 |
22
+ | Ridge | 0.5546 | 0.6925 |
23
+ | **Mean** | **0.4124** | **0.5531** |
config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "UNet-ResNet50",
3
+ "encoder": "resnet50",
4
+ "classes": [
5
+ "Background",
6
+ "Vessel",
7
+ "OpticDisc",
8
+ "Ridge"
9
+ ],
10
+ "img_size": 256,
11
+ "epochs": 40,
12
+ "batch_size": 8,
13
+ "lr": 0.0001,
14
+ "test_metrics": {
15
+ "mean_iou": 0.41239543797241324,
16
+ "mean_dice": 0.5531446056233512,
17
+ "per_class": {
18
+ "Vessel": {
19
+ "iou": 0.1987320470313231,
20
+ "dice": 0.32802613576253253
21
+ },
22
+ "OpticDisc": {
23
+ "iou": 0.48382218430439633,
24
+ "dice": 0.6388623962799708
25
+ },
26
+ "Ridge": {
27
+ "iou": 0.5546320825815201,
28
+ "dice": 0.6925452848275503
29
+ }
30
+ }
31
+ }
32
+ }
dataset_preview.png ADDED

Git LFS Details

  • SHA256: b2f4164fb15d04c41203524a67b3c99845376e61d8d4d2a4b9aa84054dbb7a0e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.12 MB
seg_metrics.csv ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ Structure,IoU,Dice
2
+ Vessel,0.1987,0.3280
3
+ OpticDisc,0.4838,0.6389
4
+ Ridge,0.5546,0.6925
5
+ MEAN,0.4124,0.5531
seg_predictions.png ADDED

Git LFS Details

  • SHA256: 3095848256eb1fbdc63e4373ae6dd5fa4af440f888aa2a4699b6aa35e8219c06
  • Pointer size: 132 Bytes
  • Size of remote file: 2.02 MB
seg_training_curves.png ADDED

Git LFS Details

  • SHA256: a5c9299124260e65ef25dbf008396c947bd320ebf41aea3feb1a9dd5a376854c
  • Pointer size: 131 Bytes
  • Size of remote file: 142 kB
unet_resnet50.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4e2db2ef4cfe7bee73d39e5da89d1e4638b700050dfc9831b93f141b0a6cc80
3
+ size 130442909