ivrit.ai whisper-large-v3-turbo β€” ONNX with word-level timestamps

Unofficial ONNX conversion of ivrit-ai/whisper-large-v3-turbo (a Hebrew fine-tune of openai/whisper-large-v3-turbo), for in-browser use with πŸ€— Transformers.js.

What was modified relative to the source model (per Apache-2.0 Β§4(b)):

  • Exported to ONNX with output_attentions=True, so the decoder graph exposes cross_attentions.* outputs. This is what enables word-level timestamps (return_timestamps: "word") in Transformers.js β€” the same technique as the onnx-community/*_timestamped exports. The official ivrit-ai/whisper-large-v3-turbo-onnx export does not include these outputs and therefore supports segment-level timestamps only.
  • Quantized variants generated (fp16, q4); weights are otherwise unchanged.

All credit for the model itself goes to ivrit.ai (fine-tune, ~5,050 h of Hebrew training data) and OpenAI (base model).

Usage (Transformers.js)

import { pipeline } from "@huggingface/transformers";

const transcriber = await pipeline(
  "automatic-speech-recognition",
  "instush/ivrit-whisper-large-v3-turbo-timestamped-onnx",
  {
    device: "webgpu", // large model β€” WebGPU strongly recommended
    dtype: { encoder_model: "fp16", decoder_model_merged: "q4" },
  },
);

const out = await transcriber(audioFloat32Array16kHz, {
  language: "he",
  task: "transcribe",
  chunk_length_s: 30,
  stride_length_s: 5,
  return_timestamps: "word",
});

Notes:

  • The model is Hebrew-only; per the source model card, set language: "he" explicitly (the fine-tune degraded language auto-detection).
  • ~1.6 GB download at the recommended dtypes. Too large for the WASM backend on typical hardware β€” use WebGPU.

License

Apache License 2.0 β€” same as the source models. See the license text in this repo / the HF license tag. This is not an official ivrit.ai or OpenAI release.

Downloads last month
20
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for instush/ivrit-whisper-large-v3-turbo-timestamped-onnx

Quantized
(2)
this model