Datasets:
martillopartbsc
commited on
Commit
•
dcce43a
1
Parent(s):
4930582
Update README.md
Browse files
README.md
CHANGED
@@ -72,24 +72,22 @@ The purpose of this dataset is mainly for training text-to-speech and automatic
|
|
72 |
The dataset consists of a single split, providing audios and transcriptions:
|
73 |
```
|
74 |
DatasetDict({
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
})
|
80 |
```
|
81 |
Each data point is structured as:
|
82 |
```
|
83 |
>> data['train'][0]['audio']
|
84 |
|
85 |
-
{'path': '
|
86 |
-
|
87 |
-
'sampling_rate': 22050}
|
88 |
-
|
89 |
|
90 |
>> data['train'][0]['transcription']
|
91 |
|
92 |
-
"
|
93 |
```
|
94 |
|
95 |
### Dataset Splits
|
|
|
72 |
The dataset consists of a single split, providing audios and transcriptions:
|
73 |
```
|
74 |
DatasetDict({
|
75 |
+
train: Dataset({
|
76 |
+
features: ['audio', 'transcription'],
|
77 |
+
num_rows: 12435
|
78 |
+
})
|
79 |
})
|
80 |
```
|
81 |
Each data point is structured as:
|
82 |
```
|
83 |
>> data['train'][0]['audio']
|
84 |
|
85 |
+
{'path': 'upc_ca_eli_204478.wav', 'array': array([ 0.00000000e+00, 0.00000000e+00, -3.05175781e-05, ...,
|
86 |
+
0.00000000e+00, 0.00000000e+00, -3.05175781e-05]), 'sampling_rate': 22050}
|
|
|
|
|
87 |
|
88 |
>> data['train'][0]['transcription']
|
89 |
|
90 |
+
"Què potser el seu fill tenia l'endemà el matí lliure? Si era el cas, el podia convidar a jugar una partideta de golf."
|
91 |
```
|
92 |
|
93 |
### Dataset Splits
|