Hi, I am working on speaker diarization, I have done till clustering step, the rttm file is successfully created. AFter that when i try to cluster the plda scores using the code:
if [ $stage -le 10 ]; then
mkdir -p $nnet_dir/results
cat $nnet_dir/xvectors_train/plda_scores_num_speakers/rttm
|
md-eval.pl -1 -c 0.25 -r $nnet_dir/xvectors_train/plda_scores_num_speakers/rttm -s - 2> $nnet_dir/results/num_spk.log
> $nnet_dir/results/DER_num_spk.txt
der=$(grep -oP 'DIARIZATION\ ERROR\ =\ \K[0-9]+([.][0-9]+)?'
$nnet_dir/results/DER_num_spk.txt)
echo "Using the oracle number of speakers, DER: $der%"
fi
it is giving me the output as:
Using the oracle number of speakers, DER: 0.00%
what is the reason of this zero. or it is fine?