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