Downloads · 30 days
2.7K
15% of all-time downloads
speechbrain/PIQ-ESC50
PIQ-ESC50 is a machine learning model from speechbrain. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for transformers. The card lists the license as apache-2.0.
<iframe src="https://ghbtns.com/github-btn.html?user=speechbrain&repo=speechbrain&type=star&count=true&size=large&v=2" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"</iframe <br/<br/
Downloads · 30 days
2.7K
15% of all-time downloads
All-time downloads
18.1K
Public
Repo size
58.2 MB
Likes
3
Public
Click a slice to open those files.
.ckpt58.2 MB · 98%
From the Hugging Face model README
This repository provides all the necessary tools to perform audio posthoc interpretations using the PIQ method on a conv-2d classifier, with the following performance on the ESC50 dataset:
| Release | Classification Accuracy Valid | Classification Accuracy Test |
|---|---|---|
| 15-07-23 | 80% | 75% |
Please, take a look at the reference paper for more info. You can find the training recipe in SpeechBrain here.
First of all, please install SpeechBrain with the following command:
pip install speechbrain
Please notice that we encourage you to read our tutorials and learn more about SpeechBrain.
from speechbrain.inference.interpretability import PIQAudioInterpreter
import torchaudio
model = PIQAudioInterpreter.from_hparams(source="speechbrain/PIQ-ESC50", savedir='pretrained_models/PIQ-ESC50')
x_int_sound_domain, text_lab, fs_model = model.interpret_file('speechbrain/PIQ-ESC50/mix.wav')
print('Classification is {}'.format(text_lab))
torchaudio.save("interpretation.wav", x_int_sound_domain.data.cpu(), fs_model)
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
@misc{speechbrain,
title={{SpeechBrain}: A General-Purpose Speech Toolkit},
author={Mirco Ravanelli and Titouan Parcollet and Peter Plantinga and Aku Rouhe and Samuele Cornell and Loren Lugosch and Cem Subakan and Nauman Dawalatabad and Abdelwahab Heba and Jianyuan Zhong and Ju-Chieh Chou and Sung-Lin Yeh and Szu-Wei Fu and Chien-Feng Liao and Elena Rastorgueva and François Grondin and William Aris and Hwidong Na and Yan Gao and Renato De Mori and Yoshua Bengio},
year={2021},
eprint={2106.04624},
archivePrefix={arXiv},
primaryClass={eess.AS},
note={arXiv:2106.04624}
}
If you use this model for your research, please use the following Bibtex to cite it:
@misc{paissan2023posthoc,
title={Posthoc Interpretation via Quantization},
author={Francesco Paissan and Cem Subakan and Mirco Ravanelli},
year={2023},
eprint={2303.12659},
archivePrefix={arXiv},
primaryClass={cs.AI}
}