Spaces:
Runtime error
Runtime error
hotfix
Browse files
app.py
CHANGED
|
@@ -101,13 +101,17 @@ with gr.Blocks() as demo:
|
|
| 101 |
with gr.Tabs():
|
| 102 |
with gr.Tab("평가 요청"):
|
| 103 |
with gr.Row():
|
| 104 |
-
with gr.
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
report_output = gr.File(label="리포트 ZIP 다운로드")
|
| 112 |
image_gallery = gr.Gallery(
|
| 113 |
label="Plant별 비교 그래프",
|
|
|
|
| 101 |
with gr.Tabs():
|
| 102 |
with gr.Tab("평가 요청"):
|
| 103 |
with gr.Row():
|
| 104 |
+
with gr.Column():
|
| 105 |
+
with gr.Row():
|
| 106 |
+
csv_input = gr.File(label="CSV 업로드", file_types=[".csv"])
|
| 107 |
+
with gr.Row():
|
| 108 |
+
password = gr.Textbox(label="Jupyter Notebook 비밀번호")
|
| 109 |
+
with gr.Row():
|
| 110 |
+
submit_button = gr.Button("평가 요청")
|
| 111 |
+
with gr.Row():
|
| 112 |
+
df_output = gr.Dataframe(label="평가 지표 결과")
|
| 113 |
+
|
| 114 |
+
with gr.Column():
|
| 115 |
report_output = gr.File(label="리포트 ZIP 다운로드")
|
| 116 |
image_gallery = gr.Gallery(
|
| 117 |
label="Plant별 비교 그래프",
|