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
The app defaults to an unsupported compute_type (float16) when running on a CPU-only system. To fix that, the user has to explicitly append --compute_type int8 to the call command each time the application runs. This feature provides a fix including the automatic assignment of the compatible compute type (int8) on a CPU-only system.
Description
The app defaults to an unsupported
compute_type
(float16
) when running on a CPU-only system. To fix that, the user has to explicitly append--compute_type int8
to the call command each time the application runs. This feature provides a fix including the automatic assignment of the compatible compute type (int8
) on a CPU-only system.Reproduce
Call
python3 main.py
on CPU-only system:The error was expected to occur since according to whisperX documentation,
whisperX
expects compute type to beint8
.Implementation can be found in pull request #383 .
The text was updated successfully, but these errors were encountered: