GerryRaz commited on
Commit
2b24523
·
verified ·
1 Parent(s): a09bd46

Update text on title and description

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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 Classified"
46
- description = "Upload an MRI scan to receive an automated assessment. This system uses deep learning to identify potential abnormalities, providing a prediction of tumor presence along with confidence scores and processing time."
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