rajpurkar/squad_v2
Viewer • Updated • 142k • 33.5k • 251
How to use sinu/IndoBERT-ExamQA with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="sinu/IndoBERT-ExamQA") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("sinu/IndoBERT-ExamQA")
model = AutoModelForQuestionAnswering.from_pretrained("sinu/IndoBERT-ExamQA")# Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("sinu/IndoBERT-ExamQA")
model = AutoModelForQuestionAnswering.from_pretrained("sinu/IndoBERT-ExamQA")This model is a fine-tuned version of indolem/indobert-base-uncased on the None dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.395 | 1.0 | 8202 | 1.3536 |
| 1.1534 | 2.0 | 16404 | 1.4040 |
| 1.2816 | 2.0 | 32808 | 1.8183 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="sinu/IndoBERT-ExamQA")