Closed i-bond closed 4 years ago
Hello! I'm facing an ImportError: cannot import name 'sampling_rate' when I tried to run the demo02_diarization.py file provided in the example: from resemblyzer import sampling_rate
ImportError: cannot import name 'sampling_rate'
from resemblyzer import sampling_rate
Could you help me to figure out how to fix this error?
Change from resemblyzer import sampling_rate To from resemblyzer.audio import sampling_rate
from resemblyzer.audio import sampling_rate
Hope this helps :D
Oh, it works! Thank you 😄
Hello! I'm facing an
ImportError: cannot import name 'sampling_rate'
when I tried to run the demo02_diarization.py file provided in the example:from resemblyzer import sampling_rate
Could you help me to figure out how to fix this error?