CoolFace
Modelpublic

yslinear/kotoba-whisper-v2.2-coreml

sourceHugging Faceapache-2.0updated 8mo agoView on Hugging Face
0likes822downloads
Model Card

kotoba-whisper-v2.2 CoreML

This is the CoreML conversion of kotoba-tech/kotoba-whisper-v2.2 for use with WhisperKit.

Model Details

  • Base Model: kotoba-tech/kotoba-whisper-v2.2
  • Language: Japanese (ja)
  • Format: CoreML (.mlmodelc)
  • Optimized for: Apple Silicon (ANE - Apple Neural Engine)

Included Files

FileDescriptionANE Support
AudioEncoder.mlmodelcAudio feature encoder100%
TextDecoder.mlmodelcText decoder98%
MelSpectrogram.mlmodelcMel spectrogram converter72%

Usage with WhisperKit

swift
import WhisperKit

let whisperKit = try await WhisperKit(
    modelFolder: "path/to/kotoba-tech_kotoba-whisper-v2.2"
)

let result = try await whisperKit.transcribe(
    audioPath: "path/to/audio.wav",
    language: "ja"
)

Notes

  • This is a distilled model with only 2 decoder layers (vs 32 in the original Whisper large model)
  • Token-level timestamps are disabled due to alignment heads configuration incompatibility with the distilled architecture

License

This model is released under the Apache License 2.0, following the original model's license.

Attribution

This is a derivative work based on:

  • [kotoba-tech/kotoba-whisper-v2.2](https://huggingface.co/kotoba-tech/kotoba-whisper-v2.2) - The original Japanese Whisper model by Kotoba Technologies
  • [OpenAI Whisper](https://github.com/openai/whisper) - The base Whisper architecture
  • [Distil-Whisper](https://github.com/huggingface/distil-whisper) - Distillation codebase
  • [ReazonSpeech](https://research.reazon.jp/projects/ReazonSpeech/) - Japanese speech dataset

Acknowledgments