Automatic Speech Recognition
Transformers.js
ONNX
English
multilingual
whisper
word-level-timestamps
output_attentions
Instructions to use edersonff/whisper-large-v3_timestamped with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use edersonff/whisper-large-v3_timestamped with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('automatic-speech-recognition', 'edersonff/whisper-large-v3_timestamped');
whisper-large-v3_timestamped
ONNX export of openai/whisper-large-v3 with output_attentions=True for word-level timestamp support in transformers.js.
Usage
import { pipeline } from "@huggingface/transformers";
const transcriber = await pipeline("automatic-speech-recognition", "edersonff/whisper-large-v3_timestamped", {
dtype: { encoder_model: "fp32", decoder_model_merged: "q8" },
device: "webgpu",
});
const result = await transcriber(audio, {
return_timestamps: "word",
chunk_length_s: 29,
stride_length_s: 5,
language: "en",
});
Export details
- Exported with
attn_implementation="eager"andoutput_attentions=True alignment_headsconfigured ingeneration_config.json- 32 encoder attentions + 32 cross-attentions per decoder layer
- Quantization variants: fp32 (original), q8 (quantized)
- WebGPU recommended (large model, ~10GB fp32 / ~3GB q8)
- Downloads last month
- 9
Model tree for edersonff/whisper-large-v3_timestamped
Base model
openai/whisper-large-v3