gtzan / gtzan.py
mcamara's picture
Path OS compatibility fix
961418c
raw history blame
No virus
3.36 kB
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The GTZAN dataset."""
from pathlib import Path
import datasets
import pandas as pd
_CITATION = """\
@misc{tzanetakis_essl_cook_2001,
author = "Tzanetakis, George and Essl, Georg and Cook, Perry",
title = "Automatic Musical Genre Classification Of Audio Signals",
url = "http://ismir2001.ismir.net/pdf/tzanetakis.pdf",
publisher = "The International Society for Music Information Retrieval",
year = "2001"
}
"""
_DESCRIPTION = """\
GTZAN is a dataset for musical genre classification of audio signals. The dataset consists of 1,000 audio tracks, each of 30 seconds long. It contains 10 genres, each represented by 100 tracks. The tracks are all 22,050Hz Mono 16-bit audio files in WAV format. The genres are: blues, classical, country, disco, hiphop, jazz, metal, pop, reggae, and rock.
"""
_HOMEPAGE = "http://marsyas.info/downloads/datasets.html"
# TODO: Add the licence for the dataset here if you can find it
_LICENSE = ""
_URL = "http://opihi.cs.uvic.ca/sound/genres.tar.gz"
GENRES = ["blues", "classical", "country", "disco", "hiphop", "jazz", "metal", "pop", "reggae", "rock"]
CORRUPTED_FILES = ["jazz.00054.wav"]
class Gtzan(datasets.GeneratorBasedBuilder):
"""The GTZAn dataset"""
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=datasets.Features(
{
"file": datasets.Value("string"),
"audio": datasets.Audio(sampling_rate=22_050),
"genre": datasets.ClassLabel(names=GENRES),
}
),
homepage=_HOMEPAGE,
license=_LICENSE,
citation=_CITATION,
)
def _split_generators(self, dl_manager):
local_extracted_archive = dl_manager.download_and_extract("data/genres.tar.gz")
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
gen_kwargs={
"local_extracted_archive": local_extracted_archive,
},
)
]
def _generate_examples(self, local_extracted_archive):
paths = list(Path(local_extracted_archive).glob("**/*.wav"))
paths = [p for p in paths if "._" not in p.name]
data = []
for path in paths:
label = path.parts[-2]
name = path.parts[-1]
if name in CORRUPTED_FILES:
continue
data.append({"file": str(path), "genre": label})
df = pd.DataFrame(data)
df.sort_values("file", inplace=True)
for idx_, row in df.iterrows():
yield idx_, {"file": row["file"], "audio": row["file"], "genre": row["genre"]}