add_bench
Browse files- README.md +1 -34
- benchmark_info.json +52 -0
- benchmarks/GB.zip +3 -0
- benchmarks/GUE.zip +3 -0
- benchmarks/PGB.zip +3 -0
- benchmarks/RGB.zip +3 -0
README.md
CHANGED
@@ -4,42 +4,9 @@ emoji: 🥇
|
|
4 |
colorFrom: green
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 4.
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
-
# Start the configuration
|
14 |
-
|
15 |
-
Most of the variables to change for a default leaderboard are in `src/env.py` (replace the path for your leaderboard) and `src/about.py` (for tasks).
|
16 |
-
|
17 |
-
Results files should have the following format and be stored as json files:
|
18 |
-
```json
|
19 |
-
{
|
20 |
-
"config": {
|
21 |
-
"model_dtype": "torch.float16", # or torch.bfloat16 or 8bit or 4bit
|
22 |
-
"model_name": "path of the model on the hub: org/model",
|
23 |
-
"model_sha": "revision on the hub",
|
24 |
-
},
|
25 |
-
"results": {
|
26 |
-
"task_name": {
|
27 |
-
"metric_name": score,
|
28 |
-
},
|
29 |
-
"task_name2": {
|
30 |
-
"metric_name": score,
|
31 |
-
}
|
32 |
-
}
|
33 |
-
}
|
34 |
-
```
|
35 |
-
|
36 |
-
Request files are created automatically by this tool.
|
37 |
-
|
38 |
-
If you encounter problem on the space, don't hesitate to restart it to remove the create eval-queue, eval-queue-bk, eval-results and eval-results-bk created folder.
|
39 |
-
|
40 |
-
# Code logic for more complex edits
|
41 |
-
|
42 |
-
You'll find
|
43 |
-
- the main table' columns names and properties in `src/display/utils.py`
|
44 |
-
- the logic to read all results and request files, then convert them in dataframe lines, in `src/leaderboard/read_evals.py`, and `src/populate.py`
|
45 |
-
- teh logic to allow or filter submissions in `src/submission/submit.py` and `src/submission/check_validity.py`
|
|
|
4 |
colorFrom: green
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.36.1
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
license: mit
|
11 |
---
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
benchmark_info.json
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"RGB": {
|
3 |
+
"filename": "RGB.zip",
|
4 |
+
"genome": "RNA",
|
5 |
+
"species": "multi-species",
|
6 |
+
"task number": "",
|
7 |
+
"task type": "classification, regression",
|
8 |
+
"url": "",
|
9 |
+
"author": "",
|
10 |
+
"license": ""
|
11 |
+
},
|
12 |
+
"PGB": {
|
13 |
+
"filename": "PGB.zip",
|
14 |
+
"genome": "DNA",
|
15 |
+
"species": "multi-species",
|
16 |
+
"task number": "",
|
17 |
+
"task type": "classification, regression",
|
18 |
+
"url": "",
|
19 |
+
"author": "",
|
20 |
+
"license": ""
|
21 |
+
},
|
22 |
+
"PGB_Full": {
|
23 |
+
"filename": "PGB_Full.zip",
|
24 |
+
"genome": "DNA",
|
25 |
+
"species": "multi-species",
|
26 |
+
"task number": "",
|
27 |
+
"task type": "classification, regression",
|
28 |
+
"url": "",
|
29 |
+
"author": "",
|
30 |
+
"license": ""
|
31 |
+
},
|
32 |
+
"GUE": {
|
33 |
+
"filename": "GUE.zip",
|
34 |
+
"genome": "DNA",
|
35 |
+
"species": "multi-species",
|
36 |
+
"task number": "",
|
37 |
+
"task type": "classification",
|
38 |
+
"url": "",
|
39 |
+
"author": "",
|
40 |
+
"license": ""
|
41 |
+
},
|
42 |
+
"GB": {
|
43 |
+
"filename": "GB.zip",
|
44 |
+
"genome": "DNA",
|
45 |
+
"species": "multi-species",
|
46 |
+
"task number": "",
|
47 |
+
"task type": "classification",
|
48 |
+
"url": "",
|
49 |
+
"author": "",
|
50 |
+
"license": ""
|
51 |
+
}
|
52 |
+
}
|
benchmarks/GB.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9626155007f1d20db94f1a7a0a40660fed236dbeadd91923dd19ad59c63c8123
|
3 |
+
size 88635434
|
benchmarks/GUE.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac8437af28fc6130c8d4a0f9a0bc74ea6c3e98604d4e91b5b8bfdf2e52608d7f
|
3 |
+
size 102105671
|
benchmarks/PGB.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d7b30125e47a9908c54fcebe89de7c54d21395a2146b39dd188267125fffd27
|
3 |
+
size 127841482
|
benchmarks/RGB.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:de55118a0df144fffb6c8bc9875c9909a9092614070886f5d1adb2f03801c849
|
3 |
+
size 59620049
|