Closed SamChen closed 4 years ago
Hi, were you able to address the issue?
@marlon-br I cannot solve this. I have switched to use Kaldi instead.
Somehow I missed this issue...
Pipelines have internal hyper-parameters (such as detection or clustering thresholds) that needs to be tuned and instantiated before they can be used.
See this tutorial explaining how to tune and apply the diarization pipeline.
If you want to do it through the API, I recommend using the load_params
method
pipeline = SpeakerDiarization(...)
pipeline.load_params('/path/to/params.yml')
diarization = pipeline(test_file)
Closing this issue. Please re-open if needed.
I am working on load a tuned pipeline, which I following the offered tutorial, through following code:
I already fine tuned sad, scd and emb through following the fine-tuning tutorial.
However, when I run it on a test audio, I get following error message:
The code than I ran is:
Can someone help me solve the problem?