klue/klue
Viewer • Updated • 206k • 3.24k • 96
How to use soddokayo/klue-roberta-large-klue-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="soddokayo/klue-roberta-large-klue-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("soddokayo/klue-roberta-large-klue-ner")
model = AutoModelForTokenClassification.from_pretrained("soddokayo/klue-roberta-large-klue-ner")This model is a fine-tuned version of klue/roberta-large on the klue 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 | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.1246 | 1.0 | 2626 | 0.1629 | 0.7891 | 0.7725 | 0.7807 | 0.9539 |
| 0.0744 | 2.0 | 5252 | 0.1194 | 0.8124 | 0.8345 | 0.8233 | 0.9642 |
| 0.0401 | 3.0 | 7878 | 0.1279 | 0.8292 | 0.8439 | 0.8365 | 0.9664 |