YODAS2 is the long-form dataset from YODAS dataset.
It provides the same dataset as espnet/yodas but YODAS2 has the following new features:
For detailed information about YODAS dataset, please refer to our paper and the espnet/yodas repo.
Each data point corresponds to an entire video on YouTube, it contains the following fields:
espnet/yodas is 16k)YODAS2 also supports two modes:
standard mode: each subset will be downloaded to the local dish before first iterating.
from datasets import load_dataset
# Note this will take very long time to download and preprocess
# you can try small subset for testing purpose
ds = load_dataset('espnet/yodas2', 'en000')
print(next(iter(ds['train'])))
streaming mode most of the files will be streamed instead of downloaded to your local deivce. It can be used to inspect this dataset quickly.
from datasets import load_dataset
# this streaming loading will finish quickly
ds = load_dataset('espnet/yodas2', 'en000', streaming=True)
@inproceedings{li2023yodas,
title={Yodas: Youtube-Oriented Dataset for Audio and Speech},
author={Li, Xinjian and Takamichi, Shinnosuke and Saeki, Takaaki and Chen, William and Shiota, Sayaka and Watanabe, Shinji},
booktitle={2023 IEEE Automatic Speech Recognition and Understanding Workshop (ASRU)},
pages={1--8},
year={2023},
organization={IEEE}
}
If you have any questions, feel free to contact us at the following email address.
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.
Remove the parenthesis () from the following email address
(lixinjian)(1217)@gmail.com
500 commits
YODAS2 is the long-form dataset from YODAS dataset.
It provides the same dataset as espnet/yodas but YODAS2 has the following new features:
For detailed information about YODAS dataset, please refer to our paper and the espnet/yodas repo.
Each data point corresponds to an entire video on YouTube, it contains the following fields:
espnet/yodas is 16k)YODAS2 also supports two modes:
standard mode: each subset will be downloaded to the local dish before first iterating.
from datasets import load_dataset
# Note this will take very long time to download and preprocess
# you can try small subset for testing purpose
ds = load_dataset('espnet/yodas2', 'en000')
print(next(iter(ds['train'])))
streaming mode most of the files will be streamed instead of downloaded to your local deivce. It can be used to inspect this dataset quickly.
from datasets import load_dataset
# this streaming loading will finish quickly
ds = load_dataset('espnet/yodas2', 'en000', streaming=True)
@inproceedings{li2023yodas,
title={Yodas: Youtube-Oriented Dataset for Audio and Speech},
author={Li, Xinjian and Takamichi, Shinnosuke and Saeki, Takaaki and Chen, William and Shiota, Sayaka and Watanabe, Shinji},
booktitle={2023 IEEE Automatic Speech Recognition and Understanding Workshop (ASRU)},
pages={1--8},
year={2023},
organization={IEEE}
}
If you have any questions, feel free to contact us at the following email address.
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.
Remove the parenthesis () from the following email address
(lixinjian)(1217)@gmail.com
500 commits