gmmarc
Results
3
comments of
gmmarc
Thanks @ToLuSt ! Just in case somebody else using **npm** runs into this issue in the future, this didn't work for me: `npm install lunr-languages` This did work: `npm install...
For people facing this issue without GPU, here's how you can change it to CPU. In https://github.com/EtienneAb3d/WhisperHallu/blob/main/transcribeHallu.py#L110, set device to `cpu`: ```python model = whisper.load_model(modelSize,device=torch.device("cpu")) ``` Same thing in https://github.com/EtienneAb3d/WhisperHallu/blob/main/transcribeHallu.py#L265:...