Commit
·
a5e038f
1
Parent(s):
c64740c
Add YAML config to map data_filtered.jsonl to test split for Dataset Viewer
Browse files
README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
task_categories:
|
| 6 |
- question-answering
|
| 7 |
- text-generation
|
|
@@ -58,8 +63,8 @@ Each line is a JSON object with:
|
|
| 58 |
```python
|
| 59 |
from datasets import load_dataset
|
| 60 |
|
| 61 |
-
dataset = load_dataset("lmgame/VideoScienceBench"
|
| 62 |
-
# Access the
|
| 63 |
data = dataset["test"]
|
| 64 |
```
|
| 65 |
|
|
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
+
configs:
|
| 6 |
+
- config_name: default
|
| 7 |
+
data_files:
|
| 8 |
+
- split: test
|
| 9 |
+
path: "data_filtered.jsonl"
|
| 10 |
task_categories:
|
| 11 |
- question-answering
|
| 12 |
- text-generation
|
|
|
|
| 63 |
```python
|
| 64 |
from datasets import load_dataset
|
| 65 |
|
| 66 |
+
dataset = load_dataset("lmgame/VideoScienceBench")
|
| 67 |
+
# Access the test split (configured in the dataset card)
|
| 68 |
data = dataset["test"]
|
| 69 |
```
|
| 70 |
|