KuuwangE commited on
Commit
e442972
·
unverified ·
1 Parent(s): e146c10
Files changed (1) hide show
  1. app.py +11 -7
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.Row():
105
- csv_input = gr.File(label="CSV 업로드", file_types=[".csv"])
106
- password = gr.Textbox(label="Jupyter Notebook 비밀번호")
107
- submit_button = gr.Button("평가 요청")
108
- df_output = gr.Dataframe(label="평가 지표 결과")
109
-
110
- with gr.Row():
 
 
 
 
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별 비교 그래프",