I am transcribing an audio file using the small
model of whisper
..
Everything is perfect while transcribing the audio..
But my question is, The ' WHISPER' model does auto-correction in grammar..
Here is the code I am using:
from whisper import load_audio
fname = 'audioFile'
model = load_model('small')
result = model.transcript(fname)
print(result)
The problem is : It corrects the grammar mistakes while transcribing audio file.
My audio file contains :
"In this course, will we...."
But it returns:
"In this course. we will..."
Here I am attaching the link to the audio file::
'https://drive.google.com/file/d/1lNjjKvZxJ8G_pH7i19oMhxLf2Oj5loiE/view?usp=share_link'
I also googled the question and found one question here but it is unanswered..
Any help or suggestions will be very helpful. Thank you!!