Skip to main content

lfeats

lfeats provides a unified interface to extract hidden representations from various speech foundation models such as HuBERT and Whisper. While these extracted features are task-independent, the package is primarily designed for speech generation tasks including text-to-speech and voice conversion.

Manual Downloads ClickPy Python Version PyPI Version PyTorch Version License GitHub Actions Ruff

Requirements

  • Python 3.10+
  • PyTorch 2.6.0+

Documentation

Installation

The latest stable release can be installed via PyPI:

pip install lfeats

Alternatively, the development version can be installed directly from the GitHub repository:

pip install git+https://github.com/takenori-y/lfeats.git@master

Supported Models

Frame-Level Features

Model Name Model Variant Layers Dimension Paper Source Model Hub
contentvec hubert-100 12 768 arXiv GitHub
hubert-500 12 768
data2vec base 12 768 arXiv GitHub
large 24 1024
data2vec2 base 8 768 arXiv GitHub
large 16 1024
emotion2vec base 8 768 arXiv GitHub 🤗
emotion2vec+ seed 8 768 🤗
base 8 768 🤗
large 8 1024 🤗
hubert base 12 768 arXiv GitHub 🤗
large 24 1024 🤗
xlarge 48 1280 🤗
r-spin wavlm-32 12 768 arXiv GitHub
wavlm-64 12 768
wavlm-128 12 768
wavlm-256 12 768
wavlm-512 12 768
wavlm-1024 12 768
wavlm-2048 12 768
spidr base 12 768 arXiv GitHub
spin hubert-128 12 768 arXiv GitHub
hubert-256 12 768
hubert-512 12 768
hubert-1024 12 768
hubert-2048 12 768
wavlm-128 12 768
wavlm-256 12 768
wavlm-512 12 768
wavlm-1024 12 768
wavlm-2048 12 768
sslzip tiny 0 16 ISCA GitHub 🤗
base 0 256 🤗
unispeech-sat base 12 768 arXiv GitHub 🤗
base+ 12 768 🤗
large 24 1024 🤗
wav2vec2 base 12 768 arXiv GitHub
large 24 1024
xlsr 24 1024 arXiv
xlsr-v2 24 1024 arXiv GitHub
wavlm base 12 768 arXiv GitHub 🤗
base+ 12 768 🤗
large 24 1024 🤗
whisper tiny 4 384 arXiv GitHub 🤗
base 6 512 🤗
small 12 768 🤗
medium 24 1024 🤗
large 32 1280 🤗
large-v2 32 1280 🤗
large-v3 32 1280 🤗

Token-Level Features

Model Name Model Variant Hop Size [ms] Dimension Paper Source Model Hub
higgs-audio v2 40 1024 Blog GitHub 🤗
x-codec hubert 20 1024 arXiv GitHub 🤗
wavlm 20 1024 🤗

Utterance-Level Features

Model Name Model Variant Dimension Paper Source Model Hub
ecapa-tdnn base 192 arXiv GitHub 🤗
next-tdnn light 192 arXiv GitHub
base 192
base-v2 192
r-vector base 256 arXiv GitHub 🤗
redimnet b0 192 arXiv GitHub
b1 192
b2 192
b3 192
b4 192
b5 192
b6 192
wavlm-sv base 512 arXiv GitHub 🤗
base+ 512 🤗
x-vector base 512 IEEE GitHub 🤗

[!IMPORTANT] Users must comply with the respective licenses of the models. Please refer to the original repositories for detailed licensing information.

Supported Resamplers

Resampler Type Quality Preset Source License
lilfilter base GitHub MIT
scipy fft Document BSD 3-Clause
poly Document
soxr quick GitHub LGPL v2.1+
low
medium
high
very-high
torchaudio kaiser-fast Document BSD 2-Clause
kaiser-best

Examples

Simple Usage

lfeats simplifies the process of extracting hidden states from various speech foundation models. You don't need to worry about differences between model types or input/output data types.

import lfeats
import numpy as np

# Prepare an audio waveform without zero-mean and unit-variance normalization.
# Either a NumPy array or a Torch tensor are accepted as the input of the extractor.
sample_rate = 16000
waveform = np.random.uniform(-1, 1, sample_rate)

# Initialize the extractor.
extractor = lfeats.Extractor(
    model_name="hubert",
    model_variant="base",
    resampler_type="torchaudio",
    resampler_preset="kaiser-best",
    device="cpu",
)

# Note: The model weights are automatically loaded during the first call to extractor(),
# so calling extractor.load() explicitly is optional.
extractor.load()

# Extract features.
features = extractor(waveform, sample_rate)
print(f"Shape: {features.shape}")  # (1, 50, 768)

# You can access the features as a Numpy array.
print(type(features.array))  # <class 'numpy.ndarray'>

# You can also access the features as a Torch tensor.
print(type(features.tensor))  # <class 'torch.Tensor'>

Layer Selection

lfeats allows you to extract features from specific layer(s). By default, the last layer is used.

import lfeats
import numpy as np

sample_rate = 16000
waveform = np.random.uniform(-1, 1, sample_rate)

extractor = lfeats.Extractor(model_name="hubert")

# Get the second-to-last layer output.
features = extractor(waveform, sample_rate, layers=-2)
print(f"Shape: {features.shape}")  # (1, 50, 768)

# Get the multiple layer outputs.
features = extractor(waveform, sample_rate, layers=(11, 12))
print(f"Shape: {features.shape}")  # (1, 50, 1536)

# Get all layer outputs as a concatenated vector.
features = extractor(waveform, sample_rate, layers="all")
print(f"Shape: {features.shape}")  # (1, 50, 9984)

Audio Chuking

To be computationally efficient and prevent mismatches between training and inference, long audio files can be processed by splitting them into chunks.

import lfeats
import numpy as np

sample_rate = 16000
waveform = np.random.uniform(-1, 1, 10 * sample_rate)

extractor = lfeats.Extractor(model_name="hubert")

# Processing a 10-second waveform with a 5-second chunk and 1-second overlap.
features = extractor(waveform, sample_rate, chunk_length_sec=5, overlap_length_sec=1)
print(f"Shape: {features.shape}")  # (1, 500, 768)

Sliding-Window Upsampling

Since the frame rate of speech foundation models is typically 20ms, it often doesn't match the 5ms requirement of speech generation tasks. lfeats bridges this gap by sliding the input waveform and interleaving the resulting features, providing a high-resolution output.

import lfeats
import numpy as np

sample_rate = 16000
waveform = np.random.uniform(-1, 1, sample_rate)

extractor = lfeats.Extractor(model_name="hubert")

# Extract features at a 5ms frame rate.
features = extractor(waveform, sample_rate, upsample_factor=4)
print(f"Shape: {features.shape}")  # (1, 200, 768)

Utterance-Level Feature Extraction

lfeats can extract utterance-level features, e.g., speaker embeddings, as well as frame-level features.

import lfeats
import numpy as np

sample_rate = 16000
waveform = np.random.uniform(-1, 1, sample_rate)

extractor = lfeats.Extractor(model_name="ecapa-tdnn")

# The default aggregation method for utterance-level features is averaging.
features = extractor(waveform, sample_rate, overlap_length_sec=0, reduction="mean")
print(f"Shape: {features.shape}")  # (1, 1, 192)

Command-line Interface

Once installed via pip, you can use the lfeats command directly from your terminal.

# Basic usage: extract features from a wav file
$ lfeats input.wav --output_format npz

# Process all audio files in a directory
$ lfeats input/dir --output_dir feats

# Process files listed in a file
$ lfeats input.scp --output_dir feats

# Specify model and layer
$ lfeats input.wav --model_name hubert --model_variant base --layer 12

[!TIP] For more details on all available flags and default values, simply run:

$ lfeats --help

License

This project is released under the MIT License.

Third-Party Licenses

lfeats partially incorporates the following repositories:

Repository License
fairseq MIT
NeXt_TDNN_ASV Apache-2.0
R-Spin MIT
S3PRL Apache-2.0
SpeechBrain Apache-2.0
Spin MIT
timm Apache-2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lfeats-0.2.2.tar.gz (327.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lfeats-0.2.2-py3-none-any.whl (434.5 kB view details)

Uploaded Python 3

File details

Details for the file lfeats-0.2.2.tar.gz.

File metadata

  • Download URL: lfeats-0.2.2.tar.gz
  • Upload date:
  • Size: 327.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.12

File hashes

Hashes for lfeats-0.2.2.tar.gz
Algorithm Hash digest
SHA256 eb554079272df6ec7f3b0be95147eff1e2e29ab177fc988ef3009d0909829545
MD5 447b0cc171c0eb7f3575be78245e904c
BLAKE2b-256 129dd9148c182b4d35c62b2b918aadcd5ab32751d615e62d5cbf2ff6ec112571

See more details on using hashes here.

File details

Details for the file lfeats-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: lfeats-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 434.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.12

File hashes

Hashes for lfeats-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3de381b1719b922ca74c1484f82c5a782ba1763ddfea9a4e7580fc840f37dc44
MD5 83a0e9ef0ffbd0b3269d587b9162230d
BLAKE2b-256 c0255b096792fe62d6512fbfcb760267b85ddd497954293b66448f48e28155bc

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.2 This release

2 files

0.2.1

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page