Results 10 comments of Yu-Siang Huang

I cannot produce this error message. Please check your environments.

It is called "out of vocabulary" (OOV) issue in NLP, which is raised because "Tempo Value_57" is not in your or my built vocabulary. You have to manually revise the...

For pointing the discrete locations in a bar, we consider the **16th-note time grid**.

Take a quick look at your code. 1. why `beat_new[0] = rawbeat_std[0]`, but `beat_new[i] = rawbeat_std[i] - rawbeat_std[i - 1]` 2. is "downbeat" salience, not "all" salience

Hi, In my opinion, the main reason is the musical difference between pop music (my data) and classical music (MAESTRO). Such as time signatures you mentioned (usually 4/4 for pop...

```python from collections import Counter import pickle all_elements= [] for midi_file in you_all_midi_files: events = model.extract_events(midi_file) for event in events: element = '{}_{}'.format(event.name, event.value) all_elements.append(element) counts = Counter(all_elements) event2word =...

Hi. If possible, please describe your questions/errors more clearly. Or it is hard for us to help you.

plz check your environment and python package versions.

Hi, Because we use a very simple brute-force method to sequence. The steps are: 1. generate all the possible permutations first! `#41 ps = [p for p in multiset_permutations(np.arange(n))]` 2....