Hervé BREDIN
Hervé BREDIN
I checked: using `DataLoader` like I described above, or using `pescador.maps.buffer_stream` is more or less equivalent in terms of performance. For some reason, I thought `DataLoader` would be smarter than...
cc @wq2012 -- I plan to bring back spectral clustering (with a limited set of hyper-parameters) in version 2.1
It does run on GPU by default when GPUs are available.
I would like to know that too! What did you try?
To check if inference is supported, you could start simple and run something like this and see if it complains about TPUs. ```python from pyannote.audio import Inference inference_on_gpu = Inference("pyannote/segmentation",...
Without an actual access to TPUs, I am afraid I won't be able to help you here....
Sure! The last time I tried getting access to a TPU on Colab, it told me none were available so I thought one has to pay for it...
cc @YannisTevissen ;-)
Most likely an off-by-one rounding error due to https://github.com/asteroid-team/torch-audiomentations/blob/1590056ba3bbb06a75e24fb4bcec0fd10569a083/torch_audiomentations/utils/io.py#L232 and https://github.com/asteroid-team/torch-audiomentations/blob/1590056ba3bbb06a75e24fb4bcec0fd10569a083/torch_audiomentations/utils/io.py#L238 I believe using `math.floor` instead of `round` should fix the issue and we could safely remove the check that...