title | tags | authors | affiliations | date | bibliography | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Spleeter: a fast and state-of-the art music source separation tool with pre-trained models |
|
|
|
04 March 2020 |
paper.bib |
We present and release a new tool for music source separation with pre-trained models called Spleeter. Spleeter was designed with ease of use, separation performance and speed in mind. Spleeter is based on Tensorflow [@tensorflow2015-whitepaper] and makes it possible to:
- split music audio files into several stems with a single command line using pre-trained models. A music audio file can be separated into
$2$ stems (vocals and accompaniments),$4$ stems (vocals, drums, bass and other) or$5$ stems (vocals, drums, bass, piano and other). - train source separation models or fine-tune pre-trained ones with Tensorflow (provided you have a dataset of isolated sources).
The performance of the pre-trained models are very close to the published state of the art and is one of the best performing
We release Spleeter with pre-trained state-of-the-art models in order to help the Music Information Retrieval (MIR) research community leverage the power of source separation in various MIR tasks, such as vocal lyrics analysis from audio (audio/lyrics alignement, lyrics transcription...), music transcription (chord transcription, drums transcription, bass transcription, chord estimation, beat tracking), singer identification, any type of multilabel classification (mood/genre...), vocal melody extraction or cover detection. We believe that source separation has reached a level of maturity that makes it worth consideration for these tasks and that specific features computed from isolated vocals, drums or bass may help increase performances, especially in low data availability scenarios (small datasets, limited annotation availability) for which supervised learning might be difficult. Spleeter also makes it possible to fine tune the provided state-of-the-art models in order to adapt the system to a specific use-case. Finally, having an available source separation tool such as Spleeter will allow researchers to compare performances of their new models to a state-of-the-art one on their own private datasets instead of musdb18, which is usually the only used dataset for reporting separation performances for unreleased models. Note that we cannot release the training data for copyright reasons, and thus, sharing pre-trained models were the only way to make these results available to the community.
Spleeter contains pre-trained models for:
- vocals/accompaniment separation.
-
$4$ stems separation as in SiSec [@SISEC18] (vocals, bass, drums and other). -
$5$ stems separation with an extra piano stem (vocals, bass, drums, piano and other). It is, to the authors knowledge, the first released model to perform such a separation.
The pre-trained models are U-nets [@unet2017] and follows similar specifications as in [@deezerICASSP2019]. The U-net is a encoder/decoder Convolutional Neural Network (CNN) architecture with skip connections. We used
Training and inference is implemented in Tensorflow which makes it possible to run the code on Central Processing Unit (CPU) or GPU.
As the whole separation pipeline can be run on a GPU and the model is based on a CNN, computations are efficiently parallelized and model inference is very fast. For instance, Spleeter is able to separate the whole musdb18 test dataset (about
The models compete with the state of the art on the standard musdb18 dataset [@musdb18] while it was not trained, validated or optimized in any way with musdb18 data. We report results in terms of standard source separation metrics [@separation_metrics], namely Signal to Distortion Ratio (SDR), Signal to Artifacts Ratio (SAR), Signal to Interference Ratio (SIR) and source Image to Spatial distortion Ratio (ISR), are presented in the following table compared to Open-Unmix [@Open-Unmix] and Demucs [@demucs] (only SDR are reported for Demucs since other metrics are not available in the paper) which are, to the authors knowledge, the only released system that perform near state-of-the-art performances. We present results for soft masking and for multi-channel Wiener filtering (applied using Norbert [@Norbert]). As can be seen, for most metrics Spleeter is competitive with Open-Unmix and especially on SDR for all instruments, and is almost on par with Demucs.
Spleeter Mask | Spleeter MWF | Open-Unmix | Demucs | |
---|---|---|---|---|
Vocals SDR | 6.55 | 6.86 | 6.32 | 7.05 |
Vocals SIR | 15.19 | 15.86 | 13.33 | |
Vocals SAR | 6.44 | 6.99 | 6.52 | |
Vocals ISR | 12.01 | 11.95 | 11.93 | |
Bass SDR | 5.10 | 5.51 | 5.23 | 6.70 |
Bass SIR | 10.01 | 10.30 | 10.93 | |
Bass SAR | 5.15 | 5.96 | 6.34 | |
Bass ISR | 9.18 | 9.61 | 9.23 | |
Drums SDR | 5.93 | 6.71 | 5.73 | 7.08 |
Drums SIR | 12.24 | 13.67 | 11.12 | |
Drums SAR | 5.78 | 6.54 | 6.02 | |
Drums ISR | 10.50 | 10.69 | 10.51 | |
Other SDR | 4.24 | 4.55 | 4.02 | 4.47 |
Other SIR | 7.86 | 8.16 | 6.59 | |
Other SAR | 4.63 | 4.88 | 4.74 | |
Other ISR | 9.83 | 9.87 | 9.31 |
Spleeter [@spleeter] source code and pre-trained models are available on github and distributed under a MIT license. This repository will eventually be used for releasing other models with improved performances or models separating into more than
Spleeter is available as a standalone Python package, and also provided as a conda recipe and self-contained Dockers which makes it usable as is on various platforms.
We acknowledge contributions from Laure Pretet who trained first models and wrote the first piece of code that lead to Spleeter.