You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING(pipeline): remove segmentation_duration parameter from SpeakerDiarization pipeline (defaults to duration of segmentation model)
BREAKING(task): remove support for variable chunk duration for segmentation tasks
BREAKING(pipeline): remove support for FINCHClustering and HiddenMarkovModelClustering
BREAKING(setup): drop support for Python 3.7
BREAKING(io): channels are now 0-indexed (used to be 1-indexed)
BREAKING(io): multi-channel audio is no longer downmixed to mono by default.
You should update how pyannote.audio.core.io.Audio is instantiated:
replace Audio() by Audio(mono="downmix");
replace Audio(mono=True) by Audio(mono="downmix");
replace Audio(mono=False) by Audio().
BREAKING(model): get rid of (flaky) Model.introspection
If, for some weird reason, you wrote some custom code based on that,
you should instead rely on Model.example_output.
BREAKING(interactive): remove support for Prodigy recipes
Fixes and improvements
fix(pipeline): fix reproducibility issue with Ampere CUDA devices
fix(pipeline): fix support for IOBase audio
fix(pipeline): fix corner case with no speaker
fix(train): prevent metadata preparation to happen twice
fix(task): fix support for "balance" option
improve(task): shorten and improve structure of Tensorboard tags