Spaces:
Sleeping
Sleeping
Debug 13
Browse files
app.py
CHANGED
@@ -39,9 +39,12 @@ import gradio as gr
|
|
39 |
with gr.Blocks() as demo:
|
40 |
with gr.Row():
|
41 |
with gr.Column():
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
45 |
with gr.Row():
|
46 |
# patient_1_input_btn = gr.Button("Patient 1")
|
47 |
# patient_1_download_btn = gr.DownloadButton("Download 1")
|
|
|
39 |
with gr.Blocks() as demo:
|
40 |
with gr.Row():
|
41 |
with gr.Column():
|
42 |
+
file = gr.File(label="Upload A Patient",
|
43 |
+
file_types = ['.csv'],
|
44 |
+
file_count = "single")
|
45 |
+
# patient_upload_btn = gr.UploadButton(label="Upload A Patient",
|
46 |
+
# file_types = ['.csv'],
|
47 |
+
# file_count = "single")
|
48 |
with gr.Row():
|
49 |
# patient_1_input_btn = gr.Button("Patient 1")
|
50 |
# patient_1_download_btn = gr.DownloadButton("Download 1")
|