initial_prompt Not working after 30 sec #344
Answered
by
jianfch
Abdurrafey-Siddiqui
asked this question in
Q&A
-
|
initial_prompt only seems to work for the first 30 seconds of the audio since the rest of my audio seems to not be using it. how to fix?? |
Beta Was this translation helpful? Give feedback.
Answered by
jianfch
Oct 17, 2022
Replies: 1 comment
-
|
It might be due to one of conditions being true Line 238 in d18e9ea if you didn't set condition_on_previous_text=False and temperature of the result > 0.5, then specifying temperature(s) less than 0.5 will fix it such as temperature=0.0 or temperature=(0.0, 0.2, 0.4)
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Abdurrafey-Siddiqui
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It might be due to one of conditions being true
whisper/whisper/transcribe.py
Line 238 in d18e9ea
if you didn't set
condition_on_previous_text=Falseand temperature of the result > 0.5, then specifying temperature(s) less than 0.5 will fix it such astemperature=0.0ortemperature=(0.0, 0.2, 0.4)