ccasimiro/squad_es
Updated • 346 • 14
How to use harshil10/tiny_bert_2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="harshil10/tiny_bert_2") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("harshil10/tiny_bert_2")
model = AutoModelForQuestionAnswering.from_pretrained("harshil10/tiny_bert_2")# Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("harshil10/tiny_bert_2")
model = AutoModelForQuestionAnswering.from_pretrained("harshil10/tiny_bert_2")This model is a fine-tuned version of CenIA/albert-tiny-spanish on the squad_es dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="harshil10/tiny_bert_2")