BamChil commited on
Commit
c9291fa
·
verified ·
1 Parent(s): 416f469

Update ACE-Bench dataset

Browse files
README.md CHANGED
@@ -27,16 +27,16 @@ dataset_info:
27
  - name: problem_statement
28
  dtype: string
29
  - name: repo_settings
30
- dtype: map
31
  splits:
32
  - name: level1
33
- num_bytes: 67860
34
  num_examples: 1
35
  - name: level2
36
- num_bytes: 59553
37
  num_examples: 1
38
- download_size: 77053
39
- dataset_size: 127413
40
  configs:
41
  - config_name: default
42
  data_files:
@@ -70,8 +70,8 @@ ACE-Bench is a comprehensive benchmark designed to evaluate AI agents' capabilit
70
  - **Total Instances**: 2
71
  - **Level 1 Instances**: 1
72
  - **Level 2 Instances**: 1
73
- - **Total Size**: 124.43 KB
74
- - **Download Size**: 75.25 KB
75
 
76
  ## Dataset Structure
77
 
@@ -86,11 +86,12 @@ Each instance in ACE-Bench contains:
86
  - `repo`: Source repository (e.g., "owner/repo-name")
87
  - `base_commit`: Git commit hash of the base version
88
  - `problem_statement`: Detailed task description and requirements
89
- - `repo_settings`: Repository configuration settings (from python.py)
90
 
91
  ## Usage
92
 
93
  ```python
 
94
  from datasets import load_dataset
95
 
96
  # Load Level 1 tasks
@@ -103,4 +104,9 @@ dataset_lv2 = load_dataset("BamChil/ACE-Bench", split="level2")
103
  task = dataset_lv1[0]
104
  print(task['instance_id'])
105
  print(task['problem_statement'])
 
 
 
 
 
106
  ```
 
27
  - name: problem_statement
28
  dtype: string
29
  - name: repo_settings
30
+ dtype: string
31
  splits:
32
  - name: level1
33
+ num_bytes: 68545
34
  num_examples: 1
35
  - name: level2
36
+ num_bytes: 60238
37
  num_examples: 1
38
+ download_size: 60937
39
+ dataset_size: 128783
40
  configs:
41
  - config_name: default
42
  data_files:
 
70
  - **Total Instances**: 2
71
  - **Level 1 Instances**: 1
72
  - **Level 2 Instances**: 1
73
+ - **Total Size**: 125.76 KB
74
+ - **Download Size**: 59.51 KB
75
 
76
  ## Dataset Structure
77
 
 
86
  - `repo`: Source repository (e.g., "owner/repo-name")
87
  - `base_commit`: Git commit hash of the base version
88
  - `problem_statement`: Detailed task description and requirements
89
+ - `repo_settings`: Repository configuration settings as JSON string (from python.py)
90
 
91
  ## Usage
92
 
93
  ```python
94
+ import json
95
  from datasets import load_dataset
96
 
97
  # Load Level 1 tasks
 
104
  task = dataset_lv1[0]
105
  print(task['instance_id'])
106
  print(task['problem_statement'])
107
+
108
+ # Parse repo_settings from JSON string
109
+ repo_settings = json.loads(task['repo_settings'])
110
+ print(repo_settings['repository'])
111
+ print(repo_settings['base_image'])
112
  ```
data/level1-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a02acfebb283d6c5584b05da0034b6d2eb932a6ecae1dbccc89be2afb5b63a62
3
- size 34590
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a7a6596c32126549dcd27f8441023004ef1db64c2cefc3ecf11f078bd2a480a
3
+ size 26532
data/level2-00000-of-00001.parquet CHANGED
Binary files a/data/level2-00000-of-00001.parquet and b/data/level2-00000-of-00001.parquet differ