Views
No views yet
| Encoder | Decoder | Size |
|---|---|---|
| FP32 | FP32 | 2.1 GB |
| FP16 | quantized | 1.2 GB (recommended) |
1const transcriber = await pipeline(
2 "automatic-speech-recognition",
3 "ipsilondev/lite-whisper-large-v3-turbo-onnx",
4 { dtype: { encoder_model: "fp16", decoder_model_merged: "quantized" } }
5);
6const result = await transcriber(audio, { return_timestamps: "word" });