Running from Jupyternote #286
-
I am trying to run your example in jupyternotebook. My first question is when I try to import the WhipserModel When I run this on a terminal this step is fine. Is there a way to solve this ? My second question is regarding the compute_type parameter. I get the same error for int8_float16. So how do you know which is proper parameter before you run into error? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I'm not familiar with Jupyter Notebook so I can't really help for the installation issue in this environment. Regarding the error with |
Beta Was this translation helpful? Give feedback.
I'm not familiar with Jupyter Notebook so I can't really help for the installation issue in this environment.
Regarding the error with
compute_type
, it means your GPU does not support float16 execution. You can either remove the argument entirely or set other compute types such ascompute_type="float32"
orcompute_type="int8"
.