Source code for mirdata.datasets.ikala

# -*- coding: utf-8 -*-
"""iKala Dataset Loader

.. admonition:: Dataset Info
    :class: dropdown

    The iKala dataset is comprised of 252 30-second excerpts sampled from 206 iKala
    songs (plus 100 hidden excerpts reserved for MIREX).
    The music accompaniment and the singing voice are recorded at the left and right
    channels respectively and can be found under the Wavfile directory.
    In addition, the human-labeled pitch contours and timestamped lyrics can be
    found under PitchLabel and Lyrics respectively.

    For more details, please visit: http://mac.citi.sinica.edu.tw/ikala/

"""

import csv
import os
import librosa
import logging
import numpy as np
from typing import BinaryIO, Optional, TextIO, Tuple

from mirdata import download_utils
from mirdata import jams_utils
from mirdata import core
from mirdata import annotations
from mirdata import io


BIBTEX = """@inproceedings{chan2015vocal,
    title={Vocal activity informed singing voice separation with the iKala dataset},
    author={Chan, Tak-Shing and Yeh, Tzu-Chun and Fan, Zhe-Cheng and Chen, Hung-Wei and Su, Li and Yang, Yi-Hsuan and
    Jang, Roger},
    booktitle={2015 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
    pages={718--722},
    year={2015},
    organization={IEEE}
}"""
TIME_STEP = 0.032  # seconds
REMOTES = {
    "metadata": download_utils.RemoteFileMetadata(
        filename="id_mapping.txt",
        url="http://mac.citi.sinica.edu.tw/ikala/id_mapping.txt",
        checksum="81097b587804ce93e56c7a331ba06abc",
        destination_dir=None,
    )
}
DOWNLOAD_INFO = """
    Unfortunately the iKala dataset is not available for download.
    If you have the iKala dataset, place the contents into a folder called
    iKala with the following structure:
        > iKala/
            > Lyrics/
            > PitchLabel/
            > Wavfile/
    and copy the iKala folder to {}
"""

LICENSE_INFO = """
When it was distributed, Ikala used to have a custom license.
Visit http://mac.citi.sinica.edu.tw/ikala/ for more details.
"""


DATA = core.LargeData("ikala_index.json")


[docs]class Track(core.Track): """ikala Track class Args: track_id (str): track id of the track Attributes: audio_path (str): path to the track's audio file f0_path (str): path to the track's f0 annotation file lyrics_path (str): path to the track's lyric annotation file section (str): section. Either 'verse' or 'chorus' singer_id (str): singer id song_id (str): song id of the track track_id (str): track id Cached Properties: f0 (F0Data): human-annotated singing voice pitch lyrics (LyricsData): human-annotated lyrics """ def __init__( self, track_id, data_home, dataset_name, index, metadata, ): super().__init__( track_id, data_home, dataset_name, index, metadata, ) self.f0_path = os.path.join(self._data_home, self._track_paths["pitch"][0]) self.lyrics_path = os.path.join(self._data_home, self._track_paths["lyrics"][0]) self.audio_path = os.path.join(self._data_home, self._track_paths["audio"][0]) self.song_id = track_id.split("_")[0] self.section = track_id.split("_")[1] self.singer_id = self._track_metadata.get(self.song_id) @core.cached_property def f0(self) -> Optional[annotations.F0Data]: return load_f0(self.f0_path) @core.cached_property def lyrics(self) -> Optional[annotations.LyricData]: return load_lyrics(self.lyrics_path) @property def vocal_audio(self) -> Optional[Tuple[np.ndarray, float]]: """solo vocal audio (mono) Returns: * np.ndarray - audio signal * float - sample rate """ return load_vocal_audio(self.audio_path) @property def instrumental_audio(self) -> Optional[Tuple[np.ndarray, float]]: """instrumental audio (mono) Returns: * np.ndarray - audio signal * float - sample rate """ return load_instrumental_audio(self.audio_path) @property def mix_audio(self) -> Optional[Tuple[np.ndarray, float]]: """mixture audio (mono) Returns: * np.ndarray - audio signal * float - sample rate """ return load_mix_audio(self.audio_path)
[docs] def to_jams(self): """Get the track's data in jams format Returns: jams.JAMS: the track's data in jams format """ return jams_utils.jams_converter( audio_path=self.audio_path, f0_data=[(self.f0, None)], lyrics_data=[(self.lyrics, None)], metadata={ "section": self.section, "singer_id": self.singer_id, "track_id": self.track_id, "song_id": self.song_id, }, )
[docs]@io.coerce_to_bytes_io def load_vocal_audio(fhandle: BinaryIO) -> Tuple[np.ndarray, float]: """Load ikala vocal audio Args: fhandle (str or file-like): File-like object or path to audio file Returns: * np.ndarray - audio signal * float - sample rate """ audio, sr = librosa.load(fhandle, sr=None, mono=False) vocal_channel = audio[1, :] return vocal_channel, sr
[docs]@io.coerce_to_bytes_io def load_instrumental_audio(fhandle: BinaryIO) -> Tuple[np.ndarray, float]: """Load ikala instrumental audio Args: fhandle (str or file-like): File-like object or path to audio file Returns: * np.ndarray - audio signal * float - sample rate """ audio, sr = librosa.load(fhandle, sr=None, mono=False) instrumental_channel = audio[0, :] return instrumental_channel, sr
[docs]@io.coerce_to_bytes_io def load_mix_audio(fhandle: BinaryIO) -> Tuple[np.ndarray, float]: """Load an ikala mix. Args: fhandle (str or file-like): File-like object or path to audio file Returns: * np.ndarray - audio signal * float - sample rate """ mixed_audio, sr = librosa.load(fhandle, sr=None, mono=True) # multipy by 2 because librosa averages the left and right channel. return 2.0 * mixed_audio, sr
[docs]@io.coerce_to_string_io def load_f0(fhandle: TextIO) -> annotations.F0Data: """Load an ikala f0 annotation Args: fhandle (str or file-like): File-like object or path to f0 annotation file Raises: IOError: If f0_path does not exist Returns: F0Data: the f0 annotation data """ lines = fhandle.readlines() f0_midi = np.array([float(line) for line in lines]) f0_hz = librosa.midi_to_hz(f0_midi) * (f0_midi > 0) confidence = (f0_hz > 0).astype(float) times = (np.arange(len(f0_midi)) * TIME_STEP) + (TIME_STEP / 2.0) f0_data = annotations.F0Data(times, f0_hz, confidence) return f0_data
[docs]@io.coerce_to_string_io def load_lyrics(fhandle: TextIO) -> annotations.LyricData: """Load an ikala lyrics annotation Args: fhandle (str or file-like): File-like object or path to lyric annotation file Raises: IOError: if lyrics_path does not exist Returns: LyricData: lyric annotation data """ # input: start time (ms), end time (ms), lyric, [pronunciation] reader = csv.reader(fhandle, delimiter=" ") start_times = [] end_times = [] lyrics = [] pronunciations = [] for line in reader: start_times.append(float(line[0]) / 1000.0) end_times.append(float(line[1]) / 1000.0) lyrics.append(line[2]) if len(line) > 2: pronunciation = " ".join(line[3:]) pronunciations.append(pronunciation) else: pronunciations.append("") lyrics_data = annotations.LyricData( np.array([start_times, end_times]).T, lyrics, pronunciations, ) return lyrics_data
[docs]@core.docstring_inherit(core.Dataset) class Dataset(core.Dataset): """ The ikala dataset """ def __init__(self, data_home=None): super().__init__( data_home, index=DATA.index, name="ikala", track_class=Track, bibtex=BIBTEX, remotes=REMOTES, download_info=DOWNLOAD_INFO, license_info=LICENSE_INFO, ) @core.cached_property def _metadata(self): id_map_path = os.path.join(self.data_home, "id_mapping.txt") if not os.path.exists(id_map_path): raise FileNotFoundError("Metadata not found. Did you run .download()?") with open(id_map_path, "r") as fhandle: reader = csv.reader(fhandle, delimiter="\t") singer_map = {} for line in reader: if line[0] == "singer": continue singer_map[line[1]] = line[0] return singer_map
[docs] @core.copy_docs(load_vocal_audio) def load_vocal_audio(self, *args, **kwargs): return load_vocal_audio(*args, **kwargs)
[docs] @core.copy_docs(load_instrumental_audio) def load_instrumental_audio(self, *args, **kwargs): return load_instrumental_audio(*args, **kwargs)
[docs] @core.copy_docs(load_mix_audio) def load_mix_audio(self, *args, **kwargs): return load_mix_audio(*args, **kwargs)
[docs] @core.copy_docs(load_f0) def load_f0(self, *args, **kwargs): return load_f0(*args, **kwargs)
[docs] @core.copy_docs(load_lyrics) def load_lyrics(self, *args, **kwargs): return load_lyrics(*args, **kwargs)