|

Kyutai Releases MuScriptor: An Open-Weight Decoder-Only Transformer for Multi-Instrument Music Transcription to MIDI

▶

Automatic Music Transcription (AMT) converts an audio recording into symbolic notes, often MIDI. Single-instrument transcription already works fairly effectively. However, transcribing a full multi-instrument combine stays tough. Kyutai and Mirelo crew now launch MuScriptor to shut that hole. It is an open-weight mannequin educated on actual, multi-instrument recordings throughout many genres.

This article explains how MuScriptor works, what the benchmarks present, and the way to run it.

What is MuScriptor?

At its core, MuScriptor is a decoder-only Transformer for music transcription. First, it reads a mel-spectrogram of a brief audio phase. Then it autoregressively predicts MIDI-like tokens for pitch, timing, and instrument. In impact, transcription turns into a language-modeling job, following the MT3 tokenization scheme.

The launch ships three weight variants on Hugging Face. Their sizes are small (103M), medium (307M, default), and massive (1.4B). The inference code makes use of the MIT license. The weights use CC BY-NC 4.0, so business use is restricted.

How the Three-Stage Pipeline Works

MuScriptor’s foremost concept is knowledge, not structure. Accordingly, coaching strikes by means of three levels, and every builds on the final.

  1. Pre-training makes use of D<sub>Synth</sub>, roughly 1.45M MIDI information. An on-the-fly pipeline synthesizes them throughout coaching. Augmentations embody pitch shifting, tempo adjustments, velocity adjustment, and instrument randomization. Over 250 soundfonts plus random detuning yield near-infinite audio realizations.
  2. Fine-tuning makes use of D<sub>Real</sub>, an inside set of 170,000 recordings. Together they whole greater than 11,000 hours with aligned notice annotations. Most alignments come from audio-symbolic synchronization utilizing interpolation and dynamic time warping. Poor pairs are filtered by warping distance and a most time-dilation issue.
  3. Reinforcement studying post-training makes use of D<sub>RL</sub>, 300 manually verified tracks. The crew applies a GRPO-like technique combining REINFORCE with group-relative benefit normalization. The reward sums three F-scores: onset, body, and offset. As a consequence, the mannequin learns to favor cleaner transcriptions.