@kadirnar
I have received the following error when running the diarization pipeline:
ValueError: attempt to get argmin of an empty sequence
I ran the diarization example exactly. The error seems related to the code below in the diarization pipeline.
# align the diarizer timestamps and the ASR timestamps
for segment in new_segments:
# get the diarizer end timestamp
end_time = segment["segment"]["end"]
# find the ASR end timestamp that is closest to the diarizer's end timestamp and cut the transcript to here
upto_idx = np.argmin(np.abs(end_timestamps - end_time))
The pipeline is also too slow, taking 10 minutes for a 5-minute audio file. Can you provide a detailed example of setting hqq for diarization?
@kadirnar
I have received the following error when running the diarization pipeline:
I ran the diarization example exactly. The error seems related to the code below in the diarization pipeline.
The pipeline is also too slow, taking 10 minutes for a 5-minute audio file. Can you provide a detailed example of setting hqq for diarization?