Spaces:
Sleeping
Sleeping
Commit
·
0d282c0
1
Parent(s):
2834bee
upgrade leaderboard
Browse files
app.py
CHANGED
|
@@ -597,10 +597,7 @@ def validate_model_type(method_name, selected_type):
|
|
| 597 |
# For new methods, any category is valid
|
| 598 |
return True, "Valid model type"
|
| 599 |
|
| 600 |
-
def process_submission(
|
| 601 |
-
method_name, team_name, dataset, split, contact_email,
|
| 602 |
-
code_repo, csv_file, model_description, hardware, paper_link, model_type
|
| 603 |
-
):
|
| 604 |
"""Process and validate submission"""
|
| 605 |
temp_files = []
|
| 606 |
try:
|
|
@@ -883,7 +880,7 @@ with gr.Blocks(css=css) as demo:
|
|
| 883 |
print(df)
|
| 884 |
|
| 885 |
gr.Markdown("---")
|
| 886 |
-
gr.Markdown(
|
| 887 |
gr.Markdown("""
|
| 888 |
Submit your results to be included in the leaderboard. Please ensure your submission meets all requirements.
|
| 889 |
For questions, contact [email protected]. Detailed instructions can be referred at [submission instructions](https://docs.google.com/document/d/11coGjTmOEi9p9-PUq1oy0eTOj8f_8CVQhDl5_0FKT14/edit?usp=sharing).
|
|
|
|
| 597 |
# For new methods, any category is valid
|
| 598 |
return True, "Valid model type"
|
| 599 |
|
| 600 |
+
def process_submission(method_name, team_name, dataset, split, contact_email, code_repo, csv_file, model_description, hardware, paper_link, model_type):
|
|
|
|
|
|
|
|
|
|
| 601 |
"""Process and validate submission"""
|
| 602 |
temp_files = []
|
| 603 |
try:
|
|
|
|
| 880 |
print(df)
|
| 881 |
|
| 882 |
gr.Markdown("---")
|
| 883 |
+
gr.Markdown("## Submit Your Results:")
|
| 884 |
gr.Markdown("""
|
| 885 |
Submit your results to be included in the leaderboard. Please ensure your submission meets all requirements.
|
| 886 |
For questions, contact [email protected]. Detailed instructions can be referred at [submission instructions](https://docs.google.com/document/d/11coGjTmOEi9p9-PUq1oy0eTOj8f_8CVQhDl5_0FKT14/edit?usp=sharing).
|