Skip to content

Commit

Permalink
Demo 2 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinJ committed Sep 24, 2020
1 parent cf57923 commit 7d2f684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo02_diarization.py
Expand Up @@ -16,7 +16,7 @@
# Cut some segments from single speakers as reference audio
segments = [[0, 5.5], [6.5, 12], [17, 25]]
speaker_names = ["Kyle Gass", "Sean Evans", "Jack Black"]
speaker_wavs = [wav[int(s[0] * sampling_rate):int(s[1]) * sampling_rate] for s in segments]
speaker_wavs = [wav[int(s[0] * sampling_rate):int(s[1] * sampling_rate)] for s in segments]


## Compare speaker embeds to the continuous embedding of the interview
Expand Down

0 comments on commit 7d2f684

Please sign in to comment.