yixinhuang48 Cursor commited on
Commit
c64740c
·
1 Parent(s): e22eb01

Change dataset split from train to test in usage example

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -58,9 +58,9 @@ Each line is a JSON object with:
58
  ```python
59
  from datasets import load_dataset
60
 
61
- dataset = load_dataset("lmgame/VideoScienceBench", data_files="data_filtered.jsonl")
62
  # Access the data (single split)
63
- data = dataset["train"]
64
  ```
65
 
66
  ## License
 
58
  ```python
59
  from datasets import load_dataset
60
 
61
+ dataset = load_dataset("lmgame/VideoScienceBench", data_files={"test": "data_filtered.jsonl"})
62
  # Access the data (single split)
63
+ data = dataset["test"]
64
  ```
65
 
66
  ## License