Spaces:
Sleeping
Sleeping
GilbertKrantz commited on
Commit Β·
a9f59dc
1
Parent(s): b5fe26b
Update Requirements
Browse files- README.md +14 -0
- requirements.txt +10 -11
README.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Eye Disease Detection
|
| 2 |
|
| 3 |
This repository contains a Gradio web application for eye disease detection using deep learning models. The application allows users to upload fundus images and get predictions for common eye conditions.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Eye Disease Detection Models
|
| 3 |
+
emoji: ππ
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 5.29.0
|
| 8 |
+
app_file: gradio_inference.py
|
| 9 |
+
pinned: true
|
| 10 |
+
short_description: Eye disease detection using deep learning models
|
| 11 |
+
license: apache-2.0
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
|
| 15 |
# Eye Disease Detection
|
| 16 |
|
| 17 |
This repository contains a Gradio web application for eye disease detection using deep learning models. The application allows users to upload fundus images and get predictions for common eye conditions.
|
requirements.txt
CHANGED
|
@@ -1,11 +1,10 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
tqdm>=4.
|
| 11 |
-
timm>=1.0.0
|
|
|
|
| 1 |
+
gradio>=5.29.0,
|
| 2 |
+
matplotlib>=3.10.3,
|
| 3 |
+
pandas>=2.2.3,
|
| 4 |
+
scikit-learn>=1.6.1,
|
| 5 |
+
seaborn>=0.13.2,
|
| 6 |
+
timm>=1.0.15,
|
| 7 |
+
torch>=2.7.0,
|
| 8 |
+
torchaudio>=2.7.0,
|
| 9 |
+
torchvision>=0.22.0,
|
| 10 |
+
tqdm>=4.67.1,
|
|
|