Skip to main content

A unified interface to extract hidden representations from speech foundation models

Project description

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 🤗

Utterance-Level Features

Model Name Model Variant Layers Dimension Paper Source Model Hub
ecapa-tdnn base 0 192 arXiv GitHub 🤗
next-tdnn light 0 192 arXiv GitHub
base 0 192
base-v2 0 192
r-vector base 0 256 arXiv GitHub 🤗
x-vector base 0 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
soxr quick GitHub LGPL v2.1+
low
medium
high
very-high
torchaudio kaiser-fast GitHub 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

Project details


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.1.3.tar.gz (322.5 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.1.3-py3-none-any.whl (424.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for lfeats-0.1.3.tar.gz
Algorithm Hash digest
SHA256 05a6c8ab293f20c46f8998b7276cc0fa490848ca73102cc080479c9135fcd6e0
MD5 c8f7f1545aab0b9b00cd6f50e48c16f9
BLAKE2b-256 a89cda64e6fb4ed76e7370b4b20b282408ac14b4f898a9ef5bdcf10cb1177ad8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for lfeats-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7d2a39bfc3ba73149f79f36ede672e8f3d0932f6314f02e737581be7a1771cd3
MD5 29e63bdb4df68263f633d4f4f25c0ddb
BLAKE2b-256 9a2e6e2370eaf0cb0b45ec49f303d26ba5414ba24b43de25b159cd41b23bf679

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page