akera commited on
Commit
a0e00d8
Β·
verified Β·
1 Parent(s): c0c3e37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -520,11 +520,12 @@ with gr.Blocks(
520
 
521
  # File upload
522
  gr.Markdown("### πŸ“€ Upload Predictions")
523
-
 
 
524
  predictions_file = gr.File(
525
  label="πŸ“‚ Predictions File",
526
- file_types=[".csv", ".tsv", ".json"],
527
- info="CSV/TSV/JSON file with your model's predictions"
528
  )
529
 
530
  validate_btn = gr.Button("βœ… Validate Submission", variant="secondary")
 
520
 
521
  # File upload
522
  gr.Markdown("### πŸ“€ Upload Predictions")
523
+ gr.Markdown("Upload a CSV/TSV/JSON file with your model's predictions")
524
+
525
+
526
  predictions_file = gr.File(
527
  label="πŸ“‚ Predictions File",
528
+ file_types=[".csv", ".tsv", ".json"]
 
529
  )
530
 
531
  validate_btn = gr.Button("βœ… Validate Submission", variant="secondary")