Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect Hindi Transcription #2

Open
Munikumar09 opened this issue Nov 28, 2023 · 1 comment
Open

Incorrect Hindi Transcription #2

Munikumar09 opened this issue Nov 28, 2023 · 1 comment

Comments

@Munikumar09
Copy link

Hi, I am trying to transcribe YouTube audio in Hindi language using the IndicWhisper Hindi model. However, I am getting incorrect Hindi transcriptions.
For example:
YouTube transcription: यह अभ्यास तुम्हें उसी क्षेत्र में कम कर रहे अन्य लोगों से बहुत आगे लाकर खड़ा कर देगा सुबह के 5 घंटे
IndicWhisper transcription: हर दस किया विषाषा क्या एक है वह मैं विषा दिल ए आने के लिए एक अच्छा विषा आपकी रक्षा

audio.mp4

Can anyone help me with this?

@1392001sai
Copy link
Collaborator

Hey @Munikumar09, Sorry for the late response,

I cant seem to replicate the issue. I am getting the following transcript from the whisper hindi model.

IndicWhisper Transcription: है यह अभ्यास तुम्हे उसी क्षेत्र में काम कर रहे अन्य लोगो ऐसी बहुत आगे लाकर खड़ा कर देगा सुबह के पांच घंटे

I converted your mp4 file to mp3 and used this code snippet for inference. The model is from the hindi hf checkpoint -

from transformers import pipeline

model_path = "hindi_models/whisper-medium-hi_alldata_multigpu"
device = "cuda"
lang_code = "hi"

whisper_asr = pipeline(
    "automatic-speech-recognition", model=model_path, device=device,
)

# Special case to handle odia since odia is not supported by whisper model
if lang_code == 'or':
    whisper_asr.model.config.forced_decoder_ids = (
        whisper_asr.tokenizer.get_decoder_prompt_ids(
            language=None, task="transcribe"
        )
    )
else:
    whisper_asr.model.config.forced_decoder_ids = (
        whisper_asr.tokenizer.get_decoder_prompt_ids(
            language=lang_code, task="transcribe"
        )
    )

result = whisper_asr("audio.mp3")
print(result["text"])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants