GTZAN¶
- class torchaudio.datasets.GTZAN(root: Union[str, Path], url: str = 'http://opihi.cs.uvic.ca/sound/genres.tar.gz', folder_in_archive: str = 'genres', download: bool = False, subset: Optional[str] = None)[source]¶
GTZAN [Tzanetakis 等人,2001] 数据集。
注意
如果您计划使用此数据集发布结果,请参阅 http://marsyas.info/downloads/datasets.html。
注意
截至 2022 年 10 月,下载链接目前无法使用。在 GTZAN 数据集中设置
download=True
将导致 URL 连接错误。- 参数:
root (str 或 Path) – 数据集所在目录或下载目录的路径。
url (str, 可选) – 从中下载数据集的 URL。 (默认值:
"http://opihi.cs.uvic.ca/sound/genres.tar.gz"
)folder_in_archive (str, 可选) – 数据集的顶层目录。
download (bool, 可选) – 如果在根路径中找不到数据集,是否下载数据集。 (默认值:
False
)。subset (str 或 None, 可选) – 要使用的数据集子集。 可以是
"training"
、"validation"
、"testing"
或None
。 如果为None
,则使用整个数据集。 (默认值:None
)。