Update README.md
Browse files
README.md
CHANGED
@@ -4,11 +4,12 @@ license: cc-by-3.0
|
|
4 |
|
5 |
YODAS2 is the long-form dataset from YODAS dataset.
|
6 |
|
7 |
-
It provides the same dataset as
|
8 |
|
9 |
-
|
|
|
10 |
|
11 |
-
For detailed information about
|
12 |
|
13 |
## Usage:
|
14 |
|
@@ -27,7 +28,7 @@ Each data point corresponds to an entire video on YouTube, it contains the follo
|
|
27 |
- start: start timestamp in seconds of this utterance
|
28 |
- end: end timestamp in seconds of this utterance
|
29 |
|
30 |
-
|
31 |
|
32 |
**standard mode**: each subset will be downloaded to the local dish before first iterating.
|
33 |
|
@@ -47,9 +48,31 @@ from datasets import load_dataset
|
|
47 |
|
48 |
# this streaming loading will finish quickly
|
49 |
ds = load_dataset('espnet/yodas2', 'en000', streaming=True)
|
|
|
50 |
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
print(next(iter(ds['train'])))
|
55 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
YODAS2 is the long-form dataset from YODAS dataset.
|
6 |
|
7 |
+
It provides the same dataset as [espnet/yodas](https://huggingface.co/datasets/espnet/yodas) but YODAS2 has the following new features:
|
8 |
|
9 |
+
- formatted in the long-form (video-level) where audios are not segmented.
|
10 |
+
- audios are encoded using higher sampling rates (i.e. 24k)
|
11 |
|
12 |
+
For detailed information about YODAS dataset, please refer to [our paper](https://arxiv.org/abs/2406.00899) and the [espnet/yodas repo](https://huggingface.co/datasets/espnet/yodas).
|
13 |
|
14 |
## Usage:
|
15 |
|
|
|
28 |
- start: start timestamp in seconds of this utterance
|
29 |
- end: end timestamp in seconds of this utterance
|
30 |
|
31 |
+
YODAS2 also supports two modes:
|
32 |
|
33 |
**standard mode**: each subset will be downloaded to the local dish before first iterating.
|
34 |
|
|
|
48 |
|
49 |
# this streaming loading will finish quickly
|
50 |
ds = load_dataset('espnet/yodas2', 'en000', streaming=True)
|
51 |
+
```
|
52 |
|
53 |
|
54 |
+
## Reference
|
55 |
+
|
|
|
56 |
```
|
57 |
+
@inproceedings{li2023yodas,
|
58 |
+
title={Yodas: Youtube-Oriented Dataset for Audio and Speech},
|
59 |
+
author={Li, Xinjian and Takamichi, Shinnosuke and Saeki, Takaaki and Chen, William and Shiota, Sayaka and Watanabe, Shinji},
|
60 |
+
booktitle={2023 IEEE Automatic Speech Recognition and Understanding Workshop (ASRU)},
|
61 |
+
pages={1--8},
|
62 |
+
year={2023},
|
63 |
+
organization={IEEE}
|
64 |
+
}
|
65 |
+
```
|
66 |
+
|
67 |
+
|
68 |
+
## Contact
|
69 |
+
|
70 |
+
If you have any questions, feel free to contact us at the following email address.
|
71 |
+
|
72 |
+
We made sure that our dataset only consisted of videos with CC licenses during our downloading. But in case you find your video unintentionally included in our dataset and would like to delete it, you can send a delete request to the following email.
|
73 |
+
|
74 |
+
Remove the parenthesis `()` from the following email address
|
75 |
+
|
76 |
+
`(lixinjian)(1217)@gmail.com`
|
77 |
+
|
78 |
+
|