SeaWolf-AI commited on
Commit
ca8b046
·
verified ·
1 Parent(s): 28ff8bd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -48,10 +48,10 @@ dataset_info:
48
  sequence: string
49
  config_name: default
50
  splits:
51
- - name: test
52
  num_examples: 100
53
  data_files:
54
- - split: test
55
  path: FINAL_Bench_100.jsonl
56
  ---
57
 
@@ -191,7 +191,7 @@ This separation directly maps to the monitoring–control model of Nelson & Nare
191
  ```python
192
  from datasets import load_dataset
193
 
194
- dataset = load_dataset("FINAL-Bench/Metacognitive", split="test")
195
 
196
  # Total 100 tasks
197
  print(f"Total tasks: {len(dataset)}")
 
48
  sequence: string
49
  config_name: default
50
  splits:
51
+ - name: train
52
  num_examples: 100
53
  data_files:
54
+ - split: train
55
  path: FINAL_Bench_100.jsonl
56
  ---
57
 
 
191
  ```python
192
  from datasets import load_dataset
193
 
194
+ dataset = load_dataset("FINAL-Bench/Metacognitive", split="train")
195
 
196
  # Total 100 tasks
197
  print(f"Total tasks: {len(dataset)}")