ofxTensorFlow2 icon indicating copy to clipboard operation
ofxTensorFlow2 copied to clipboard

music generation example

Open Jonathhhan opened this issue 3 years ago • 6 comments

i tried to use this model for music generation: https://colab.research.google.com/github/tensorflow/docs/blob/master/site/en/tutorials/audio/music_generation.ipynb#scrollTo=1mil8ZyJNe1w

its very rough yet, and not sure if everything works as expected. maybe you can find something wrong... especially my replacement for tf.random.categorical(pitch_logits, num_samples=1) could be wrong. the model is very small, so it is included in the example... https://github.com/Jonathhhan/ofxTensorFlow2/tree/music_generation_example/example_music_generation

Jonathhhan avatar Aug 10 '22 03:08 Jonathhhan

I guess it works now...

Jonathhhan avatar Aug 10 '22 22:08 Jonathhhan

Without trying it, I would say we could connect it to a synth with ofxMidi or generate audio directly with ofxPd.

danomatika avatar Aug 10 '22 22:08 danomatika

@danomatika yeah, I already connected it with midi out from ofxMidi. ofxPd would be nice, too. Often it sounds quite random, but I can also hear some musical structure. Have to play a bit with the training settings...

Jonathhhan avatar Aug 10 '22 22:08 Jonathhhan

Looks like you need to track the duration for each pitch and send the noteoff individually. That might give you better rhythm and structure on the output.

danomatika avatar Aug 10 '22 22:08 danomatika

It is interesting, that the output seems to get more structure after running for some time. But maybe that is, because I choose a more or less random sequence for the beginning...

Jonathhhan avatar Aug 11 '22 00:08 Jonathhhan

I added velocity to the model (and added the edited notebook to the example): https://github.com/Jonathhhan/ofxTensorFlow2/tree/music_generation_example/example_music_generation_2 And actually wonder, how to implement the music transformer: https://colab.research.google.com/notebooks/magenta/piano_transformer/piano_transformer.ipynb

Jonathhhan avatar Aug 11 '22 23:08 Jonathhhan