【发布时间】:2020-07-19 23:26:54
【问题描述】:
我已经解析了一个 midi 文件,并且我已经成功地得到了一个按乐器分解的音符字典。下面是note_dict 的一个缩略示例,出于本问题的目的而被截断。
我的最终目标是拥有一个嵌套字典,为我提供曲目名称,然后将每个可能的音符作为键,然后将所有可能的“下一个”音符列表作为值。目的是将其用作Markov chain in Foxdot,一个用于音乐生成的python接口。
它应该看起来像:
{'track1': {note: [note1, note2, note3], note2: [note1, note2, note3]}, 'track2': {note: [note1, note2, note3], note2: [note1, note2, note3]}
这是我所拥有的示例:
import itertools
def pairwise(iterable):
a, b = itertools.tee(iterable)
next(b, None)
return list(zip(a, b))
note_dict = {'Vocal': [-2, -2, -1, -2], 'Guitar': [1, 1, 4, 1, -2, 1]}
note_dict_updated = { track: [{ n for n in notes }, pairwise(notes), notes] for track, notes in note_dict.items() }
print(note_dict_updated)
这给了我以下信息,其中第一组是所有不同的音符,元组列表是一对(note, next note),最后一个列表只是按顺序排列的原始音符列表。
{'Vocal': [{-2, -1}, [(-2, -2), (-2, -1), (-1, -2)], [-2, -2, -1, -2]], 'Guitar': [{1, 4, -2}, [(1, 1), (1, 4), (4, 1), (1, -2), (-2, 1)], [1, 1, 4, 1, -2, 1]]}
我希望集合的元素充当键,当元组的第一个元素与集合的元素匹配时,它被添加到与键关联的值列表中。
根据上面的note_dict,我想要的最终结果是:
{'Vocal': {-2: [-2, -1], -1: [-2]}, 'Guitar': {1: [1, 4, -2], 4: [1], -2: [1]}}
话虽如此,我并没有被锁定在我需要使用note_dict_updated 的方法中。如果有更聪明的方法可以从 note_dict 获得我想要的最终结果,我很想听听。
编辑:我稍微更新了我的问题。 first answer 适用于我的初始示例,但我相信当每个值中的注释列表重叠时会出现问题。希望我更新后的预期最终结果会更有帮助。
【问题讨论】:
标签: python dictionary midi markov-chains mido