hfl/cmrc2018
Viewer • Updated • 14.4k • 1.92k • 38
How to use wskhanh/Roberta-wwm-ext-large-qa with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="wskhanh/Roberta-wwm-ext-large-qa") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("wskhanh/Roberta-wwm-ext-large-qa")
model = AutoModelForQuestionAnswering.from_pretrained("wskhanh/Roberta-wwm-ext-large-qa", device_map="auto")This model is a fine-tuned version of hfl/chinese-roberta-wwm-ext-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.5755 | 1.0 | 600 | 1.1028 |