Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -15,6 +15,10 @@ configs:
|
|
| 15 |
data_files:
|
| 16 |
- split: train
|
| 17 |
path: data/et_type.jsonl
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
# AInsteinBench
|
|
@@ -98,6 +102,9 @@ dataset = load_dataset("ByteDance-Seed/AInsteinBench")
|
|
| 98 |
msb_dataset = load_dataset("ByteDance-Seed/AInsteinBench", "msb_type")
|
| 99 |
et_dataset = load_dataset("ByteDance-Seed/AInsteinBench", "et_type")
|
| 100 |
|
|
|
|
|
|
|
|
|
|
| 101 |
# Access samples
|
| 102 |
for sample in dataset['train']:
|
| 103 |
print(f"ID: {sample['question_id']}")
|
|
@@ -105,6 +112,14 @@ for sample in dataset['train']:
|
|
| 105 |
print(f"Task: {sample['description']}")
|
| 106 |
```
|
| 107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
### Evaluation
|
| 109 |
|
| 110 |
For evaluation scripts and detailed usage, please visit the [AInsteinBench GitHub repository](https://github.com/ByteDance-Seed/AInsteinBench).
|
|
|
|
| 15 |
data_files:
|
| 16 |
- split: train
|
| 17 |
path: data/et_type.jsonl
|
| 18 |
+
- config_name: difficulty_tag
|
| 19 |
+
data_files:
|
| 20 |
+
- split: train
|
| 21 |
+
path: data/difficulty_tag.jsonl
|
| 22 |
---
|
| 23 |
|
| 24 |
# AInsteinBench
|
|
|
|
| 102 |
msb_dataset = load_dataset("ByteDance-Seed/AInsteinBench", "msb_type")
|
| 103 |
et_dataset = load_dataset("ByteDance-Seed/AInsteinBench", "et_type")
|
| 104 |
|
| 105 |
+
# Load difficulty annotations
|
| 106 |
+
difficulty = load_dataset("ByteDance-Seed/AInsteinBench", "difficulty_tag")
|
| 107 |
+
|
| 108 |
# Access samples
|
| 109 |
for sample in dataset['train']:
|
| 110 |
print(f"ID: {sample['question_id']}")
|
|
|
|
| 112 |
print(f"Task: {sample['description']}")
|
| 113 |
```
|
| 114 |
|
| 115 |
+
### Difficulty Tags
|
| 116 |
+
|
| 117 |
+
The `difficulty_tag` subset provides difficulty annotations for each question with two metrics:
|
| 118 |
+
- **`engineeringDifficultyScore`** (1-5): Software engineering complexity
|
| 119 |
+
- **`semanticDepthScore`** (1-5): Domain-specific scientific knowledge required
|
| 120 |
+
|
| 121 |
+
Match difficulty tags to questions using `repo` and `pr_number` fields.
|
| 122 |
+
|
| 123 |
### Evaluation
|
| 124 |
|
| 125 |
For evaluation scripts and detailed usage, please visit the [AInsteinBench GitHub repository](https://github.com/ByteDance-Seed/AInsteinBench).
|