Instructions to use jacktol/whisper-large-v3-finetuned-for-ATC with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jacktol/whisper-large-v3-finetuned-for-ATC with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="jacktol/whisper-large-v3-finetuned-for-ATC")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("jacktol/whisper-large-v3-finetuned-for-ATC") model = AutoModelForMultimodalLM.from_pretrained("jacktol/whisper-large-v3-finetuned-for-ATC") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -25,14 +25,6 @@ model-index:
|
|
| 25 |
|
| 26 |
---
|
| 27 |
|
| 28 |
-
# Whisper Large v3 Fine-Tuned for Air Traffic Control (ATC)
|
| 29 |
-
|
| 30 |
-
## Deprecation Notice (August 24, 2025)
|
| 31 |
-
|
| 32 |
-
This model is now **deprecated**. A newer and **larger, better-performing model** is available, achieving a **6.5% word error rate**, a significant improvement over the previous version (≈15.08% WER).
|
| 33 |
-
|
| 34 |
-
[View the updated model on Hugging Face](https://huggingface.co/jacktol/whisper_large_v3_finetuned_6.5_eval_wer)
|
| 35 |
-
|
| 36 |
## Model Overview
|
| 37 |
|
| 38 |
This model is a fine-tuned version of OpenAI's Whisper Large v3 model, specifically trained on **Air Traffic Control (ATC)** communication datasets. The fine-tuning process significantly improves transcription accuracy on domain-specific aviation communications, achieving a Word Error Rate (WER) of 6.5% on the test set. The model is particularly effective at handling accent variations and ambiguous phrasing often encountered in ATC communications.
|
|
|
|
| 25 |
|
| 26 |
---
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
## Model Overview
|
| 29 |
|
| 30 |
This model is a fine-tuned version of OpenAI's Whisper Large v3 model, specifically trained on **Air Traffic Control (ATC)** communication datasets. The fine-tuning process significantly improves transcription accuracy on domain-specific aviation communications, achieving a Word Error Rate (WER) of 6.5% on the test set. The model is particularly effective at handling accent variations and ambiguous phrasing often encountered in ATC communications.
|