Instructions to use atamano/whisper-chess-tiny-es with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use atamano/whisper-chess-tiny-es with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="atamano/whisper-chess-tiny-es")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("atamano/whisper-chess-tiny-es") model = AutoModelForSpeechSeq2Seq.from_pretrained("atamano/whisper-chess-tiny-es") - Notebooks
- Google Colab
- Kaggle
whisper-chess-tiny-es
Fine-tuned Whisper-tiny for chess move recognition in Espaรฑol (Spanish).
Part of the SpeakChess project โ play chess by voice in EN / FR / DE / ES.
Performance
- Test WER: 0.30% on synthetic chess move evaluation set
- Domain: chess moves only (notation like
Nf3,exd5,O-O) - Optimized for browser inference via transformers.js (ONNX + INT8)
Files
onnx/encoder_model_int8.onnxโ INT8-quantized encoder (Conv layers kept FP32 for WASM compat)onnx/decoder_model_merged_int8.onnxโ INT8 merged decoder- Standard Whisper tokenizer/processor files
Total runtime download: ~62 MB.
Usage (transformers.js)
import { pipeline } from "@huggingface/transformers";
const transcriber = await pipeline(
"automatic-speech-recognition",
"atamano/whisper-chess-tiny-es",
{ dtype: { encoder_model: "int8", decoder_model_merged: "int8" } }
);
const result = await transcriber(audio, { language: "es", task: "transcribe" });
License โ Important
This model is licensed under CC BY-NC-SA 4.0. Summary:
- โ Free to use for personal projects, research, education, and non-commercial demos
- โ Free to share and adapt with attribution and same-license derivatives
- โ Commercial use is NOT permitted without a separate license
- โ Including the model in commercial products, paid services, or competing voice-chess offerings requires explicit written permission
For commercial licensing inquiries: antoine@darksquares.net
The full license text: https://creativecommons.org/licenses/by-nc-sa/4.0/
All rights reserved beyond the CC BY-NC-SA 4.0 grant.
Training
See github.com/atamano/speakchess for the full training pipeline.
- Base:
openai/whisper-tiny(39M params, 98% trainable via full fine-tune) - Method: Full fine-tuning + SpecAugment + suppress_tokens whitelist (chess vocab only)
- Data: synthetic audio via Edge TTS (multiple accents per language) + augmentation at runtime
- Downloads last month
- 4
Model tree for atamano/whisper-chess-tiny-es
Base model
openai/whisper-tiny