Commit ·
5abe783
1
Parent(s): f7ab948
Add metadata and improve model card (#1)
Browse files- Add metadata and improve model card (556fcba28f1d2df5b854024260563ec2ae39ac7b)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,31 +1,49 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
tags:
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
-
# Model card for FunduSegmenter
|
| 6 |
-
This is the official model card for sharing the pre-trained weights and datasets for [FunduSegmenter](https://github.com/JusticeZzy/FunduSegmenter).
|
| 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 |
-
Zhenyi Zhao
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pipeline_tag: image-segmentation
|
| 4 |
+
library_name: pytorch
|
| 5 |
tags:
|
| 6 |
+
- medical
|
| 7 |
+
- retina
|
| 8 |
+
- fundus
|
| 9 |
+
- medical-imaging
|
| 10 |
---
|
|
|
|
|
|
|
| 11 |
|
| 12 |
+
# FunduSegmenter
|
| 13 |
|
| 14 |
+
This is the official repository for **FunduSegmenter**, the first adaptation of the [RETFound](https://github.com/rmaphoh/RETFound) foundation model for joint optic disc (OD) and optic cup (OC) segmentation in retinal fundus images.
|
| 15 |
|
| 16 |
+
- **Paper:** [FunduSegmenter: Leveraging the RETFound Foundation Model for Joint Optic Disc and Optic Cup Segmentation in Retinal Fundus Images](https://huggingface.co/papers/2508.11354)
|
| 17 |
+
- **Code:** [GitHub - JusticeZzy/FunduSegmenter](https://github.com/JusticeZzy/FunduSegmenter)
|
| 18 |
+
- **License:** [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) (Non-commercial use only)
|
| 19 |
|
| 20 |
+
## Introduction
|
| 21 |
+
FunduSegmenter integrates a series of novel modules with RETFound, including a Pre-adapter, a Decoder, a Post-adapter, skip connections with Convolutional Block Attention Module (CBAM), and a Vision Transformer block adapter. The model demonstrates strong stability and generalization on both in-distribution and out-of-distribution data, providing stable OD and OC segmentation across multiple fundus camera datasets (IDRiD, Drishti-GS, RIM-ONE-r3, and REFUGE).
|
| 22 |
|
| 23 |
+
## Repository Contents
|
| 24 |
+
This repository hosts the pre-trained weights and datasets associated with the paper:
|
| 25 |
|
| 26 |
+
1. **Datasets.zip**: Processed datasets used in the study.
|
| 27 |
+
2. **DUNet_OD_CentreCrop_pretrained.pth**: Pre-trained DUNet used for OD center cropping pre-processing.
|
| 28 |
+
3. **FunduSegmenter_CroppedImage.pth**: Pre-trained FunduSegmenter trained on cropped ROI images.
|
| 29 |
+
4. **FunduSegmenter_OriginalImage.pth**: Pre-trained FunduSegmenter trained on original fundus images.
|
| 30 |
+
5. **Weights.zip**: All trained weights reported in the paper's experiments.
|
| 31 |
+
6. **mobilenet_v2-6a65762b.pth**: Required pre-trained weight for the DoFE baseline.
|
| 32 |
|
| 33 |
+
## License Note
|
| 34 |
+
While the code in the GitHub repository is under the MIT License, all the weights (including the original RETFound weights and the derived FunduSegmenter weights) are under **CC BY-NC 4.0** (Creative Commons Attribution-NonCommercial 4.0 International). This means the weights are for **non-commercial use only**.
|
| 35 |
|
| 36 |
+
## Citation
|
| 37 |
+
If you use our code or weights, please cite the following paper:
|
| 38 |
|
| 39 |
+
```bibtex
|
| 40 |
+
@article{zhao2025fundusegmenter,
|
| 41 |
+
title={FunduSegmenter: Leveraging the RETFound Foundation Model for Joint Optic Disc and Optic Cup Segmentation in Retinal Fundus Images},
|
| 42 |
+
author={Zhao, Zhenyi and Mookiah, M R K and Trucco, Emanuele},
|
| 43 |
+
journal={arXiv preprint arXiv:2508.11354},
|
| 44 |
+
year={2025}
|
| 45 |
+
}
|
| 46 |
```
|
| 47 |
|
| 48 |
+
## Contact
|
| 49 |
+
Zhenyi Zhao: zhenyi.zhao@hotmail.com or 2578745@dundee.ac.uk
|