All Projects → llSourcell → How_to_generate_music_in_tensorflow_live

llSourcell / How_to_generate_music_in_tensorflow_live

Licence: apache-2.0

Programming Languages

python
139335 projects - #7 most used programming language

MusicGenerator

Overview

This is the code for this video on Youtube by Siraj Raval as part of the Deep Learning Nanodegree course with Udacity. We're going to use an encoder-decoder model to generate a MIDI sequence given an input sequence of MIDI ragtime songs.

Dependencies

The program requires the following dependencies (easy to install using pip):

  • Python 3
  • TensorFlow (tested with v0.10.0rc0. Won't work with previous versions)
  • CUDA (for using gpu, see TensorFlow installation page for more details)
  • Numpy (should be installed with TensorFlow)
  • Mido (midi library)
  • Tqdm (for the nice progression bars)
  • OpenCv (Sorry, there is no simple way to install it with python 3. It's primarily used as visualisation tool to print the piano roll so is quite optional. All OpenCv calls are contained inside the imgconnector file so if you want to use test the program without OpenCv, you can try removing the functions inside the file)

Usage

To train the model, simply run main.py. Once trained, you can generate the results with main.py --test --sample_length 500. For more help and options, use python main.py -h.

To visualize the computational graph and the cost with TensorBoard, run tensorboard --logdir save/.

Credits

Credits for the code go to Conchylicultor. I've merely created a wrapper to get people started.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].