BingYang-20 / SRP-DNN

A python implementation of “SRP-DNN: Learning Direct-Path Phase Difference for Multiple Moving Sound Source Localization” [ICASSP 2022]
MIT License
39 stars 14 forks source link

VAD #1

Open JP199978 opened 4 weeks ago

JP199978 commented 4 weeks ago

Dear author, thanks for your sharing of code and the state-of-the-art performance of multiple moving sound source localization. There is an issue in the Dataset.py folder: Unresolved reference 'VAD:1118'. Did I miss something? How should I fix this issue? I look forward to your response.

BingYang-20 commented 1 week ago

Thank you for bringing this to our attention. We have corrected line 1118 from VAD[cnt: ] = sensor_vad_ori[-1] to sensor_vad[cnt: ] = sensor_vad_ori[-1]. You can try again.