DSEvaluation Release Bot commited on
Commit
0d55676
·
1 Parent(s): 6a99e03

Expose all nine DSEvaluation benchmarks

Browse files
README.md CHANGED
@@ -5,23 +5,29 @@ pretty_name: DSEvaluation Data
5
 
6
  # DSEvaluation Data
7
 
8
- Versioned data mirror and access catalog for
9
  [DSEvaluation](https://github.com/yangzhr1/DSEvaluation).
10
 
11
- Mirrored assets preserve their upstream licenses:
 
 
 
 
 
 
 
 
 
 
12
 
13
- - `agenticdatabench/`: Apache-2.0
14
- - `dabench/`: Apache-2.0
15
- - `dabstep/`: CC-BY-4.0 context and task files with upstream attribution
16
- - `dacode/`: MIT
17
- - `moscibench/`: official MoSciBench distribution (MIT benchmark license;
18
- source datasets retain their upstream provenance)
19
- - `codabench/`: MIT-licensed task metadata and archive checksum catalog only
20
 
21
- CoDA-Bench community archives, LongDS raw task data, ScienceAgentBench, and
22
- MLE-Dojo are cataloged but not mirrored. Their upstream terms require users to
23
- download through the official providers. The DSEvaluation CLI handles both
24
- mirrored and official-download-only assets:
25
 
26
  ```bash
27
  uv run dseval prepare BENCHMARK
 
5
 
6
  # DSEvaluation Data
7
 
8
+ Versioned data mirror and access catalog for all **9** benchmarks registered in
9
  [DSEvaluation](https://github.com/yangzhr1/DSEvaluation).
10
 
11
+ | Directory | Benchmark | Tasks | Public content in this repository | Raw data |
12
+ | --- | --- | ---: | --- | --- |
13
+ | `agenticdatabench/` | AgenticDataBench | 246 | Tasks, datasets, gold data, evaluator | Mirrored |
14
+ | `codabench/` | CoDA-Bench | 1,009 | Task metadata, license, archive checksums | Official Kaggle-derived archives |
15
+ | `dabench/` | DABench | 257 | Questions, tables, labels | Mirrored |
16
+ | `dabstep/` | DABstep | 450 | Context, tasks, license | Mirrored; historical submissions excluded |
17
+ | `dacode/` | DA-Code | 500 | Source, gold data, evaluation configs | Mirrored |
18
+ | `longds/` | LongDS | 68 | Pinned source manifest | Official dataset |
19
+ | `mledojo/` | MLE-Dojo | 10 | Selected task catalog and access instructions | Official Kaggle competitions |
20
+ | `moscibench/` | MoSciBench | 88 | Official archives, manifest, license | Mirrored with upstream provenance |
21
+ | `sab/` | ScienceAgentBench | 102 | Verified task metadata and access instructions | Official password-protected archive |
22
 
23
+ The top-level directory set intentionally matches the 9 benchmark plugins.
24
+ `metadata-mirrored` entries are runnable through DSEvaluation, but their raw
25
+ assets remain on official providers because upstream redistribution terms do
26
+ not permit a public copy here. In particular, ScienceAgentBench asks users not
27
+ to redistribute unzipped data, and MLE-Dojo requires accepting each Kaggle
28
+ competition's terms.
 
29
 
30
+ Prepare any benchmark through the same CLI:
 
 
 
31
 
32
  ```bash
33
  uv run dseval prepare BENCHMARK
catalog.json CHANGED
@@ -4,6 +4,7 @@
4
  "availability": "mirrored",
5
  "license": "Apache-2.0",
6
  "path": "agenticdatabench",
 
7
  "upstream": "https://github.com/AgenticDataBench/AgenticDataBench"
8
  },
9
  "codabench": {
@@ -11,12 +12,14 @@
11
  "license": "MIT task metadata; constituent Kaggle datasets retain independent terms",
12
  "path": "codabench",
13
  "raw_data": "official-download-only",
 
14
  "upstream": "https://huggingface.co/datasets/RUC-DataLab/CoDA-Bench"
15
  },
16
  "dabench": {
17
  "availability": "mirrored",
18
  "license": "Apache-2.0",
19
  "path": "dabench",
 
20
  "upstream": "https://huggingface.co/datasets/infiagent/DABench"
21
  },
22
  "dabstep": {
@@ -24,34 +27,44 @@
24
  "license": "CC-BY-4.0",
25
  "path": "dabstep",
26
  "scope": "context and task files only; historical submissions excluded",
 
27
  "upstream": "https://huggingface.co/datasets/adyen/DABstep"
28
  },
29
  "dacode": {
30
  "availability": "mirrored",
31
  "license": "MIT",
32
  "path": "dacode",
 
33
  "upstream": "https://github.com/yiyihum/da-code"
34
  },
35
  "longds": {
36
  "availability": "official-download-only",
37
  "path": "longds/source.json",
38
  "reason": "The official dataset declares license: other and contains Kaggle-derived data.",
 
39
  "upstream": "https://huggingface.co/datasets/zjunlp/LongDS"
40
  },
41
  "mledojo": {
42
- "availability": "official-download-only",
 
 
43
  "reason": "Each Kaggle competition has independent access terms and licenses.",
 
44
  "upstream": "https://github.com/MLE-Dojo/MLE-Dojo"
45
  },
46
  "moscibench": {
47
  "availability": "mirrored",
48
  "license": "MIT benchmark distribution; source datasets retain upstream provenance",
49
  "path": "moscibench",
 
50
  "upstream": "https://github.com/usail-hkust/MoSciBench"
51
  },
52
  "sab": {
53
- "availability": "official-download-only",
 
 
54
  "reason": "Upstream asks users not to redistribute unzipped benchmark data.",
 
55
  "upstream": "https://github.com/OSU-NLP-Group/ScienceAgentBench"
56
  }
57
  },
 
4
  "availability": "mirrored",
5
  "license": "Apache-2.0",
6
  "path": "agenticdatabench",
7
+ "tasks": 246,
8
  "upstream": "https://github.com/AgenticDataBench/AgenticDataBench"
9
  },
10
  "codabench": {
 
12
  "license": "MIT task metadata; constituent Kaggle datasets retain independent terms",
13
  "path": "codabench",
14
  "raw_data": "official-download-only",
15
+ "tasks": 1009,
16
  "upstream": "https://huggingface.co/datasets/RUC-DataLab/CoDA-Bench"
17
  },
18
  "dabench": {
19
  "availability": "mirrored",
20
  "license": "Apache-2.0",
21
  "path": "dabench",
22
+ "tasks": 257,
23
  "upstream": "https://huggingface.co/datasets/infiagent/DABench"
24
  },
25
  "dabstep": {
 
27
  "license": "CC-BY-4.0",
28
  "path": "dabstep",
29
  "scope": "context and task files only; historical submissions excluded",
30
+ "tasks": 450,
31
  "upstream": "https://huggingface.co/datasets/adyen/DABstep"
32
  },
33
  "dacode": {
34
  "availability": "mirrored",
35
  "license": "MIT",
36
  "path": "dacode",
37
+ "tasks": 500,
38
  "upstream": "https://github.com/yiyihum/da-code"
39
  },
40
  "longds": {
41
  "availability": "official-download-only",
42
  "path": "longds/source.json",
43
  "reason": "The official dataset declares license: other and contains Kaggle-derived data.",
44
+ "tasks": 68,
45
  "upstream": "https://huggingface.co/datasets/zjunlp/LongDS"
46
  },
47
  "mledojo": {
48
+ "availability": "metadata-mirrored",
49
+ "path": "mledojo",
50
+ "raw_data": "official-download-only",
51
  "reason": "Each Kaggle competition has independent access terms and licenses.",
52
+ "tasks": 10,
53
  "upstream": "https://github.com/MLE-Dojo/MLE-Dojo"
54
  },
55
  "moscibench": {
56
  "availability": "mirrored",
57
  "license": "MIT benchmark distribution; source datasets retain upstream provenance",
58
  "path": "moscibench",
59
+ "tasks": 88,
60
  "upstream": "https://github.com/usail-hkust/MoSciBench"
61
  },
62
  "sab": {
63
+ "availability": "metadata-mirrored",
64
+ "path": "sab",
65
+ "raw_data": "official-download-only",
66
  "reason": "Upstream asks users not to redistribute unzipped benchmark data.",
67
+ "tasks": 102,
68
  "upstream": "https://github.com/OSU-NLP-Group/ScienceAgentBench"
69
  }
70
  },
manifest.json CHANGED
@@ -1,11 +1,11 @@
1
  {
2
- "bytes": 39942052023,
3
- "file_count": 1270,
4
  "files": [
5
  {
6
- "bytes": 1039,
7
  "path": "README.md",
8
- "sha256": "f9e4ac6ccef8b582d9c9679bab492a70aec023ef22df1a06de5b9e89f672be0a"
9
  },
10
  {
11
  "bytes": 0,
@@ -3943,9 +3943,9 @@
3943
  "sha256": "1e1a6ba11322ff239927cf46c0acabcd8a81bc83371167deb1192c4d9ae844aa"
3944
  },
3945
  {
3946
- "bytes": 2109,
3947
  "path": "catalog.json",
3948
- "sha256": "357a9d915a28df592b398ac77b416a437021a66dfbf596cd50160a91bcffad51"
3949
  },
3950
  {
3951
  "bytes": 1068,
@@ -3953,9 +3953,9 @@
3953
  "sha256": "623dc8646f6d15298e4f52b1192a0bb450b47e8a8b279dfb5f200f56276e766b"
3954
  },
3955
  {
3956
- "bytes": 3653,
3957
  "path": "codabench/archive-manifest.json",
3958
- "sha256": "18091288aca7197e38cd562d02297166f8e98613c2b355bdb10e1e8610d394dc"
3959
  },
3960
  {
3961
  "bytes": 3234796,
@@ -6312,6 +6312,16 @@
6312
  "path": "longds/source.json",
6313
  "sha256": "6b68e9759d892ae88c6736dc2124b121c150adcde0a94ec7fae830d7289c5796"
6314
  },
 
 
 
 
 
 
 
 
 
 
6315
  {
6316
  "bytes": 1073,
6317
  "path": "moscibench/LICENSE",
@@ -6351,6 +6361,16 @@
6351
  "bytes": 868,
6352
  "path": "moscibench/manifest.json",
6353
  "sha256": "49d50d3e38780b49684ca0c57fc0206a21ed7778b65d2be55565e44ecb74c854"
 
 
 
 
 
 
 
 
 
 
6354
  }
6355
  ],
6356
  "version": "v1"
 
1
  {
2
+ "bytes": 39942183334,
3
+ "file_count": 1274,
4
  "files": [
5
  {
6
+ "bytes": 1846,
7
  "path": "README.md",
8
+ "sha256": "85cee23f79929fcb619d504476da9f3f04395d55c7487098673b18ffa31062e2"
9
  },
10
  {
11
  "bytes": 0,
 
3943
  "sha256": "1e1a6ba11322ff239927cf46c0acabcd8a81bc83371167deb1192c4d9ae844aa"
3944
  },
3945
  {
3946
+ "bytes": 2411,
3947
  "path": "catalog.json",
3948
+ "sha256": "4336b64c3ddd2d2ebe2153557bb5ac6b21586f448fa232d4db2c48e9c3919fa5"
3949
  },
3950
  {
3951
  "bytes": 1068,
 
3953
  "sha256": "623dc8646f6d15298e4f52b1192a0bb450b47e8a8b279dfb5f200f56276e766b"
3954
  },
3955
  {
3956
+ "bytes": 3656,
3957
  "path": "codabench/archive-manifest.json",
3958
+ "sha256": "b8dd0f08f1067af2f7c19b5a53f0ff4343cea63e645ca7c2a2bd25f6a82dc6c1"
3959
  },
3960
  {
3961
  "bytes": 3234796,
 
6312
  "path": "longds/source.json",
6313
  "sha256": "6b68e9759d892ae88c6736dc2124b121c150adcde0a94ec7fae830d7289c5796"
6314
  },
6315
+ {
6316
+ "bytes": 336,
6317
+ "path": "mledojo/source.json",
6318
+ "sha256": "3f15f334657c4b97d2af2c15bcfa866f7ec02a35f0f4c73719877b0838a3faf7"
6319
+ },
6320
+ {
6321
+ "bytes": 413,
6322
+ "path": "mledojo/tasks.jsonl",
6323
+ "sha256": "7ca785d44e3852b85518f2d56c8d0c8f2054601ab3b898d189e38bad2d4ff4f8"
6324
+ },
6325
  {
6326
  "bytes": 1073,
6327
  "path": "moscibench/LICENSE",
 
6361
  "bytes": 868,
6362
  "path": "moscibench/manifest.json",
6363
  "sha256": "49d50d3e38780b49684ca0c57fc0206a21ed7778b65d2be55565e44ecb74c854"
6364
+ },
6365
+ {
6366
+ "bytes": 364,
6367
+ "path": "sab/source.json",
6368
+ "sha256": "32fd83199aaa4cc8daf3eb3bfc4e6ee248a18b73d6197faee191de88b992bdd7"
6369
+ },
6370
+ {
6371
+ "bytes": 129086,
6372
+ "path": "sab/verified-00000-of-00001.parquet",
6373
+ "sha256": "c6f937863a220bd1762a00c20a0f79cc8dfca900b819bdb552150310731ae147"
6374
  }
6375
  ],
6376
  "version": "v1"
mledojo/source.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "benchmark": "MLE-Dojo",
3
+ "prepare": "KAGGLE_API_TOKEN=... uv run dseval prepare mledojo",
4
+ "raw_data": "official-download-only",
5
+ "reason": "Each selected Kaggle competition has independent access and redistribution terms.",
6
+ "task_catalog": "tasks.jsonl",
7
+ "tasks": 10,
8
+ "upstream": "https://github.com/MLE-Dojo/MLE-Dojo"
9
+ }
mledojo/tasks.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"task_id": "dont-call-me-turkey"}
2
+ {"task_id": "GiveMeSomeCredit"}
3
+ {"task_id": "forest-cover-type-kernels-only"}
4
+ {"task_id": "novozymes-enzyme-stability-prediction"}
5
+ {"task_id": "integer-sequence-learning"}
6
+ {"task_id": "random-acts-of-pizza"}
7
+ {"task_id": "afsis-soil-properties"}
8
+ {"task_id": "sberbank-russian-housing-market"}
9
+ {"task_id": "aerial-cactus-identification"}
10
+ {"task_id": "crowdflower-weather-twitter"}
sab/source.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "benchmark": "ScienceAgentBench",
3
+ "metadata": "verified task metadata is mirrored when present",
4
+ "prepare": "uv run dseval prepare sab",
5
+ "raw_data": "official-download-only",
6
+ "reason": "Upstream explicitly asks users not to redistribute unzipped data files online.",
7
+ "tasks": 102,
8
+ "upstream": "https://github.com/OSU-NLP-Group/ScienceAgentBench"
9
+ }
sab/verified-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6f937863a220bd1762a00c20a0f79cc8dfca900b819bdb552150310731ae147
3
+ size 129086