chidojawbreaker commited on
Commit
5626d0a
1 Parent(s): ec5bd54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -22,5 +22,10 @@ def predict(Image):
22
  prediction = 'PNEUMONIA DETECTED'
23
  return prediction
24
 
25
- iface = gr.Interface(fn=predict, inputs="image", outputs="text")
 
 
 
 
 
26
  iface.launch()
 
22
  prediction = 'PNEUMONIA DETECTED'
23
  return prediction
24
 
25
+ title = "CT-iRAD"
26
+ description = "Welcome to CT-iRAD -- a web based decision support system for radiologists when screening lung diseases -- COVID-19, LUNG CANCER and PNEUMONIA -- in CT images."
27
+ description = 'Please Upload the CT image below"'
28
+
29
+ iface = gr.Interface(fn=predict, inputs="image", outputs="text", theme="darkhuggingface")
30
+
31
  iface.launch()