eriktks/conll2003
Updated • 41.1k • 166
How to use wisejiyoon/bert-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="wisejiyoon/bert-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("wisejiyoon/bert-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("wisejiyoon/bert-finetuned-ner")This model is a fine-tuned version of klue/bert-base on the conll2003 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.1321 | 1.0 | 1756 | 0.1003 | 0.8010 | 0.8514 | 0.8254 | 0.9687 |
| 0.0654 | 2.0 | 3512 | 0.0927 | 0.8331 | 0.8862 | 0.8588 | 0.9739 |
| 0.0382 | 3.0 | 5268 | 0.0943 | 0.8597 | 0.8941 | 0.8766 | 0.9761 |