Spaces:
Sleeping
Sleeping
from abc import ABC, abstractmethod | |
class MelodyDatasetHandler(ABC): | |
name: str | |
def __init__(self, *args, **kwargs): | |
pass | |
def get_song_ids(self) -> list[str]: | |
pass | |
def get_phrase_length(self, song_id): | |
pass | |
def iter_song_phrases(self, song_id): | |
pass | |