If your ML background is in computer vision, NLP, or tabular data, the audio world comes with its own vocabulary and a few genuinely confusing distinctions. Most of the terms are borrowed from music production, where they have been stable for decades. A few of them have been reused by the ML community in ways that do not perfectly match the original meaning. This post is a short glossary to help you navigate.
The glossary is organized roughly by topic: sources and types, processing states, container formats, and audio signal properties. For each term we give the definition, how ML engineers typically use it, and common sources of confusion.
Sources and types
A cappella
A vocal performance or recording without instrumental accompaniment. The Italian phrase literally means "in the chapel style," referring to unaccompanied choral music. In music production the term is used more loosely: any vocal recording without instruments is "a cappella," whether solo or multi-part, whether recorded dry or processed.
In the ML context, "a cappella" usually means "vocal-only audio," which makes it useful training data for singing voice synthesis, voice cloning, and vocal analysis tasks. Confusion arises because a cappella tracks released commercially are usually wet (processed), whereas the cleanest training material is dry (unprocessed). See the entries for "dry" and "wet" below.
Stem
In music production, a stem is a track or group of tracks that forms a specific component of a mix. A song might have a vocal stem, a drum stem, a bass stem, and a keys stem. Each stem is the audio for that component, isolated from the others.
The word is used inconsistently. Sometimes "stem" means an individual track (just the lead vocal). Sometimes it means a submix (all vocals together: lead, harmonies, adlibs). For ML training purposes, you almost always want individual tracks, not submixes. If a vendor says "vocal stems," ask whether that means individual vocal tracks or a submix of all vocal-related tracks bundled together.
Isolated vocals
A vocal recording with no other instruments present. The term is functionally the same as "a cappella" but with stronger connotations of being a production-ready standalone recording.
Critical distinction: "isolated vocals" can mean either (a) a vocal that was recorded alone in the studio (genuinely isolated) or (b) a vocal that was extracted from a full mix using source separation software (reconstructed isolation). The two are not equivalent. Genuinely isolated recordings have no bleed, no artifacts, no phase issues. Separated recordings have all of those, just at varying levels of severity.
Lead vocal
The primary vocal line in a song. Usually the one carrying the melody and lyrics. In a multi-layered vocal arrangement, the lead is distinguished from harmonies, backing vocals, and adlibs.
Harmony
Additional vocal lines that sing different notes simultaneously with the lead, creating harmonic intervals (thirds, fifths, octaves). In a recorded context, harmonies are usually separate tracks from the lead vocal.
Adlib
Improvised or semi-improvised vocal additions on top of the lead. Common in R&B, hip-hop, and pop. Usually short phrases, runs, or exclamations that add texture but do not carry the main melody.
Background vocal (BG vocal, bg, bgv)
A general term for any non-lead vocal. Includes harmonies, choir sections, and atmospheric vocal textures. Often bundled into a single "BG" stem in professional productions.
Processing states
Dry
Audio with no processing applied. For a vocal, "dry" means the raw microphone signal with no reverb, compression, EQ, or effects. Dry vocals sound close and unprocessed, often uncomfortably so because listeners are used to hearing vocals with some amount of production.
Dry is the cleanest training material for most ML use cases because the model learns only the voice, not the voice plus effects.
Wet
Audio with processing applied. For a vocal, "wet" means the signal has been through some combination of reverb, delay, compression, EQ, de-essing, and other effects. Wet vocals sound like what you hear in a finished song: polished, sitting in a space, shaped to fit a mix.
Wet is useful for training when you want the model to produce production-ready outputs without post-processing. It is limiting when you want flexibility, because the effects are baked into the training signal.
Raw
Sometimes used interchangeably with "dry," but can also mean "unedited" — the original recording with no cuts, comping, or cleanup applied. A raw vocal includes all the breaths, retakes, and mistakes. A dry vocal includes just the final take but without processing.
Mixed / mixdown
The final combination of all tracks in a song into a single stereo (or surround) audio file. A mixdown is the output of the mixing process and contains everything: vocals, instruments, effects, panning, levels. For ML training, mixdowns are the least useful format because there is no way to isolate components without source separation.
Master / mastered
A mixdown that has been through a final polishing stage called mastering. Mastering applies broad EQ, compression, loudness normalization, and format adjustments to prepare the mix for distribution. Mastered audio is even further from raw training material than a mixdown because it has had additional global processing applied.
Container formats
WAV
Uncompressed audio container format. The standard for studio recording and ML training because it preserves the full audio signal without any compression artifacts. WAV files are large (roughly 10 MB per minute at 44.1 kHz / 16-bit, 15 MB per minute at 44.1 kHz / 24-bit) but lossless.
FLAC
Lossless compressed audio format. Retains the full audio signal but uses compression to reduce file size by roughly half compared to WAV. FLAC is effectively equivalent to WAV for training purposes — no information is lost in the compression.
MP3, AAC, OGG, OPUS
Lossy compressed audio formats. Discard some audio information to achieve smaller file sizes. For training a model that will produce high-quality output, lossy-compressed source audio is a problem because the compression artifacts get learned as part of the signal. If a dataset is delivered in MP3 format, that is typically a sign that the original source was also lossy (consumer material, streaming rips, etc.) rather than studio masters.
AIFF
Another uncompressed format, historically associated with Apple systems. Equivalent to WAV for practical purposes.
Audio signal properties
Sample rate (Hz, kHz)
The number of audio samples per second. 44,100 Hz (44.1 kHz) is the CD and consumer music standard. 48,000 Hz is the broadcast and film standard. 96 kHz and 192 kHz are used in some high-end production contexts. For most ML training on music and voice, 44.1 or 48 kHz is sufficient.
Bit depth
The number of bits used to represent each audio sample. 16-bit is the CD standard and captures roughly 96 dB of dynamic range. 24-bit is the studio standard and captures roughly 144 dB of dynamic range, giving more headroom for quiet passages and preventing quantization noise. For training, 24-bit is preferred when available.



