File size: 5,841 Bytes
d9617f0 5fcb5e1 fcc09a5 c5f1657 fcc09a5 c5f1657 fcc09a5 0782bf4 c5f1657 0782bf4 c5f1657 0782bf4 c5f1657 0782bf4 c5f1657 0782bf4 c5f1657 0782bf4 9fdc6ed 0782bf4 fcc09a5 c5f1657 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
---
license: apache-2.0
datasets:
- asigalov61/Monster-Piano
language:
- en
tags:
- monster
- piano
- transformer
- music transformer
- music
- music ai
- MIDI
---
# Monster Piano Transformer
## Ultra-fast and very well fitted solo Piano music transformer
![Monster-Piano-Logo](https://github.com/user-attachments/assets/89c755b7-6fd3-45ba-93da-e8c3dd07f129)
***
```
In the heart of a grand piano black and blue,
A fuzzy monster with eyes of yellow hue,
Its fingers dance upon the ivory keys,
Weaving melodies that soothe and please.
Musical notes float like leaves on breeze,
Harmony fills the air with gentle ease,
Each key stroke a word in a song unsung,
A symphony of joy that sets the heart alight, free and light.
The monster plays with such delight,
Lost in the rhythm, lost in the light,
Its fur a blur as it moves with grace,
A pianist born from a whimsical place.
Monster Piano, a title it bears,
A fusion of art and melodic airs,
Where creativity and music blend,
In this magical concert that never ends.
Let the monster's music fill the air,
And wash away our every care,
For in its song, we find repose,
And in its rhythm, our spirits glow.
```
***
## Install
```sh
pip install monsterpianotransformer
```
#### (Optional) [FluidSynth](https://github.com/FluidSynth/fluidsynth/wiki/Download) for MIDI to Audio functinality
##### Ubuntu or Debian
```sh
sudo apt-get install fluidsynth
```
##### Windows (with [Chocolatey](https://github.com/chocolatey/choco))
```sh
choco install fluidsynth
```
***
## Quick-start use example
```python
# Import Monster Piano Transformer as mpt
import monsterpianotransformer as mpt
# Load desired Monster Piano Transformer model
# There are several to choose from...
model = mpt.load_model()
# Get sample seed MIDI path
sample_midi_path = mpt.get_sample_midi_files()[6][1]
# Load seed MIDI
input_tokens = mpt.midi_to_tokens(sample_midi_path, model_with_velocity=False)
# Generate seed MIDI continuation
output_tokens = mpt.generate(model, input_tokens, 600, return_prime=True)
# Save output batch 0 to MIDI
mpt.tokens_to_midi(output_tokens[0], model_with_velocity=False)
```
***
## Main features use examples
### Long auto-continuation generation
```python
# Import Monster Piano Transformer as mpt
import monsterpianotransformer as mpt
# Load desired Monster Piano Transformer model
# There are several to choose from...
model = mpt.load_model()
# Get sample seed MIDI path
sample_midi_path = mpt.get_sample_midi_files()[6][1]
# Load seed MIDI
input_tokens = mpt.midi_to_tokens(sample_midi_path, model_with_velocity=False)
# Generate long seed MIDI auto-continuation
output_tokens = mpt.generate_long(model, input_tokens, return_prime=True)
# Save output batch 0 to MIDI
mpt.tokens_to_midi(output_tokens[0], model_with_velocity=False)
```
### Pitches inpainting
```python
# Import Monster Piano Transformer as mpt
import monsterpianotransformer as mpt
# Load desired Monster Piano Transformer model
# There are several to choose from...
model = mpt.load_model()
# Get sample seed MIDI path
sample_midi_path = mpt.get_sample_midi_files()[6][1]
# Load seed MIDI
input_tokens = mpt.midi_to_tokens(sample_midi_path, model_with_velocity=False)
# Inpaint pitches
output_tokens = mpt.inpaint_pitches(model, input_tokens)
# Save output to MIDI
mpt.tokens_to_midi(output_tokens, model_with_velocity=False)
```
### Simple velocities inpainting
```python
# Import Monster Piano Transformer as mpt
import monsterpianotransformer as mpt
# Load desired Monster Piano Transformer model
# There are several to choose from...
model = mpt.load_model(model_name='with velocity - 3 epochs')
# Get sample seed MIDI path
sample_midi_path = mpt.get_sample_midi_files()[6][1]
# Load seed MIDI
input_tokens = mpt.midi_to_tokens(sample_midi_path, model_with_velocity=True)
# Inpaint velocities
output_tokens = mpt.inpaint_velocities_simple(model, input_tokens)
# Save output to MIDI
mpt.tokens_to_midi(output_tokens, model_with_velocity=True)
```
### Seq2Seq velocities inpainting
```python
# Import Monster Piano Transformer as mpt
import monsterpianotransformer as mpt
# Load desired Monster Piano Transformer model
# There are several to choose from...
model = mpt.load_model(model_name='velocity inpainting - 3 epochs')
# Get sample seed MIDI path
sample_midi_path = mpt.get_sample_midi_files()[6][1]
# Load seed MIDI
input_tokens = mpt.midi_to_tokens(sample_midi_path, model_with_velocity=True)
# Inpaint velocities
output_tokens = mpt.inpaint_velocities_seq2seq(model, input_tokens, verbose=True)
# Save output to MIDI
mpt.tokens_to_midi(output_tokens, model_with_velocity=True)
```
### Timings inpainting
```python
# Import Monster Piano Transformer as mpt
import monsterpianotransformer as mpt
# Load desired Monster Piano Transformer model
# There are several to choose from...
model = mpt.load_model('timings inpainting - 2 epochs')
# Get sample seed MIDI path
sample_midi_path = mpt.get_sample_midi_files()[6][1]
# Load seed MIDI
input_tokens = mpt.midi_to_tokens(sample_midi_path)
# Inpaint timings
output_tokens = mpt.inpaint_timings(model, input_tokens)
# Save output to MIDI
mpt.tokens_to_midi(output_tokens)
```
### Bridge inpainting
```python
# Import Monster Piano Transformer as mpt
import monsterpianotransformer as mpt
# Load desired Monster Piano Transformer model
# There are several to choose from...
model = mpt.load_model('bridge inpainting - 2 epochs')
# Get sample seed MIDI path
sample_midi_path = mpt.get_sample_midi_files()[11][1]
# Load seed MIDI
input_tokens = mpt.midi_to_tokens(sample_midi_path)
# Inpaint bridge
output_tokens = mpt.inpaint_bridge(model, input_tokens)
# Save output to MIDI
mpt.tokens_to_midi(output_tokens)
```
***
### Project Los Angeles
### Tegridy Code 2025 |