musicautobot
musicautobot copied to clipboard
Using deep learning to generate music in MIDI format.
Hi, I was wondering if someone might have some insight. I've followed the "Train" notebook, but when I try to run it, I get the titular error. I am using...
when ever i put source activate musicautobot it just says "'source' is not recognized as an internal or external command, operable program or batch file." so is there anyway to...
Hi, [this line of code](https://github.com/bearpelican/musicautobot/blob/master/musicautobot/multitask_transformer/model.py#L83) seems redundant since `bar_pos` is already `< self.max_bar_len` by the line above. Also I am a little bit confused about the default value of `beat_len=32`...
I am trying to start the Flask server. This results in the following error message: ```sh (base) felix@LAPTOP:~/Project/musicautobot/serve$ python run.py Traceback (most recent call last): File "/home/felix/Project/musicautobot/serve/run.py", line 2, in...
project
Can someone please implement this project in my local host? I can easily pay you.
When trying to preprocess my midi files (using the DataPreProcessing notebook), it keeps on returning None when ``` try: # if duet_only and num_piano_tracks(input_path) not in [1, 2]: return None...
This is such an interesting work. I hope I could finetune the model to generate particular type of genre and I want to listen to your suggestions. For example, I...
Hi Andrew, thanks for the great code. In my own code for MIDI generation, at inference time, I tried your repeat penalty formula and it worked great. Do you have...
When I run run_multitask.py in Windows10, I met a path error: NotImplementedError: cannot instantiate 'PosixPath' on your system in the following code: data = load_data(args.path, Path('piano_duet')/args.data_file, bs=args.batch_size, bptt=args.bptt, transpose_range=transpose_range, dl_tfms=mlm_tfm,...
I'm curious what the purpose of [lines 85 and 86](https://github.com/bearpelican/musicautobot/blob/60511252461e8c3e9fd387b1329c49069448ccf6/musicautobot/vocab.py#L85) is in the vocab.py file. Why are you padding the tokens with dummy tokens?