hfl/cmrc2018
Viewer • Updated • 14.4k • 3.87k • 36
How to use cgt/Roberta-wwm-ext-large-qa with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="cgt/Roberta-wwm-ext-large-qa") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("cgt/Roberta-wwm-ext-large-qa")
model = AutoModelForQuestionAnswering.from_pretrained("cgt/Roberta-wwm-ext-large-qa")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.3584 | 1.0 | 1200 | 1.1416 |