Shiyu Zhao commited on
Commit
b861675
·
1 Parent(s): 6f3655f

Update space

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -1013,11 +1013,10 @@ with gr.Blocks(css=css) as demo:
1013
  label="Hardware Specifications*",
1014
  placeholder="e.g., 4x NVIDIA A100 80GB"
1015
  )
1016
- honor_code = gr.Checkbox(
1017
- label="Honor Code",
1018
- value=False,
1019
- info="By submitting these results, you confirm that they are truthful and reproducible, and you verify the integrity of your submission."
1020
- )
1021
  csv_file = gr.File(
1022
  label="Prediction CSV*",
1023
  file_types=[".csv"],
@@ -1029,9 +1028,10 @@ with gr.Blocks(css=css) as demo:
1029
  )
1030
 
1031
 
1032
- submit_btn = gr.Button("Submit", variant="primary")
1033
- result = gr.Textbox(label="Submission Status", interactive=False)
1034
-
 
1035
  # Set up event handlers
1036
  model_type_filter.change(
1037
  update_tables,
 
1013
  label="Hardware Specifications*",
1014
  placeholder="e.g., 4x NVIDIA A100 80GB"
1015
  )
1016
+ with gr.Row():
1017
+ honor_code = gr.Checkbox(label="", value=False)
1018
+ gr.Markdown("By submitting these results, you confirm that they are truthful and reproducible, and you verify the integrity of your submission.")
1019
+
 
1020
  csv_file = gr.File(
1021
  label="Prediction CSV*",
1022
  file_types=[".csv"],
 
1028
  )
1029
 
1030
 
1031
+ with gr.Row():
1032
+ submit_btn = gr.Button("Submit", variant="primary", interactive=False)
1033
+ result = gr.Textbox(label="Submission Status", interactive=False)
1034
+
1035
  # Set up event handlers
1036
  model_type_filter.change(
1037
  update_tables,