hfl/cmrc2018
Viewer • Updated • 14.4k • 3.67k • 36
How to use wskhanh/pert-qa with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="wskhanh/pert-qa") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("wskhanh/pert-qa")
model = AutoModelForQuestionAnswering.from_pretrained("wskhanh/pert-qa")This model is a fine-tuned version of hfl/chinese-pert-large on the cmrc2018 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.0626 | 1.0 | 1200 | 0.6454 |
| 0.5677 | 2.0 | 2400 | 0.6557 |