klue/klue
Viewer • Updated • 206k • 3.24k • 96
How to use soddokayo/klue-roberta-base-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="soddokayo/klue-roberta-base-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("soddokayo/klue-roberta-base-ner")
model = AutoModelForTokenClassification.from_pretrained("soddokayo/klue-roberta-base-ner")This model is a fine-tuned version of klue/roberta-base 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.1585 | 1.0 | 2626 | 0.1648 | 0.7517 | 0.7499 | 0.7508 | 0.9489 |
| 0.1092 | 2.0 | 5252 | 0.1457 | 0.7776 | 0.7909 | 0.7842 | 0.9557 |
| 0.0714 | 3.0 | 7878 | 0.1432 | 0.7882 | 0.8105 | 0.7992 | 0.9591 |