Views
No views yet
| File | Size | Description |
|---|---|---|
large-v3-turbo-encoder.int8.onnx | 644 MB | Audio encoder |
large-v3-turbo-decoder.int8.onnx | 345 MB | Text decoder |
large-v3-turbo-tokens.txt | 847 KB | Vocabulary |
1val config = OfflineRecognizerConfig(
2 featConfig = FeatureConfig(sampleRate = 16000, featureDim = 128),
3 modelConfig = OfflineModelConfig(
4 whisper = OfflineWhisperModelConfig(
5 encoder = "$modelDir/large-v3-turbo-encoder.int8.onnx",
6 decoder = "$modelDir/large-v3-turbo-decoder.int8.onnx",
7 language = "de",
8 task = "transcribe"
9 ),
10 tokens = "$modelDir/large-v3-turbo-tokens.txt",
11 numThreads = 4,
12 provider = "cpu"
13 ),
14 decodingMethod = "greedy_search"
15)
16
17Why this model?
18
19The multilingual openai/whisper-large-v3-turbo achieves ~14% WER on German benchmarks. This German fine-tune brings that down to ~5% — a significant improvement for German-language applications. The sherpa-onnx build can use the GPU of Mobile devices to option the best posible performance.