Datasets:
holylovenia
commited on
Commit
•
5cd2808
1
Parent(s):
f953148
Update README.md
Browse files
README.md
CHANGED
@@ -51,7 +51,7 @@ ASCEND (A Spontaneous Chinese-English Dataset) introduces a high-quality resourc
|
|
51 |
|
52 |
### Supported Tasks and Leaderboards
|
53 |
|
54 |
-
Code-switching
|
55 |
|
56 |
### Languages
|
57 |
|
@@ -59,9 +59,11 @@ Chinese and English
|
|
59 |
|
60 |
## Usage
|
61 |
|
|
|
|
|
62 |
```
|
63 |
import datasets
|
64 |
-
dataset = datasets.load_dataset("CAiRE/ASCEND")
|
65 |
```
|
66 |
|
67 |
## Dataset Structure
|
@@ -70,21 +72,21 @@ A typical data point comprises the path to the audio file, the loaded audio arra
|
|
70 |
|
71 |
```
|
72 |
{
|
73 |
-
'id': '
|
74 |
-
'path': '.cache/huggingface/datasets/downloads/extracted/f0b33b5266cd9452ee310eef3577cf7adb7f29aa54dbff74b9a8ee406a55d614/waves/
|
75 |
'audio': {
|
76 |
-
'path': '.cache/huggingface/datasets/downloads/extracted/f0b33b5266cd9452ee310eef3577cf7adb7f29aa54dbff74b9a8ee406a55d614/waves/
|
77 |
-
'array': array([
|
78 |
-
0.
|
79 |
], dtype = float32),
|
80 |
'sampling_rate': 16000
|
81 |
},
|
82 |
-
'transcription': '
|
83 |
-
'duration':
|
84 |
-
'language': '
|
85 |
-
'original_speaker_id':
|
86 |
-
'session_id':
|
87 |
-
'topic': '
|
88 |
}
|
89 |
```
|
90 |
|
|
|
51 |
|
52 |
### Supported Tasks and Leaderboards
|
53 |
|
54 |
+
Code-switching
|
55 |
|
56 |
### Languages
|
57 |
|
|
|
59 |
|
60 |
## Usage
|
61 |
|
62 |
+
To obtain the full dataset (complete with train, validation, and test set), simply run this:
|
63 |
+
|
64 |
```
|
65 |
import datasets
|
66 |
+
dataset = datasets.load_dataset("CAiRE/ASCEND")
|
67 |
```
|
68 |
|
69 |
## Dataset Structure
|
|
|
72 |
|
73 |
```
|
74 |
{
|
75 |
+
'id': '00644',
|
76 |
+
'path': '.cache/huggingface/datasets/downloads/extracted/f0b33b5266cd9452ee310eef3577cf7adb7f29aa54dbff74b9a8ee406a55d614/waves/ses2_spk3_L13101_189.900_5.490.wav',
|
77 |
'audio': {
|
78 |
+
'path': '.cache/huggingface/datasets/downloads/extracted/f0b33b5266cd9452ee310eef3577cf7adb7f29aa54dbff74b9a8ee406a55d614/waves/ses2_spk3_L13101_189.900_5.490.wav',
|
79 |
+
'array': array([-6.1035156e-05, -1.8310547e-04, 3.0517578e-05, ...,
|
80 |
+
0.0000000e+00, -3.0517578e-05, 0.0000000e+00
|
81 |
], dtype = float32),
|
82 |
'sampling_rate': 16000
|
83 |
},
|
84 |
+
'transcription': '因为你不可能邀你的female friends去说走我们去play basketball',
|
85 |
+
'duration': 5.489999771118164,
|
86 |
+
'language': 'mixed',
|
87 |
+
'original_speaker_id': 3,
|
88 |
+
'session_id': 2,
|
89 |
+
'topic': 'sports'
|
90 |
}
|
91 |
```
|
92 |
|