NghiemAbe/viquad
Viewer • Updated • 33.1k • 11 • 2
How to use lqbin/videberta-xsmall_batchsize24_epoch1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="lqbin/videberta-xsmall_batchsize24_epoch1") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("lqbin/videberta-xsmall_batchsize24_epoch1")
model = AutoModelForQuestionAnswering.from_pretrained("lqbin/videberta-xsmall_batchsize24_epoch1")I fineturned it from https://huggingface.co/Fsoft-AIC/videberta-xsmall. I am using it for relation extraction task (information extraction).