Views
No views yet
/judge/voix, mode dictée libre). Exporté en
ONNX pour tourner en local dans le navigateur via
Transformers.js.whisper-wakeref-onnx,
qui reconnaît un trick isolé), ce modèle transcrit une passe entière —
une séquence compositionnelle d'atomes : structure (entrée, transfert,
out), approche (HS/TS/fakie), rotation par pas de 90° (180, 270,
450…), slide (boardslide, backlip, nose press), grab et trick nommé.ollie backlip to boardslide 270 out) ; un composeur applicatif
(normalizeJib) reste branché en filet.transcription).openai/whisper-small · langue fr · tâche transcribe ·
generation_max_length=128.onnx/ : encoder_model.onnx /
decoder_model_merged.onnx (fp32, utilisés sur WebGPU) + variantes
*_quantized.onnx (q8, repli WASM). Configs et tokenizer à la racine.Note : d'anciens fichiers*_fp16.onnxissus d'essais de quantization peuvent traîner dans le repo — ils sont cassés (bug de conversion Whisper) et non utilisés par l'app ; à supprimer.
1import { pipeline } from '@huggingface/transformers';
2
3const transcriber = await pipeline(
4 'automatic-speech-recognition',
5 'almorelle/whisper-wakeref-jib-onnx',
6 { dtype: { encoder_model: 'fp32', decoder_model_merged: 'fp32' } }
7);
8const { text } = await transcriber(audioFloat32_16kHz, { language: 'french', task: 'transcribe' });