Update whispercpp.pyx
This commit is contained in:
parent
4f1f2d1c0a
commit
c5f51d5b55
|
@ -91,7 +91,7 @@ cdef class Whisper:
|
|||
def __init__(self, model=DEFAULT_MODEL, pb=None):
|
||||
model_fullname = f'model_ggml_{model}.bin'.encode('utf8')
|
||||
download_model(model_fullname)
|
||||
cdef bytes model_b = MODELS_DIR / model_fullname
|
||||
cdef bytes model_b = MODELS_DIR.encode('utf8') + b'/' + model_fullname
|
||||
self.ctx = whisper_init(model_b)
|
||||
self.params = default_params()
|
||||
whisper_print_system_info()
|
||||
|
|
Loading…
Reference in New Issue
Block a user