Tokenize MIDI files for neural network processing
Project description
Midi Neural Processor
-
Repository for midi-based machine learning model's {pre/post} processing.
-
You can use this processor in any machine learnig library like tensorflow, pytorch, etc...
-
This processor's algorithm is based on PerformanceRNN & Music Transformer (Polyphonic Music) Model's preprocessing algorithm suggested by Google Magenta.
Simple Usage
Install
$ pip install midi-neural-processor
Encoding & Load midi file
- You can load & encode your midi file just one line
- encode_midi() is a role of pre-processing.
from midi_neural_processor.processor import encode_midi
encoded = encode_midi('bin/ADIG04.mid') ## 'bin/AIDG04.mid' is midi file path.
## output: [int, int, int, int, ... ].
## int range is range(0,388). 388 = NOTE_ON + NOTE_OFF + TIME_SHIFT + VELOCITY
Decoding
- decode_midi is convert integer array to midi form.
- you can gave method to file_path as a second args in that if you want to save midi as .mid file.
- all elements in integer array should be range(0,388).
from midi_neural_processor.processor import decode_midi
decode_midi(encoded, 'bin/test.mid') ## 'bin/test.mid' is midi file path.
Comming Soon
- Pedal Control
- Midi Converter to .tfrecords
License
Project is published under the MIT licence. Feel free to clone and modify repo as you want, but don't forget to add reference to authors :)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file midi_neural_processor-1.0.2.tar.gz
.
File metadata
- Download URL: midi_neural_processor-1.0.2.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b918fe03057013caf45dc759ae0a0ee41f6a1950663b3b7359250818dde49af7 |
|
MD5 | 296e860677e90b1bc98eede0088be0fb |
|
BLAKE2b-256 | 7ec1feadf6bb3befe3f874f0e86a93b5feea5a42fee35bd45740c0a29d0d8969 |
File details
Details for the file midi_neural_processor-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: midi_neural_processor-1.0.2-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c305fe3a14312205d547a200b75b23a296b0079dfca71748b54cc2be6b6e0611 |
|
MD5 | ccb031374d0e8e548802b348ba2f47cb |
|
BLAKE2b-256 | ddb600b31bb34f8fffd93945f087bd41978315d5fca2a1d486e9094c5dca3e02 |