---
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.
Downloads last month
391
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.