Spaces:
Running
Running
Update app.py
Browse files
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")
|