Closed stonelazy closed 1 year ago
The code is already here: https://github.com/Audio-AGI/AudioSep/blob/main/utils.py
I'll release the evaluation benchmark soon!
Thanks for the revert. Am sorry, but i couldn't see evaluation code for the these metrics specifically CSIG,CBAK,COVL,SSNR.
Thanks for the reminder, Will update it ASAP.
For speech enhancement metrics, I use pesq and pysepm packages. For example:
pesq import pesq import pysepm
pesq_ = pesq(sampling_rate, clean_wav, separated_wav, 'wb') (csig, cbak, covl) = pysepm.composite(clean_wav, separated_wav, sampling_rate) ssnr = pysepm.SNRseg(clean_wav, separated_wav, sampling_rate)
Team, I was wondering if you haven't included code reference for evaluation metrics such as CSIG,CBAK, COVL, SSNR etc.. ? Do you have any plans for this please ?