Mehmetarik commited on
Commit
09fb644
·
verified ·
1 Parent(s): e384ad7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - automatic-speech-recognition
5
+ ---
6
+ # Whisper Medium Model
7
+
8
+ Bu model, OpenAI'nin Whisper modelinin medium boyutunda bir versiyonudur. Türkçe ve İngilizce dillerinde otomatik konuşma tanıma (ASR) görevleri için eğitilmiştir.
9
+
10
+ ## Kullanım
11
+
12
+ ```python
13
+ from transformers import pipeline
14
+ asr = pipeline("automatic-speech-recognition", model="Mehmetarik/yeni")
15
+ result = asr("ses_dosyasi.wav")
16
+ print(result)