Hacker News new | ask | show | jobs
by kif 1369 days ago
I got requirements installed, but then when running the Python example, I get:

RuntimeError: "slow_conv2d_cpu" not implemented for 'Half'

1 comments

Probably need to pass some kind of options when initializing. The command itself works fine, just shows a warning: warnings.warn("FP16 is not supported on CPU; using FP32 instead")
using this in the sample code worked for me:

>>> options = whisper.DecodingOptions(fp16=False)