ybkim95 commited on
Commit
29c59b5
·
verified ·
1 Parent(s): 206d97d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -18,9 +18,9 @@ dataset_info:
18
  - name: classification
19
  dtype: string
20
  splits:
21
- - name: full
22
  num_examples: 153
23
- - name: hard
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="full")
 
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