Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -18,9 +18,9 @@ dataset_info:
|
|
| 18 |
- name: classification
|
| 19 |
dtype: string
|
| 20 |
splits:
|
| 21 |
-
- name:
|
| 22 |
num_examples: 153
|
| 23 |
-
- name:
|
| 24 |
num_examples: 120
|
| 25 |
license: mit
|
| 26 |
task_categories:
|
|
@@ -145,7 +145,8 @@ print(f"Mean team uplift: {sum(uplifts)/len(uplifts):.3f}")
|
|
| 145 |
```python
|
| 146 |
from datasets import load_dataset
|
| 147 |
|
| 148 |
-
ds = load_dataset("ybkim95/teambench", split="
|
|
|
|
| 149 |
print(ds[0])
|
| 150 |
```
|
| 151 |
|
|
|
|
| 18 |
- name: classification
|
| 19 |
dtype: string
|
| 20 |
splits:
|
| 21 |
+
- name: train
|
| 22 |
num_examples: 153
|
| 23 |
+
- name: test
|
| 24 |
num_examples: 120
|
| 25 |
license: mit
|
| 26 |
task_categories:
|
|
|
|
| 145 |
```python
|
| 146 |
from datasets import load_dataset
|
| 147 |
|
| 148 |
+
ds = load_dataset("ybkim95/teambench", split="train") # all 153 tasks
|
| 149 |
+
# ds = load_dataset("ybkim95/teambench", split="test") # 120 hard/expert tasks only
|
| 150 |
print(ds[0])
|
| 151 |
```
|
| 152 |
|