Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion egs/callhome_diarization/v1/diarization/make_rttm.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def main():

# Cut up overlapping segments so they are contiguous
contiguous_segs = []
for reco in reco2segs:
for reco in sorted(reco2segs):
segs = reco2segs[reco].strip().split()
new_segs = ""
for i in range(1, len(segs)-1):
Expand Down