Spaces:
Sleeping
Sleeping
Update text on title and description
Browse files
app.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
|
| 2 |
-
# MULTICLASS
|
| 3 |
import gradio as gr
|
| 4 |
import os
|
| 5 |
import torch
|
|
@@ -42,9 +41,9 @@ def predict_img(img):
|
|
| 42 |
|
| 43 |
return pred_labels_and_probs, pred_time
|
| 44 |
|
| 45 |
-
title = "Covid Lung
|
| 46 |
-
description = "Upload
|
| 47 |
-
article = "Created at 2026"
|
| 48 |
|
| 49 |
example_list = [["examples/" + example] for example in os.listdir("examples")]
|
| 50 |
|
|
|
|
| 1 |
|
|
|
|
| 2 |
import gradio as gr
|
| 3 |
import os
|
| 4 |
import torch
|
|
|
|
| 41 |
|
| 42 |
return pred_labels_and_probs, pred_time
|
| 43 |
|
| 44 |
+
title = "Covid Lung Classifier: AI-Driven Pulmonary Assessment"
|
| 45 |
+
description = "Upload a chest X-ray for an automated assessment. This system uses EfficientNetV2 deep learning to identify Normal, Viral Pneumonia, and COVID-19 cases with 92% accuracy."
|
| 46 |
+
article = "Created at Mauaque Resettlement Gonzales Compound 2026"
|
| 47 |
|
| 48 |
example_list = [["examples/" + example] for example in os.listdir("examples")]
|
| 49 |
|