StemLab
StemLab by Kieran Simkin · My Songs · Arcadians EPK · Source
Packaging identity: the canonical project name is StemLab. StemLab is part of the Dance Flow project. The PyPI distribution is named
danceflow-stemlabsolely because Python package-registry names are globally unique. The Python import, CLI, GitHub repository and container image remainstemlab.
StemLab is the audio-analysis engine in Kieran Simkin's DanceFlow BPM and motion-response workflow. It separates and interprets a master track into synchronised stem, BPM/beat, structure, harmony, timbre, speech/lyric and semantic data. Those outputs can drive downstream motion-aware experiences, including the WordPress DanceMoves plugin, while StemLab remains usable as a standalone CLI, Python library, web service and container.
Model weights are not redistributed by this project. They are fetched from their upstream registries/releases on first use. This avoids silently republishing checkpoints whose licensing may differ from the source code license, and lets upstream integrity metadata be used where available.
DanceFlow and DanceMoves
DanceFlow is the wider BPM and motion-response workflow. StemLab is its music-understanding layer; the WordPress DanceMoves plugin is a related downstream motion-response component. StemLab has no WordPress dependency and communicates through normal analysis artifacts and service APIs, so it remains independently useful and reproducible.
See docs/danceflow.md for the component boundary.
Curated default model set (September 2026)
| StemLab id | Role | Outputs | Why it is included |
|---|---|---|---|
bs_roformer_sw |
high-capacity | vocals, drums, bass, guitar, piano, other (+ upstream instrumental) | Current production-oriented BS-RoFormer inference package recommends this six-stem checkpoint. |
mvsep_mega53 |
high-capacity / broad taxonomy | 53 raw stems (discovered dynamically) | Extremely broad one-checkpoint stem inventory for later assessment. Upstream warns it is memory-heavy and recommends at least 16 GB VRAM. |
scnet_xl_ihf |
high-capacity | vocals, drums, bass, other | The MSST published checkpoint table reports a 10.08 dB average MUSDB test SDR and 9.92 dB Multisong average for this model. |
htdemucs_ft |
high-capacity established baseline | drums, bass, other, vocals | Fine-tuned HTDemucs remains a useful independent architecture/baseline rather than another RoFormer variant. |
openunmix_umxhq |
compact / low-latency candidate | vocals, drums, bass, other | Compact PyTorch/Open-Unmix baseline. StemLab runs niter=0 to favour latency. “Realtime” is hardware- and buffer-dependent: benchmark it on the intended target. |
An optional htdemucs_6s model is registered for guitar/piano comparison but is not part of the default top-four group.
Relevant upstreams:
- https://github.com/openmirlab/bs-roformer-infer
- https://github.com/ZFTurbo/Music-Source-Separation-Training
- https://github.com/adefossez/demucs
- https://github.com/sigsep/open-unmix-pytorch
Analysis performed
For every successful separator, every WAV it emits is retained. Stem names are discovered from files rather than truncated to a hard-coded four-stem schema, which is important for MVSep Mega 53. For the master and every stem, StemLab writes both a PNG spectrogram and compressed .npz spectrogram data (time axis, frequency axis, dB matrix, FFT metadata).
The preferred vocal stem is passed through the Silero VAD implementation bundled with faster-whisper. Speech regions are used to create a timeline-preserving spoken_word.wav (non-speech is zeroed rather than concatenated), then Whisper is run with word timestamps. Outputs include whisper.json, speech_regions.json, transcript.txt, transcript.srt, and words.tsv.
Beat analysis runs:
- BeatNet in offline/DBN mode.
- Beat This! using the
final0checkpoint and its minimal postprocessor. - Beat Transformer, using the original released model code/checkpoints. The model was trained on five demixed mel streams, so StemLab maps BS-RoFormer-SW to vocals, drums, bass, piano, and
other + guitar, makes 128-bin mel-power spectrograms at the original 44.1 kHz / 4096 FFT / 1024-hop settings, and averages all eight released fold checkpoints by default. It uses the original madmom DBN decoder if madmom is importable, otherwise a documented SciPy peak-picking fallback.
Beat outputs are stored as JSON, TSV, and (for Beat Transformer) activation NPZ data.
StemLab also supports the official Vamp Plugin Pack, executed through
Sonic Annotator. The curated Vamp pass focuses on musically useful outputs:
Chordino chord transcription and harmonic-change likelihood; NNLS chroma and
bass chroma; Queen Mary key and tonal-change detection; concert-pitch tuning;
pYIN melody/F0 and monophonic note transcription on the preferred separated
vocal stem; Silvet polyphonic note transcription; Segmentino song-structure
segmentation; and the Queen Mary Vamp beat/bar tracker. Raw CSV, pinned
transform files, JSON, NPZ and plots are retained under vamp/, with the most
useful melody/harmony layers also embedded in the Sonic Visualiser session.
Comprehensive sonic, harmonic, rhythmic and semantic analysis
StemLab 1.0 consolidates a higher-level evidence-fusion pass without discarding any of the existing low-level outputs. The default deep pass now includes:
| Action | Evidence / model | Main output |
|---|---|---|
| Sonic profile | pyloudnorm BS.1770 + librosa DSP |
LUFS, dynamics, true-peak estimate, timbre and stereo |
| Groove / meter | all successful beat grids + onset analysis | tempo stability, meter, swing, offbeat energy and quantisation error |
| Harmony | Chordino + NNLS chroma + QM key/tuning | chord progression, harmonic rhythm, key evidence and tonal changes |
| Functional structure | All-In-One-Infer 3.1 | BPM, beats/downbeats and intro/verse/chorus/bridge/outro-style sections |
| Rhyme / prosody | CMU Pronouncing Dictionary + timing | rhyme scheme, internal rhyme, syllables, repetitions and delivery rate |
| Lyric semantics | SentenceTransformers | theme similarity, continuity and unsupervised line clusters |
| Song map | StemLab evidence fusion | section-level sonic/rhythm/chord/lyric summaries on one timeline |
Optional actions include Basic Pitch polyphonic MIDI/note transcription on isolated instrument stems and MuQ-MuLan zero-shot audio/text semantics. MuQ-MuLan's released weights are CC-BY-NC 4.0, so that route is deliberately opt-in and its licence is embedded in every result. Embedding similarities are labelled as similarities, never probabilities.
Inspect the routes and their dependencies with:
stemlab analysis-actions
Useful switches include --no-structure, --no-text-semantics, --audio-semantics,
--basic-pitch, and --all-in-one-embeddings.
The derived artifacts live under deep/ (sonic/, rhythm/, harmony/, structure/,
lyrics/, semantic_text/, optional semantic_audio/ and basic_pitch/, plus
song_map/song_map.json and summary.json).
Install
Python 3.10 or 3.11 is recommended because the legacy BeatNet/madmom ecosystem is less predictable on newer Python versions.
From PyPI, install the released StemLab distribution with:
pip install danceflow-stemlab
The installed Python package and command remain stemlab. For development from a source checkout:
python -m venv .venv
. .venv/bin/activate # Windows: .venv\Scripts\activate
python -m pip install -U pip
pip install -e ".[all]"
SCNet and Beat Transformer are research repositories rather than stable pip inference APIs. They are isolated/downloaded on demand. To prepare everything in advance:
stemlab bootstrap all
For only the Vamp analysis stack:
stemlab bootstrap vamp
bootstrap vamp downloads the pinned Sonic Annotator runtime and launches the
official Vamp Plugin Pack installer. Complete the installer once, then rerun the
command if needed to verify that the requested plugin outputs are visible.
CLI
Full requested analysis:
stemlab analyze master.wav --output ./analysis-master --profile full --device auto
Useful alternatives:
# Skip the 53-stem model for a materially lighter run
stemlab analyze master.wav -o ./analysis-master --profile practical
# Run only selected separators
stemlab analyze master.wav -o ./analysis-master \
--model bs_roformer_sw --model scnet_xl_ihf --model openunmix_umxhq
# Fail immediately rather than recording a backend failure and continuing
stemlab analyze master.wav -o ./analysis-master --strict
# Skip Vamp if the plugin pack is intentionally not installed
stemlab analyze master.wav -o ./analysis-master --no-vamp
stemlab models
stemlab doctor
By default model weights and external research code are cached outside the output folder; all generated analysis artifacts and datasets are written inside the output folder. The copied master is also placed in input/ so the Sonic Visualiser session is portable as one directory.
Output layout
analysis-master/
input/master.wav
stems/
bs_roformer_sw/*.wav
mvsep_mega53/*.wav
scnet_xl_ihf/*.wav
htdemucs_ft/*.wav
openunmix_umxhq/*.wav
spectrograms/
master.png
master.npz
<model>/<stem>.png
<model>/<stem>.npz
speech/spoken_word.png
speech/spoken_word.npz
speech/
spoken_word.wav
speech_regions.json
whisper.json
transcript.txt
transcript.srt
words.tsv
beats/
beatnet.json / beatnet.tsv
beat_this.json / beat_this.tsv
beat_transformer.json / beat_transformer.tsv
beat_transformer_activations.npz
vamp/
report.json
transforms/*.n3
raw/*.csv
data/*.json
data/*.npz
plots/*.png
deep/
sonic/
rhythm/
harmony/
structure/
lyrics/
semantic_text/
song_map/
summary.json
sonic_visualiser/
session.sv
session.xml
open_sonic_visualiser.bat
open_sonic_visualiser.sh
analysis.json
manifest.json
session.sv is genuine Sonic Visualiser bzip2-compressed session XML. It contains a master pane with beat/downbeat/Whisper time-instant layers and one synchronized waveform + Sonic Visualiser spectrogram pane for every separated stem. The uncompressed session.xml is retained for inspection/debugging. The Windows .bat looks on PATH and in the usual Program Files locations.
Web service
StemLab includes an upload/timeline web UI plus HTTP and Socket.IO APIs for content-addressed analysis jobs. See docs/web.md for launchers, endpoints, events and the Arcadians reference workflow.
Documentation
- DanceFlow workflow and DanceMoves relationship
- Web service
- Containers
- Publishing and releases
- Changelog
Python API
from pathlib import Path
from stemlab.models import FULL_PROFILE
from stemlab.pipeline import run_pipeline
from stemlab.types import PipelineConfig
result = run_pipeline(PipelineConfig(
input_wav=Path("master.wav"),
output_dir=Path("analysis-master"),
models=FULL_PROFILE,
device="auto",
))
External runtime/cache details
The BS-RoFormer adapter uses bs-roformer-infer, which manages its own checkpoint registry and SHA-256 verification. SCNet is pinned to the v1.0.15 SCNet XL IHF release asset URLs; StemLab records computed hashes after download. Beat Transformer is cloned from its original upstream and consumes the released fold checkpoints from that repository. Set STEMLAB_CACHE=/some/path to relocate StemLab's external cache.
The full run is intentionally expensive. Mega-53 is the dominant VRAM/storage pass and dozens of stems mean dozens of additional spectrogram files and Sonic Visualiser panes. Use --profile practical while iterating and --profile full for exhaustive analysis.
Releases
Version tags publish StemLab to GitHub Releases, PyPI (danceflow-stemlab),
GHCR and Docker Hub after validation. See
docs/publishing.md for the release contract and Trusted
Publishing setup.
Reproducibility and licensing
analysis.json records model/backend metadata and errors; manifest.json hashes every output artifact. Model checkpoints, research code and datasets retain their upstream terms. In particular, do not assume that an MIT-licensed inference wrapper automatically grants redistribution rights for every checkpoint it can download.
Release files for danceflow-stemlab 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| danceflow_stemlab-1.0.0.tar.gz | 863.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| danceflow_stemlab-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.7 MB
Release files / danceflow_stemlab-1.0.0.tar.gz
| Download URL | danceflow_stemlab-1.0.0.tar.gz |
|---|---|
| Size | 863.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1edfb7234d22ab46d3510204bdf21a5069e631fe02d71b4b0f844118e76efa9e
|
|
BLAKE2b-256 checksum How to use checksums |
ce50ff862af19e7e552acbc489ab2e52ae6f64357f583528200f94f501535257
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / danceflow_stemlab-1.0.0-py3-none-any.whl
| Download URL | danceflow_stemlab-1.0.0-py3-none-any.whl |
|---|---|
| Size | 869.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a872583b8270dae582925940e0f8acbc1b1ecb38da015ff75a2e67e2b63f913a
|
|
BLAKE2b-256 checksum How to use checksums |
ad7ab0a884d1dbb0d03b7e46f6e866ea6af575c240645ed914670364cf85de0d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log