Spaces:
Sleeping
Sleeping
Debug 7
Browse files
app.py
CHANGED
@@ -37,22 +37,22 @@ import gradio as gr
|
|
37 |
# demo.launch(debug=True)
|
38 |
|
39 |
with gr.Blocks() as demo:
|
40 |
-
with gr.
|
41 |
-
with gr.
|
42 |
patient_upload_btn = gr.UploadButton(label="Upload A Patient",
|
43 |
file_types = ['.csv'],
|
44 |
file_count = "single")
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
|
58 |
demo.launch(debug=True)
|
|
|
37 |
# demo.launch(debug=True)
|
38 |
|
39 |
with gr.Blocks() as demo:
|
40 |
+
with gr.Row():
|
41 |
+
with gr.Column():
|
42 |
patient_upload_btn = gr.UploadButton(label="Upload A Patient",
|
43 |
file_types = ['.csv'],
|
44 |
file_count = "single")
|
45 |
+
with gr.Row():
|
46 |
+
with gr.Column():
|
47 |
+
patient_1_input_btn = gr.Button("Patient 1")
|
48 |
+
patient_1_download_btn = gr.DownloadButton("Download 1")
|
49 |
+
with gr.Column():
|
50 |
+
patient_2_input_btn = gr.Button("Patient 2")
|
51 |
+
patient_2_download_btn = gr.DownloadButton("Download 2")
|
52 |
+
with gr.Column():
|
53 |
+
patient_3_input_btn = gr.Button("Patient 3")
|
54 |
+
patient_3_download_btn = gr.DownloadButton("Download 3")
|
55 |
+
with gr.Column():
|
56 |
+
btn1 = gr.Button("Will Display Output")
|
57 |
|
58 |
demo.launch(debug=True)
|