File size: 496 Bytes
4efab4a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Smart Scanner Model
This model detects eye diseases from fundus images.
## Model Description
- Input: Fundus images (512x512 RGB)
- Output: 5 classes (Normal, Mild, Moderate, Severe, Proliferative)
- Architecture: ResNet18 with custom classification head
## Usage
from transformers import AutoModelForImageClassification
model = AutoModelForImageClassification.from_pretrained("your-username/smart-scanner-model")
## Labels
- 0: Normal
- 1: Mild
- 2: Moderate
- 3: Severe
- 4: Proliferative |