klue/klue
Viewer • Updated • 206k • 7.07k • 92
How to use Hyeonseo/ko_roberta_small_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Hyeonseo/ko_roberta_small_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Hyeonseo/ko_roberta_small_model")
model = AutoModelForTokenClassification.from_pretrained("Hyeonseo/ko_roberta_small_model")This model is a fine-tuned version of hyeonseo/ko_roberta_small_model 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.2341 | 1.0 | 1313 | 0.2069 | 0.6516 | 0.6999 | 0.6749 | 0.9336 |
| 0.16 | 2.0 | 2626 | 0.1864 | 0.6827 | 0.7254 | 0.7034 | 0.9404 |