eriktks/conll2003
Updated • 39k • 166
How to use thucdangvan020999/bert-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="thucdangvan020999/bert-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("thucdangvan020999/bert-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("thucdangvan020999/bert-finetuned-ner")This model is a fine-tuned version of bert-base-cased 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.0885 | 1.0 | 1756 | 0.0664 | 0.9189 | 0.9327 | 0.9257 | 0.9820 |
| 0.0346 | 2.0 | 3512 | 0.0650 | 0.9260 | 0.9456 | 0.9357 | 0.9856 |
| 0.017 | 3.0 | 5268 | 0.0661 | 0.9318 | 0.9495 | 0.9406 | 0.9854 |