ubowang commited on
Commit
de5d597
·
verified ·
1 Parent(s): 965f42a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -12
app.py CHANGED
@@ -43,18 +43,18 @@ with block:
43
  with gr.Row():
44
  gr.Markdown(SUBMIT_INTRODUCTION, elem_classes="markdown-text")
45
 
46
- with gr.Row():
47
- gr.Markdown("# ✉️✨ Submit your json file here!", elem_classes="markdown-text")
48
-
49
- with gr.Column():
50
- input_file = gr.components.File(label="Click to Upload a json File", file_count="single", type='binary')
51
- submit_button = gr.Button("Submit Results")
52
-
53
- submission_result = gr.Markdown()
54
- submit_button.click(
55
- add_new_eval,
56
- inputs=[input_file],
57
- )
58
 
59
  block.launch(share=True)
60
 
 
43
  with gr.Row():
44
  gr.Markdown(SUBMIT_INTRODUCTION, elem_classes="markdown-text")
45
 
46
+ # with gr.Row():
47
+ # gr.Markdown("# ✉️✨ Submit your json file here!", elem_classes="markdown-text")
48
+
49
+ # with gr.Column():
50
+ # input_file = gr.components.File(label="Click to Upload a json File", file_count="single", type='binary')
51
+ # submit_button = gr.Button("Submit Results")
52
+
53
+ # submission_result = gr.Markdown()
54
+ # submit_button.click(
55
+ # add_new_eval,
56
+ # inputs=[input_file],
57
+ # )
58
 
59
  block.launch(share=True)
60