The egtzan_plus dataset is an GTZAN like dataset for musical genre classification in the vision domain.
In egtzan_plus, new classes such as Electro and Afro have been added to the original GTZAN dataset. Each audio track (30s) is transformed into a Mel-frequency spectrogram using Librosa:
y, sr = librosa.load(audio_file)
ms = librosa.feature.melspectrogram(y=y, sr=sr, n_mels=128, fmax=8000)
log_ms = librosa.power_to_db(ms… See the full description on the dataset page:
https://huggingface.co/datasets/ghermoso/egtzan_plus.