Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -83,7 +83,13 @@ interface = gr.Interface(
|
|
83 |
inputs=gr.components.Image(type='pil'), # Updated input component
|
84 |
outputs=[gr.components.Label(label="Disease Probabilities"), gr.components.Textbox(label="References", value=references, lines=10)],
|
85 |
title="CheXNet Pneumonia Detection",
|
86 |
-
description="Upload a chest X-ray to detect the probability of 14 different diseases.
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
)
|
88 |
|
89 |
# Gradio Interface
|
|
|
83 |
inputs=gr.components.Image(type='pil'), # Updated input component
|
84 |
outputs=[gr.components.Label(label="Disease Probabilities"), gr.components.Textbox(label="References", value=references, lines=10)],
|
85 |
title="CheXNet Pneumonia Detection",
|
86 |
+
description="""Upload a chest X-ray to detect the probability of 14 different diseases.
|
87 |
+
References:
|
88 |
+
1. Huang, G., et al. (2017). Densely Connected Convolutional Networks. Proceedings of the IEEE conference on computer vision and pattern recognition.
|
89 |
+
2. Wang, X., et al. (2017). ChestX-ray8: Hospital-scale chest X-ray database and benchmarks on weakly-supervised classification and localization of common thorax diseases. IEEE CVPR.
|
90 |
+
3. Rajpurkar, P., et al. (2017). CheXNet: Radiologist-level pneumonia detection on chest X-rays with deep learning. arXiv preprint arXiv:1711.05225.
|
91 |
+
4. Abid, A., et al. (2019). Gradio: Hassle-Free Sharing and Testing of Machine Learning Models. arXiv preprint arXiv:1906.02569.
|
92 |
+
""",
|
93 |
)
|
94 |
|
95 |
# Gradio Interface
|