islomov commited on
Commit
af46011
·
verified ·
1 Parent(s): 1138c4a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -11,7 +11,7 @@ tags:
11
  - speech-recognition
12
  ---
13
 
14
- # NavaiSTT-2v Medium - Uzbek Speech-to-Text Model
15
 
16
  Classic Whisper medium model fine-tuned for Uzbek language. The dataset included of diverse audio: publicly available podcasts, Tashkent dialect podcasts, news, google fleurs, USC and Common Voice 17. Data quality was mixed with 50% human transcribed and 50% pseudo-transcribed using Gemini 2.5 Pro.
17
 
@@ -20,9 +20,9 @@ Difference between v1 is that v2 is fully open-sourced. Due to some conflicts wi
20
  Special attention was given to Tashkent dialect audio materials, resulting in strong performance on this dialect. Future versions will include other regional dialects to improve overall coverage.
21
 
22
  # Whitepaper
23
- For more details on the methodology and research behind this model, visit: https://uz-speech.web.app/navaistt02m
24
 
25
- Training and filtering code: https://github.com/Islomov49/navaistt_v2-open-sourced
26
 
27
  Support my works and open-source movement: https://tirikchilik.uz/islomovs
28
 
@@ -56,8 +56,8 @@ import torchaudio
56
  from transformers import WhisperProcessor, WhisperForConditionalGeneration
57
 
58
  # Load model and processor
59
- processor = WhisperProcessor.from_pretrained("islomov/navaistt_v2_medium")
60
- model = WhisperForConditionalGeneration.from_pretrained("islomov/navaistt_v2_medium")
61
 
62
  def transcribe_audio(audio_path):
63
 
 
11
  - speech-recognition
12
  ---
13
 
14
+ # rubaiSTT-2v Medium - Uzbek Speech-to-Text Model
15
 
16
  Classic Whisper medium model fine-tuned for Uzbek language. The dataset included of diverse audio: publicly available podcasts, Tashkent dialect podcasts, news, google fleurs, USC and Common Voice 17. Data quality was mixed with 50% human transcribed and 50% pseudo-transcribed using Gemini 2.5 Pro.
17
 
 
20
  Special attention was given to Tashkent dialect audio materials, resulting in strong performance on this dialect. Future versions will include other regional dialects to improve overall coverage.
21
 
22
  # Whitepaper
23
+ For more details on the methodology and research behind this model, visit: https://uz-speech.web.app/rubaistt02m
24
 
25
+ Training and filtering code: https://github.com/Islomov49/rubaistt_v2-open-sourced
26
 
27
  Support my works and open-source movement: https://tirikchilik.uz/islomovs
28
 
 
56
  from transformers import WhisperProcessor, WhisperForConditionalGeneration
57
 
58
  # Load model and processor
59
+ processor = WhisperProcessor.from_pretrained("islomov/rubaistt_v2_medium")
60
+ model = WhisperForConditionalGeneration.from_pretrained("islomov/rubaistt_v2_medium")
61
 
62
  def transcribe_audio(audio_path):
63