Skip to content

Inference codebase for "Cacophony: An Improved Contrastive Audio-Text Model". Preprint: https://arxiv.org/abs/2402.06986

License

Notifications You must be signed in to change notification settings

gzhu06/Cacophony

Repository files navigation

Cacophony

Inference codebase for "Cacophony: An Improved Contrastive Audio-Text Model"

Abstract

Despite recent advancements in audio-text modeling, audio-text contrastive models still lag behind their image-text counterparts in scale and performance. We propose a method to improve both the scale and the training of audio-text contrastive models. Specifically, we craft a large-scale audio-text dataset containing 13,000 hours of text-labeled audio, using pretrained language models to process noisy text descriptions and automatic captioning to obtain text descriptions for unlabeled audio samples. We first train on audio-only data with a masked autoencoder (MAE) objective, which allows us to benefit from the scalability of unlabeled audio datasets. We then, initializing our audio encoder from the MAE model, train a contrastive model with an auxiliary captioning objective. Our final model, which we name Cacophony, achieves state-of-the-art performance on audio-text retrieval tasks, and exhibits competitive results on the HEAR benchmark and other downstream tasks such as zero-shot classification.



Requirements

Jax and Flax are used for the model implementation. Tested on RTX 2080Ti, CUDA version 11.5, cuDNN version 8.2.1, cudatoolkit 11.3.1, and Python 3.8.17.

pip install requirements.txt

Pretrained Models

We provide the following pretrained models on both stages of the Cacophony model, folder here.

Stage 1: AudioMAE

Model detail:

  • Filename: AudioMAE.ckpt
  • Audio sampling rate: 16000
  • Audio Encoder: 85.26M
  • Audio Decoder: 85.85M
  • File MD5: 3a8a7778a5e2013ceb4a418e1504d3d8

Stage 2: Cacophony

Model detail:

  • Filename: Cacophony.ckpt
  • Audio sampling rate: 16000
  • Audio Encoder size: 85.26M
  • Text Encoder size: 125.23M
  • Text Decoder size: 76.46M
  • File MD5: bb6aa4b4e8e90ea3595021bf8233add0

Evaluation Results

The evaluation datasets involves HEAR benchmark AudioCaps, Clotho, UrbanSound8K, ESC-50, TUT Acoustic Scene 2017 and VGGSound-test datasets. Since our model is trained on audio sampled at 16kHz, we first downsample all of the audio from the above datasets to match with the training stage.

1. Audio-Text Retrieval

We evaluate the model performance Audio-Text retrieval task using the AudioCaps dataset and Clotho dataset.

python eval_caco.py --task ar --model_path <path_to_model>

Reproducible results for the Audio-Text retrieval task are as follows:

Text-to-Audio Audio-to-Text
R@1 R@5 R@10 R@1 R@5 R@10
AudioCaps 0.410 0.753 0.864 0.553 0.836 0.924
Clotho 0.202 0.459 0.588 0.265 0.541 0.762

2. Zero-Shot Classification

We evaluate the model performance on the zero-shot classification task using the UrbanSound8K, ESC-50,TUT Acoustic Scene 2017 and VGGSound-test datasets. Note that, upon our evaluation, we found that some of the audio from the VGGSound-test dataset is not publicly available anymore, and we were unable to evaluate our model on the full dataset. Instead we evaluate on 12,722 samples.

python eval_caco.py --task zs --model_path <path_to_model>
ESC-50 UrbanSound8K TUTAS2017 VGGSound-test
0.934 0.771 0.486 0.271

3. Audio Captioning

python eval_caco.py --task caption --model_path <path_to_model>

4. HEAR Benchmark

Our environment does not support the HEAR benchmark, but we provide the code to run the benchmark in the hear directory. To successfully run the benchmark, follow the instructions in the hear directory.

Please check the run_hear_eval.sh for details, example cmd:

bash run_hear_eval.sh /path/to/AudioMAE.ckpt /path/to/embedding /path/to/hear ./tasklist/hear_all_tasks.txt 0 16000

*HEAR Benchmark Results

To complement the radar chart in the paper, we present the accuracy numbers for the HEAR benchmark alongside those of other baseline models including LAION-CLAP, MS-CLAP, WavCaps-CNN14, and WavCaps-HTSAT.

Model ESC50 Libri
Count
CREMAD Gunshot SC 5hr SC Full Vox
Lingua
Vocal
Imitation
NSynth
Pitch
5hr
NSynth
Pitch
50hr
GTZAN
Genre
GTZAN
Music
Speech
Beijing
Opera
Percussion
LAION-CLAP-fusion 0.964 0.625 0.566 0.914 0.693 0.758 0.264 0.155 0172 0.376 0.842 0.962 0.962
LAION-CLAP 0.971 0.659 0.557 0.845 0.693 0.774 0.189 0.151 0.180 0.423 0.838 0.969 0.953
MS-CLAP 0.930 0.649 0.547 0.798 0.511 0.626 0.236 0.106 0.112 0.274 0.818 0.992 0.932
WavCaps-CNN14 0.962 0.646 0.556 0.789 0.583 0.640 0.270 0.158 0.140 0.324 0.861 0.992 0.957
WavCaps-HTSAT 0.961 0.690 0.595 0.929 0.752 0.806 0.234 0.168 0.256 0.548 0.847 0.962 0.958
Stage1: AudioMAE (Ours) 0.870 0.778 0.697 0.940 0.886 0.922 0.488 0.179 0.720 0.842 0.838 0.969 0.953
Stage2: Cacophony (Ours) 0.970 0.660 0.593 0.833 0.680 0.762 0.262 0.191 0.420 0.726 0.850 0.985 0.970

Acknowledgements

We are immensely grateful to the Google TPU Research Cloud (TRC) for generously providing the computational resources vital to our project. Their support has been invaluable.

We thank the FreeSound team from Pompeu Fabra University for providing us with the scraping API. We thank the University of Rochester Goergen Institute for Data Science (GIDS) seed funding program. We thank LAION CLAP team for collecting open source datesets and generously sharing them with the research community.

References

About

Inference codebase for "Cacophony: An Improved Contrastive Audio-Text Model". Preprint: https://arxiv.org/abs/2402.06986

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published