Zuhyer999 commited on
Commit
2dec519
·
verified ·
1 Parent(s): 37f5c64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -40,4 +40,10 @@ interface = gr.Interface(
40
  fn=predict,
41
  inputs=gr.Image(type="pil"),
42
  outputs=gr.Textbox(label="Prediction"),
43
- title="Lung Cancer Classifier (PyTorch VGG1
 
 
 
 
 
 
 
40
  fn=predict,
41
  inputs=gr.Image(type="pil"),
42
  outputs=gr.Textbox(label="Prediction"),
43
+ title="Lung Cancer Classifier (PyTorch VGG16)",
44
+ description="Upload a lung CT scan image to classify it as Normal, Cancer, or Malignant."
45
+ )
46
+
47
+ if __name__ == "__main__":
48
+ interface.launch()
49
+