## distilbert-base-spanish-uncased-finetuned-qa-mlqa-onnx **Tags:** * Question Answering * Transformers.js * ONNX * distilbert * quantized * spanish ### License All Rights Reserved. No part of this model may be redistributed, reused, or cited without express permission from the author. ### Model Description Spanish DistilBERT model fine-tuned for Question Answering (MLQA), exported to ONNX and quantized for Transformers.js. ### Files * `config.json` * `tokenizer.json` * `tokenizer_config.json` * `vocab.txt` * `onnx/model_quantized.onnx` ### Usage in Transformers.js ```javascript import { pipeline } from '@xenova/transformers'; // Load the Spanish QA pipeline pipeline('question-answering', 'jestevesv/distilbert-base-spanish-uncased-finetuned-qa-mlqa-onnx', { quantized: true }) .then(qa => qa('¿Cuál es la capital de Francia?', 'La capital de Francia es París.')) .then(result => console.log(result)) .catch(err => console.error(err));