Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -30,6 +30,7 @@ This project was developed in collaboration between Lucas Jo(@Atlas Guide Inc.)
|
|
30 |
Contact: Lucas Jo([email protected]), Wonkyum Lee([email protected])
|
31 |
|
32 |
### License
|
|
|
33 |
CC BY 4.0
|
34 |
|
35 |
## Dataset Structure
|
@@ -61,9 +62,18 @@ total: 5.52 GiB
|
|
61 |
### Data Fields
|
62 |
|
63 |
- audio: `audio`, sampling rate = 16000
|
|
|
64 |
- Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the "audio" column, i.e. `dataset[0]["audio"]` should always be preferred over `dataset["audio"][0]`.
|
65 |
- text: `string`
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
|
69 |
### Data Splits
|
|
|
30 |
Contact: Lucas Jo([email protected]), Wonkyum Lee([email protected])
|
31 |
|
32 |
### License
|
33 |
+
|
34 |
CC BY 4.0
|
35 |
|
36 |
## Dataset Structure
|
|
|
62 |
### Data Fields
|
63 |
|
64 |
- audio: `audio`, sampling rate = 16000
|
65 |
+
- A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate.
|
66 |
- Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the "audio" column, i.e. `dataset[0]["audio"]` should always be preferred over `dataset["audio"][0]`.
|
67 |
- text: `string`
|
68 |
|
69 |
+
```pycon
|
70 |
+
>>> dataset["train"][0]
|
71 |
+
{'audio': {'path': None,
|
72 |
+
'array': array([-3.0517578e-05, 0.0000000e+00, -3.0517578e-05, ...,
|
73 |
+
0.0000000e+00, 0.0000000e+00, -6.1035156e-05], dtype=float32),
|
74 |
+
'sampling_rate': 16000},
|
75 |
+
'text': '์ธ์ฌ๋ฅผ ๊ฒฐ์ ํ๋ ๊ณผ์ ์์ ๋น ์ง๋๋ถ๊ฐ ์ฐ ์๋ด๋ํ ๋ฐ ์๋ด์ง๋๋ถ์ ์ถฉ๋ถํ ์์๋ฅผ ๊ฑฐ์น์ง ์์ ์ฑ ์ผ๋ฐฉ์ ์ผ๋ก ์ธ์ฌ๋ฅผ ํ๋ค๋ ๋ถ๋ง๋ ์๋ด์ง๋๋ถ๋ฅผ ์ค์ฌ์ผ๋ก ํ๋ฌ๋์๋ค'}
|
76 |
+
```
|
77 |
|
78 |
|
79 |
### Data Splits
|