LibriLightLimited¶ class torchaudio.datasets.LibriLightLimited(root: Union[str, Path], subset: str = '10min', download: bool = False)[源代码]¶ Libri-light [Kahn 等人,2020] 数据集的子集,该数据集在 HuBERT [Hsu 等人,2021] 中用于监督微调。 参数:: root (str 或 Path) – 数据集所在的目录路径或下载目录。 subset (str, 可选) – 要使用的子集。选项:["10min", "1h", "10h"] (默认值:"10min")。 download (bool, 可选) – 如果在根路径下找不到数据集,是否要下载它。 (默认值:False)。 __getitem__¶ LibriLightLimited.__getitem__(n: int) → Tuple[Tensor, int, str, int, int, int][源代码]¶ 从数据集中加载第 n 个样本。 参数:: n (int) – 要加载的样本的索引 返回值:: 以下项目的元组; 张量波形 int采样率 str转录 int说话人 ID int章节 ID int话语 ID