How to infer diarization pipeline with multi-gpus or cpus for faster processing? #1970
Replies: 1 comment
|
A single file can't be spread across multiple GPUs — pyannote runs one file on one device. The low VRAM use (2-3 GB out of 80) is the real clue: you're not compute-bound, you're running the internal sliding windows at a small batch size, so the GPU sits mostly idle. Two concrete speedups:
If throughput still matters after that, the newer community pipeline is faster than the older 3.1, and make sure you're passing an in-memory waveform ( |
Uh oh!
There was an error while loading. Please reload this page.
Hi there,
Currently I'm using
pyannote/speaker-diarization-community-1locally for diarization. I'm curious to know how to infer the process faster? On GPU side, it only covers 2/3 GB of space among 80GB VRAM size and the process is tooo slow. Processes only 2 audios/sec.How to make the process faster?
All reactions