def determine_split()

in basic_pitch/data/datasets/guitarset.py [0:0]


    def determine_split(index: int) -> str:
        if index < len(track_ids) * validation_bound:
            return "train"
        elif index < len(track_ids) * test_bound:
            return "validation"
        else:
            return "test"