Model reference · open weights

faster-whisper-large-edacc-commonvoice-l2arctic

Available as managed deployment Audio 2snem6 · community Speech→text 1 variants 814 dl/mo

faster-whisper-large-edacc-commonvoice-l2arctic is an open-weight audio or speech model from 2snem6. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released by2snem6
TypeAudio & music
TaskSpeech→text
Runs withfaster-whisper
Based on2snem6/whisper-large-v3-edacc-commonvoice-l2arctic-v3
Released2025-09-25
Popularity814 downloads / month
LicenceOpen weights

About

What faster-whisper-large-edacc-commonvoice-l2arctic is

This is a CTranslate2-optimized version of 2snem6/whisper-large-v3-edacc-commonvoice-l2arctic-v3 for use with the faster-whisper library.

Read the full model card

🚀 Performance Benefits

  • Faster inference: Up to 4x speed improvement over standard Transformers
  • Lower memory usage: Reduced VRAM requirements
  • Optimized for production: Built for real-time applications
  • Quantization: FLOAT16 precision for optimal speed/quality balance

📋 Model Details

Model Size

FileSize
added_tokens.json0.0 MB
tokenizer_config.json0.3 MB
special_tokens_map.json0.0 MB
normalizer.json0.1 MB
preprocessor_config.json0.0 MB
config.json0.0 MB
vocab.json1.0 MB
vocabulary.json1.0 MB
model.bin2944.3 MB
merges.txt0.5 MB

🔧 Installation & Usage

Installation

pip install faster-whisper

Basic Usage

from faster_whisper import WhisperModel

# Load the model
model = WhisperModel("2snem6/faster-whisper-large-v3-edacc-commonvoice-l2arctic-v3")

# Transcribe audio
segments, info = model.transcribe("audio.wav")

print(f"Detected language: {info.language} (probability: {info.language_probability:.2f})")

for segment in segments:
    print(f"[{segment.start:.2f}s -> {segment.end:.2f}s] {segment.text}")

Advanced Usage

# With custom parameters
segments, info = model.transcribe(
    "audio.wav",
    beam_size=5,
    language="en",  # Force English
    condition_on_previous_text=False,
    temperature=0.0
)

# Batch processing
audio_files = ["file1.wav", "file2.wav", "file3.wav"]
for audio_file in audio_files:
    segments, info = model.transcribe(audio_file)
    # Process segments...

Loading from Local Path

# If you've downloaded the model locally
model = WhisperModel("/path/to/downloaded/model")

⚡ Performance Comparison

FastWhisper (CTranslate2) vs Standard Transformers:

MetricStandard TransformersFastWhisper (CT2)Improvement
Speed1x2-4x2-4x faster
Memory1x0.5-0.8x20-50% less
Model Size1x0.5-0.8x20-50% smaller

Performance may vary depending on hardware and audio length.

🎯 Use Cases

This optimized model is perfect for:

  • Real-time transcription applications
  • Production deployments requiring fast inference
  • Resource-constrained environments
  • Batch processing of audio files
  • API services with high throughput requirements

📝 Technical Details

Conversion Process

This model was converted using the ct2-transformers-converter tool:

ct2-transformers-converter \
    --model 2snem6/whisper-large-v3-edacc-commonvoice-l2arctic-v3 \
    --output_dir faster-whisper-large-v3-edacc-commonvoice-l2arctic-v3 \
    --quantization float16 \
    --copy_files tokenizer.json preprocessor_config.json

Quantization

  • FLOAT16: Half-precision floating point for optimal speed/quality balance

🔄 Original Model

This is a converted version of a fine-tuned Whisper model. The original model 2snem6/whisper-large-v3-edacc-commonvoice-l2arctic-v3 was likely fine-tuned for specific:

  • Accents or dialects
  • Domain-specific vocabulary
  • Improved accuracy on certain audio types

Please refer to the original model card for training details and performance metrics.

📚 Citation

If you use this converted model, please cite both the original Whisper paper and the CTranslate2 library:

Original Whisper

@misc{radford2022whisper,
  title={Robust Speech Recognition via Large-Scale Weak Supervision},
  author={Alec Radford and Jong Wook Kim and Tao Xu and Greg Brockman and Christine McLeavey and Ilya Sutskever},
  year={2022},
  eprint={2212.04356},
  archivePrefix={arXiv},
  primaryClass={eess.AS}
}

CTranslate2

@misc{ctranslate2,
  title={CTranslate2: Fast inference with Transformers and OpenNMT models},
  author={Guillaume Klein},
  year={2020},
  url={https://github.com/OpenNMT/CTranslate2}
}

🤝 Contributing

Found an issue or want to improve this model?

📄 License

This model inherits the license from the original model: Apache 2.0


Converted with ❤️ using CTranslate2 and faster-whisper

From the published model card. Full card on the HuggingFace links in the sidebar.

How it works

How audio & music work

Audio or textinputAudio modelrecognise / synthesiseText or audiooutputSpeech-to-text turns audio into text; text-to-speech and music models turn text into audio.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys faster-whisper-large-edacc-commonvoice-l2arctic for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (faster-whisper-large-edacc-commonvoice-l2arctic below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -F model="faster-whisper-large-edacc-commonvoice-l2arctic" -F file=@audio.mp3

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms