Hui519 commited on
Commit
eba5002
·
verified ·
1 Parent(s): dd7c528

Rename split from all to full for dataset viewer compatibility

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -16,7 +16,7 @@ tags:
16
  configs:
17
  - config_name: default
18
  data_files:
19
- - split: all
20
  path: data/**
21
  drop_labels: true
22
  ---
@@ -59,7 +59,7 @@ Once you have access to the repository on the Hub, you can load the main table l
59
  ```python
60
  from datasets import load_dataset
61
 
62
- data = load_dataset("Hui519/AudioEval", split="all")
63
  print(data[0]["audio"])
64
  print(data[0]["prompt_text"])
65
  ```
 
16
  configs:
17
  - config_name: default
18
  data_files:
19
+ - split: full
20
  path: data/**
21
  drop_labels: true
22
  ---
 
59
  ```python
60
  from datasets import load_dataset
61
 
62
+ data = load_dataset("Hui519/AudioEval", split="full")
63
  print(data[0]["audio"])
64
  print(data[0]["prompt_text"])
65
  ```