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
idk what im doing wrong but it doesnt work after installing the model it says this
full error: Error: D:\a_work\1\s\onnxruntime\core\providers\dml\dml_provider_factory.cc(495)\onnxruntime.dll!00007FF824670958: (caller: 00007FF824670CAA) Exception(1) tid(3204) 887A0004 The specified device interface or feature level is not supported on this system. how to reproduce:
go in the command line and run echogarden transcribe file.mp3 then wait itll break
The text was updated successfully, but these errors were encountered:
The error shows there is an issue with DirectML (Windows native API for GPU acceleration on introduced on Windows 10 v1903) when running speech language detection to detect the language of the audio passed (detection will run if a language is not specified). It looks like you're on Windows.
On Windows it passes ['dml', 'cpu'] providers to the ONNX runtime by default, for the recognition and speech language detection methods (both based on Whisper).
This means it will use DirectML if available and fall back to CPU if not. I can't control how this detection is done internally in the ONNX runtime.
It seems that on your hardware the ONNX runtime is having issues with using DirectML, but is not correctly falling back to CPU.
You can force it to use CPU for language detection with the option:
--languageDetection.whisper.encoderProvider=cpu
and for Whisper speech recognition with the option:
--whisper.encoderProvider=cpu
I allowed it to try DirectML on Windows because otherwise most users wouldn't even know what DirectML is, that they can enable it, and how. I was hoping that the ONNX runtime would be able to correctly fall back when DirectML fails. It seems in this particular case it's not doing it correctly.
It would be useful to know what hardware is it running on, especially whether if it has a GPU and which kind.
idk what im doing wrong but it doesnt work after installing the model it says this
full error: Error: D:\a_work\1\s\onnxruntime\core\providers\dml\dml_provider_factory.cc(495)\onnxruntime.dll!00007FF824670958: (caller: 00007FF824670CAA) Exception(1) tid(3204) 887A0004 The specified device interface or feature level is not supported on this system.
how to reproduce:
go in the command line and run
echogarden transcribe file.mp3
then wait itll breakThe text was updated successfully, but these errors were encountered: