++
Browse files- README.md +1 -1
- app.py +4 -1
- pyproject.toml +11 -0
- requirements.txt +5 -5
- src/about.py +1 -1
README.md
CHANGED
|
@@ -8,7 +8,7 @@ app_file: app.py
|
|
| 8 |
pinned: true
|
| 9 |
license: apache-2.0
|
| 10 |
short_description: GridNet HD Leaderboard!
|
| 11 |
-
sdk_version: 5.
|
| 12 |
---
|
| 13 |
|
| 14 |
# Start the configuration
|
|
|
|
| 8 |
pinned: true
|
| 9 |
license: apache-2.0
|
| 10 |
short_description: GridNet HD Leaderboard!
|
| 11 |
+
sdk_version: 5.30.0
|
| 12 |
---
|
| 13 |
|
| 14 |
# Start the configuration
|
app.py
CHANGED
|
@@ -82,6 +82,7 @@ with demo:
|
|
| 82 |
with gr.TabItem("๐ About", elem_id="benchmark-tab-table", id=2):
|
| 83 |
gr.Markdown(BENCHMARKS_TEXT, elem_classes="markdown-text")
|
| 84 |
|
|
|
|
| 85 |
with gr.TabItem("๐ Submit here! ", elem_id="benchmark-tab-table", id=3):
|
| 86 |
with gr.Column():
|
| 87 |
with gr.Row():
|
|
@@ -94,7 +95,8 @@ with demo:
|
|
| 94 |
with gr.Column():
|
| 95 |
user_name_textbox = gr.Textbox(label="User name")
|
| 96 |
model_name_textbox = gr.Textbox(label="Model name")
|
| 97 |
-
npz_files_input = gr.File(label="Upload NPZ files", file_count="multiple", file_types=[".npz"])
|
|
|
|
| 98 |
|
| 99 |
submit_button = gr.Button("Submit Eval")
|
| 100 |
submission_result = gr.Markdown()
|
|
@@ -108,6 +110,7 @@ with demo:
|
|
| 108 |
submission_result,
|
| 109 |
)
|
| 110 |
|
|
|
|
| 111 |
with gr.Row():
|
| 112 |
with gr.Accordion("๐ Citation", open=False):
|
| 113 |
citation_button = gr.Textbox(
|
|
|
|
| 82 |
with gr.TabItem("๐ About", elem_id="benchmark-tab-table", id=2):
|
| 83 |
gr.Markdown(BENCHMARKS_TEXT, elem_classes="markdown-text")
|
| 84 |
|
| 85 |
+
|
| 86 |
with gr.TabItem("๐ Submit here! ", elem_id="benchmark-tab-table", id=3):
|
| 87 |
with gr.Column():
|
| 88 |
with gr.Row():
|
|
|
|
| 95 |
with gr.Column():
|
| 96 |
user_name_textbox = gr.Textbox(label="User name")
|
| 97 |
model_name_textbox = gr.Textbox(label="Model name")
|
| 98 |
+
# npz_files_input = gr.File(label="Upload NPZ files", file_count="multiple", file_types=[".npz"]) #
|
| 99 |
+
npz_files_input = gr.File(label="Upload NPZ files", file_types=[".npz"], file_count="multiple")
|
| 100 |
|
| 101 |
submit_button = gr.Button("Submit Eval")
|
| 102 |
submission_result = gr.Markdown()
|
|
|
|
| 110 |
submission_result,
|
| 111 |
)
|
| 112 |
|
| 113 |
+
|
| 114 |
with gr.Row():
|
| 115 |
with gr.Accordion("๐ Citation", open=False):
|
| 116 |
citation_button = gr.Textbox(
|
pyproject.toml
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
[tool.ruff]
|
| 2 |
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
|
| 3 |
select = ["E", "F"]
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "GridNet-HD-Leaderboard"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
dependencies = [
|
| 7 |
+
"gradio[oauth]==5.30.0",
|
| 8 |
+
"uvicorn>=0.34.2",
|
| 9 |
+
]
|
| 10 |
+
|
| 11 |
+
|
| 12 |
[tool.ruff]
|
| 13 |
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
|
| 14 |
select = ["E", "F"]
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
aiofiles==
|
| 2 |
aiohappyeyeballs==2.6.1
|
| 3 |
aiohttp==3.11.18
|
| 4 |
aiosignal==1.3.2
|
|
@@ -12,7 +12,7 @@ black==25.1.0
|
|
| 12 |
certifi==2025.4.26
|
| 13 |
cffi==1.17.1
|
| 14 |
charset-normalizer==3.4.2
|
| 15 |
-
click==8.
|
| 16 |
contourpy==1.3.2
|
| 17 |
cryptography==45.0.2
|
| 18 |
cycler==0.12.1
|
|
@@ -24,7 +24,7 @@ ffmpy==0.5.0
|
|
| 24 |
filelock==3.18.0
|
| 25 |
fonttools==4.58.0
|
| 26 |
frozenlist==1.6.0
|
| 27 |
-
fsspec==2025.
|
| 28 |
gradio==5.30.0
|
| 29 |
gradio-client==1.10.1
|
| 30 |
gradio-leaderboard==0.0.13
|
|
@@ -40,7 +40,7 @@ joblib==1.5.0
|
|
| 40 |
kiwisolver==1.4.8
|
| 41 |
laspy==2.5.4
|
| 42 |
markdown-it-py==3.0.0
|
| 43 |
-
markupsafe==
|
| 44 |
matplotlib==3.10.3
|
| 45 |
mdurl==0.1.2
|
| 46 |
multidict==6.4.4
|
|
@@ -85,7 +85,7 @@ tomli==2.2.1
|
|
| 85 |
tomlkit==0.13.2
|
| 86 |
tqdm==4.67.1
|
| 87 |
transformers==4.52.0
|
| 88 |
-
typer==0.15.
|
| 89 |
typing-extensions==4.13.2
|
| 90 |
typing-inspection==0.4.0
|
| 91 |
tzdata==2025.2
|
|
|
|
| 1 |
+
aiofiles==23.2.1
|
| 2 |
aiohappyeyeballs==2.6.1
|
| 3 |
aiohttp==3.11.18
|
| 4 |
aiosignal==1.3.2
|
|
|
|
| 12 |
certifi==2025.4.26
|
| 13 |
cffi==1.17.1
|
| 14 |
charset-normalizer==3.4.2
|
| 15 |
+
click==8.1.8
|
| 16 |
contourpy==1.3.2
|
| 17 |
cryptography==45.0.2
|
| 18 |
cycler==0.12.1
|
|
|
|
| 24 |
filelock==3.18.0
|
| 25 |
fonttools==4.58.0
|
| 26 |
frozenlist==1.6.0
|
| 27 |
+
fsspec==2025.5.0
|
| 28 |
gradio==5.30.0
|
| 29 |
gradio-client==1.10.1
|
| 30 |
gradio-leaderboard==0.0.13
|
|
|
|
| 40 |
kiwisolver==1.4.8
|
| 41 |
laspy==2.5.4
|
| 42 |
markdown-it-py==3.0.0
|
| 43 |
+
markupsafe==2.1.5
|
| 44 |
matplotlib==3.10.3
|
| 45 |
mdurl==0.1.2
|
| 46 |
multidict==6.4.4
|
|
|
|
| 85 |
tomlkit==0.13.2
|
| 86 |
tqdm==4.67.1
|
| 87 |
transformers==4.52.0
|
| 88 |
+
typer==0.15.4
|
| 89 |
typing-extensions==4.13.2
|
| 90 |
typing-inspection==0.4.0
|
| 91 |
tzdata==2025.2
|
src/about.py
CHANGED
|
@@ -21,7 +21,7 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
| 21 |
|
| 22 |
|
| 23 |
# Your leaderboard name
|
| 24 |
-
TITLE = """<h1 align="center" id="space-title">
|
| 25 |
|
| 26 |
# What does your leaderboard evaluate?
|
| 27 |
INTRODUCTION_TEXT = """
|
|
|
|
| 21 |
|
| 22 |
|
| 23 |
# Your leaderboard name
|
| 24 |
+
TITLE = """<h1 align="center" id="space-title">GridNet-HD leaderboard</h1>"""
|
| 25 |
|
| 26 |
# What does your leaderboard evaluate?
|
| 27 |
INTRODUCTION_TEXT = """
|