Upload folder using huggingface_hub
Browse files- app.py +9 -2
- assets/logo.jpg +0 -0
app.py
CHANGED
|
@@ -37,8 +37,15 @@ def process_reports(files):
|
|
| 37 |
|
| 38 |
|
| 39 |
# Build Gradio UI
|
| 40 |
-
with gr.Blocks() as demo:
|
| 41 |
-
gr.Markdown("## 🩺
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
with gr.Row():
|
| 44 |
file_input = gr.File(
|
|
|
|
| 37 |
|
| 38 |
|
| 39 |
# Build Gradio UI
|
| 40 |
+
with gr.Blocks(title="SHEAMI") as demo:
|
| 41 |
+
# gr.Markdown("## 🩺 SHEAMI - Smart Healthcare Excellence Through Artificial Medical Intelligence")
|
| 42 |
+
gr.Image(
|
| 43 |
+
value="./assets/logo.jpg",
|
| 44 |
+
label="My Logo",
|
| 45 |
+
show_label=False,
|
| 46 |
+
show_download_button=False,
|
| 47 |
+
show_fullscreen_button=False,
|
| 48 |
+
)
|
| 49 |
|
| 50 |
with gr.Row():
|
| 51 |
file_input = gr.File(
|
assets/logo.jpg
ADDED
|