Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
|