Where are the individual parameters of different models stored? #244
-
I am looking for the hyperparameter values of pyannote/segmentation model (onset, offset, min_duration_on, min_duration_off,etc) but not able to find them. How are they related to diart parameters tau, rho, and delta? I am getting different timestamp values for the same audio by using pyannote/segmentation as vad in isolation and using diart. I want both to have same timestamp values. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @krane5555, diart uses pyannote.audio models for streaming, where as their pipelines are for offline pre-recorded audio. Even though the models might be the same, the algorithms putting everything together are very different, so the results will most certainly not be the same. Streaming performance may approach offline performance as the latency is increased though. For an explanation of hyper-parameters, see #133 |
Beta Was this translation helpful? Give feedback.
Hi @krane5555, diart uses pyannote.audio models for streaming, where as their pipelines are for offline pre-recorded audio. Even though the models might be the same, the algorithms putting everything together are very different, so the results will most certainly not be the same. Streaming performance may approach offline performance as the latency is increased though.
For an explanation of hyper-parameters, see #133