LIBRISPEECH¶
- class torchaudio.datasets.LIBRISPEECH(root: Union[str, Path], url: str = 'train-clean-100', folder_in_archive: str = 'LibriSpeech', download: bool = False)[source]¶
LibriSpeech [Panayotov 等人,2015] 数据集。
- 参数:
root (str 或 Path) – 数据集所在或下载到的目录路径。
url (str,可选) – 从中下载数据集的 URL,或要下载的数据集类型。允许的类型值为
"dev-clean"
、"dev-other"
、"test-clean"
、"test-other"
、"train-clean-100"
、"train-clean-360"
和"train-other-500"
。(默认值:"train-clean-100"
)folder_in_archive (str,可选) – 数据集的顶级目录。(默认值:
"LibriSpeech"
)download (bool,可选) – 如果在根路径中找不到数据集,是否下载它。(默认值:
False
)。