Edit model card


PIQ Posthoc Interpreter trained on ESC50

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.

Install SpeechBrain

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.

Perform Interpretable Classification on your own file

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)

Limitations

The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.

Referencing SpeechBrain

@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}
}

Referencing PIQ

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}
}

About SpeechBrain

Downloads last month
477
Unable to determine this model’s pipeline type. Check the docs .