Skip to main content

AVES package for audio feature extraction

Project description

AVES: Animal Vocalization Encoder based on Self-Supervision

Update (2024-06-05): 🦜 We are excited to introduce our latest series of AVES models, called BirdAVES, specifically scaled and trained for bird sounds. Check out the details and pretrained models here.

Update (2024-07-05): See our note on batching in AVES models.

Update (2025-02-22): AVES release v0.1.2 as package.

What is AVES?

AVES (Animal Vocalization Encoder based on Self-Supervision) is a self-supervised, transformer-based audio representation model for encoding animal vocalizations ("BERT for animals"). It is based on HuBERT (Hsu et al., 2021), a powerful self-supervised model for human speech, but pretrained on large-scale unannotated audio datasets (FSD50K, AudioSet, and VGGSound) which include animal sounds.

Comprehensive experiments with a suite of classification and detection tasks (from the BEANS benchmark) have shown that AVES outperforms all the strong baselines and even the supervised "topline" models trained on annotated audio classification datasets.

See our paper for more details.

How to use AVES

Create a virtual environment with anaconda by running, for example:

conda create -n aves python=3.10
conda activate aves

Install from pip

pip install esp-aves

Install from source

Clone this repository:

git clone https://github.com/earthspecies/aves.git

cd into the repo root folder and install the package:

pip install -e .

Ported versions

The original model uses Fairseq models. We have ported the models to TorchAudio models and Onnx formats.

TorchAudio

Download both the parameters and the model config under TorchAudio version in the Pretrained-models section. You can also run this code in terminal:

wget https://storage.googleapis.com/esp-public-files/aves/aves-base-bio.pt

to download the aves-base-bio.pt model. Replace that name with the model you want to download.

Running the aves on your audio files

AVES encodings can be computed from this folder (project root) like so

aves -c /path/to/your/config.json -m /path/to/model.pt --path_to_audio_dir ./example_audios/ --output_dir /path/to/save/embeddings/

What you need to input are 4 things:

  1. The model config (see below, right click and "Save link as").
  2. The model file (see below, click to download the model corresponding to the config you saved).
  3. Path to a directory containing audio files (or individual paths --audio_file_paths parameter in aves/main.py)
  4. Path to save the embeddings for each file (--output_dir parameter)

Output embeddings can be saved as torch tensors (--save_as "pt") or numpy arrays (--save_as "npy")

Running tests

To run tests you must first:

  1. Download the models specified in tests.py to the ./aves module folder.
  2. Run tests from the root folder pytest tests/

AVES feature extraction examples

These examples are based on the torchaudio version of the model weights.

Loading the feature extractor is done simply with this helper function.

    from aves import load_feature_extractor

    # download the config and the torch model file
    # here, config is stored in config/ and the model was put in aves/
    model = load_feature_extractor(
        config_path="./config/default_cfg_aves-base-all.json",
        model_path="./aves/aves-base-all.torchaudio.pt",
        device="cpu",
        for_inference=True)  # for_inference sets model.eval()

Inference on audio files:

    # let's load the audio in the examples folder
    from aves.utils import parse_audio_file_paths, load_audio
    # get their paths
    audio_file_paths = parse_audio_file_paths("./example_audios/")
    print(audio_file_paths)
    # load and resample with torchaudio to 16 KHz
    # we will make a mono audio by keeping the first channel
    audios = [load_audio(f, mono=True, mono_avg=False) for f in audio_file_paths]
    # the audios are torch.Tensors, each one of shape (num samples, )
    print(audios[0].shape)

    # durations of loaded audio
    durations = [len(a) / 16000 for a in audios]
    print(durations)

    # get the last layer features
    # IMPORTANT: a batch dim is added per default in the extract_features method.
    features = [model.extract_features(audio, layers=-1) for audio in audios]
    print(features[0]) # (batch, seq len, embed dim)
    # torch.Size([1, 7244, 768]) 

    # The sequence dimension (2nd dim) is time. AVES compresses time, so 1 sec of 16 KHz
    # audio = 49 steps. You can check this:
    print(int(features[0][1] // durations[0]))
    # 49

    # get all layers
    features = [model.extract_features(audio, layers=None) for audio in audios]
    # outputs are lists of length 12 for each of the inputs because AVES-all has 12 layers
    assert(len(features[0]) == 12)
    print(features[0][0].shape)
    # torch.Size([1, 7244, 768])

    # get first and second-to-last layer
    features = [model.extract_features(audio, layers=[0, -2]) for audio in audios]
    # outputs are lists of length 12 for each of the inputs because AVES-all has 12 layers
    assert(len(features[0]) == 2)
    print(features[0][0].shape)
    # torch.Size([1, 7244, 768])

Using aves as a classifier

An example implementation for an AVES based classifier is provided in aves/aves.py AVESClassifier. This class's forward method returns a tuple of two items, the classification loss and the logits (unnormalized classifier outputs).

Example code for testing this is also provided in the same file.

Onnx

Download the parameters and the model config under Onnx version in Pretrained-models.

NOTE: We observed that the Onnx version of AVES-all and BirdAVES could have large relative differences compared to the original version when the output values are close to zero. The TorchAudio versions don't have this problem. When possible, use the TorchAudio version of the model.

An ONNX based feature extractor is provided in aves/aves_onnx.py AvesOnnxModel.

NOTE: Onnx models accept float32 numpy arrays as input and provide numpy arrays as outputs.

    from aves.aves_onnx import AVESOnnxModel

    # example with BirdAVES large
    model_path = "/path/to/birdaves-bioxn-large.onnx"
    model = AVESOnnxModel(model_path)

    # create random inputs for testing, 
    # e.g. a batch of 2 audio files sampled at 16 KHz duration of 1 sec
    inputs = np.random.randn(2, 16000).astype("float32")  # float64 doesn't work
    onnx_out = model(inputs)
    assert onnx_out.shape == (2, 49, 1024)  # embedding size is 1024 for birdaves large, dim 1 is time dimension

Embedding dimensions

Model Name Embedding dim
AVES-core 768
AVES-bio 768
AVES-nonbio 768
AVES-all 768
BirdAVES-biox-base 768
BirdAVES-biox-large 1024
BirdAVES-bion-large 1024

Pretrained models

Output Tensor shapes are the defined for the following input: Two 1 sec audio clips sampled at 16 KHz (the AVES preferred sampling rate). Each layer has the same shape.

Configuration Pretraining data Hours TorchAudio version Onnx version
AVES-core FSD50k + AS (core) 153 Download Config Download
AVES-bio core + AS/VS (animal) 360 Download Config Download
AVES-nonbio core + AS/VS (non-animal) 360 Download Config Download
AVES-all core + AS/VS (all) 5054 Download Config Download

Colab Notebooks

BirdAVES

🦜 BirdAVES is our latest series of AVES models, specifically scaled and trained for bird sounds.

  • Training Data: In addition to the core configuration used for AVES, we added a large amount of bird recordings from Xeno-canto and iNaturalist for self-supervised training of BirdAVES models.
  • Model Size: While the earlier AVES models were based on the HuBERT base configuration (~95M parameters), we have now successfully trained large models (~316M parameters) with significant performance improvements.
  • Compute: We significantly scaled up the training compute for BirdAVES models to achieve better performance.

See the table below for detailed information and pretrained models. BEANS avg. (all) is the average metrics measured across all datasets from the BEANS benchmark, while BEANS avg. (birds) is the average metrics from datasets (cbi, dcase, enabirds, and rfcx) that include bird sounds. For more details, refer to the BEANS paper.

Configuration Pretraining Data Hours BEANS avr. (all) BEANS avr. (birds) Models
AVES-bio (baseline) core + AS/VS (animal) 360 0.643 0.419 See above
BirdAVES-biox-base bio + xeno-canto 2570 0.678 0.476
TorchAudio (config)
ONNX
BirdAVES-biox-large bio + xeno-canto 2570 0.686 0.511 TorchAudio (config)
ONNX
BirdAVES-bioxn-large bio + xeno-canto + iNaturalist 3076 0.679 0.512
TorchAudio (config)
ONNX

Warning about batching in AVES models

Padding will affect the embeddings produced by AVES and BirdAVES models. That is, two sound signals $x$ and $x_z = \mathrm{concat}(x, \mathrm{zeros}(n))$ will give different embeddings for every frame. The lengths argument does not fix this issue.

This is a problem with the underlying HuBERT architecture, which could only be fixed in more recent architectures (see this issue and this pull request for more details).

This can cause confusion if you are using a model with batch size greater than 1, as the embeddings for a certain sound will depend on the batch. Therefore, we suggest pre-computing embeddings for the sounds in your dataset using batch_size=1. You can then pad these embeddings themselves, if using them in mini-batches for training a downstream network.

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

esp_aves-0.1.2.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

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

esp_aves-0.1.2-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file esp_aves-0.1.2.tar.gz.

File metadata

  • Download URL: esp_aves-0.1.2.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for esp_aves-0.1.2.tar.gz
Algorithm Hash digest
SHA256 4d59213f77825be6d0c25d833e35eedc3c7af41103b20e8708d3750feb6145b5
MD5 a53b0aae37bd6ed5aeef31a083a3d11f
BLAKE2b-256 4ddd07b2bc15b1f29a443e081f3347c88f93c6f10ac95c3999023130182d1006

See more details on using hashes here.

File details

Details for the file esp_aves-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: esp_aves-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for esp_aves-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2f5eb271291770d48e7cbc72d324a05b0b89e42a7fc0ba41bd9c8e8f36ca105c
MD5 86451852300960026517eeff218536ec
BLAKE2b-256 068eaac9d9f1eda1a07023b8aec5415c1a3179c136aec83da99f2f7a25445cf6

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