File size: 1,428 Bytes
45f9db7
 
 
 
a518f40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45f9db7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
language:
- tr
---

    ---
    language: tr
    tags:
    - whisper
    - turkish
    - speech-recognition
    license: apache-2.0
    ---

    # Huseyin/whisper-large-v3-turkish-finetuned

    Bu model, OpenAI'nin Whisper modelinin Türkçe konuşma tanıma için fine-tune edilmiş versiyonudur.

    
    Bu model, Türkçe konuşma tanıma için fine-tune edilmiş bir Whisper Large v3 modelidir. 
    Model, [veri seti adı] üzerinde eğitilmiş ve [test seti adı] üzerinde değerlendirilmiştir.
    

    ## Kullanım

    ```python
    from transformers import WhisperForConditionalGeneration, WhisperProcessor
    import torch

    model = WhisperForConditionalGeneration.from_pretrained("Huseyin/whisper-large-v3-turkish-finetuned")
    processor = WhisperProcessor.from_pretrained("Huseyin/whisper-large-v3-turkish-finetuned")

    # Ses dosyasını yükleyin ve işleyin
    audio_input = processor(audio_file, return_tensors="pt").input_features

    # Transkripsiyon yapın
    predicted_ids = model.generate(audio_input)
    transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)[0]
    print(transcription)
    ```

    ## Performans

    Bu model, Türkçe konuşma tanıma görevinde X% Word Error Rate (WER) elde etmiştir.

    ## Sınırlamalar

    [Burada modelin sınırlamalarını belirtin]

    ## Lisans

    Bu model Apache 2.0 lisansı altında dağıtılmaktadır.