whispercpp.py
whispercpp.py copied to clipboard
Set params?
How do you access and set the various parameters passed to Whisper? I see the params
structure in the Whisper class, but it appears to be private and not externally accessible.
>>> from whispercpp import Whisper
>>> w = Whisper('large')
>>> w.params.processors = 4
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'whispercpp.Whisper' object has no attribute 'params'