Views
No views yet
.chart files from raw audio.| Hyperparameter | Value |
|---|---|
| Parameters | 8,038,017 |
d_model | 256 |
| Encoder layers | 4 |
| Decoder layers | 4 |
| Attention heads | 8 |
| FFN dim | 512 |
| Dropout | 0.2 |
| Vocab size | 187 |
| Max sequence length | 8,192 tokens |
| Max beats | 1,024 |
| MERT input dim | 1,024 |
| Log-Mel frames | 32 × 128 |
PAD=0 BOS=1 EOS=2 UNK=3
BEAT_BOUNDARY=4 MEASURE_START=5
INSTR_GUITAR=6 INSTR_BASS=7 INSTR_DRUMS=8
WAIT(1-48)=9-56
GUITAR_NOTE=57-87 MOD_HOPO=88 MOD_TAP=89 MOD_OPEN=90 MOD_FORCE_STRUM=91
DRUM_NOTE=92-122
SUS(0-59)=123-182
STAR_POWER_ON=183 STAR_POWER_OFF=184 SOLO_ON=185 SOLO_OFF=1861python src/auto_charter/scripts/gradio_multigen.py \\
2 --checkpoint path/to/checkpoint \\
3 --port 78601from auto_charter.model.charter_model import AutoCharterModel
2model = AutoCharterModel.from_pretrained("thejorseman/CloneCharter")