eriktks/conll2003
Updated • 41.8k • 166
How to use Kudod/bert-finetuned-ner-3090-11June with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Kudod/bert-finetuned-ner-3090-11June") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Kudod/bert-finetuned-ner-3090-11June")
model = AutoModelForTokenClassification.from_pretrained("Kudod/bert-finetuned-ner-3090-11June")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.0742 | 1.0 | 1756 | 0.0649 | 0.9099 | 0.9334 | 0.9215 | 0.9815 |
| 0.0371 | 2.0 | 3512 | 0.0678 | 0.9307 | 0.9448 | 0.9377 | 0.9851 |
| 0.0213 | 3.0 | 5268 | 0.0620 | 0.9325 | 0.9507 | 0.9415 | 0.9862 |
| 0.0142 | 4.0 | 7024 | 0.0707 | 0.9357 | 0.9504 | 0.9430 | 0.9863 |
| 0.0059 | 5.0 | 8780 | 0.0745 | 0.9397 | 0.9524 | 0.9460 | 0.9869 |
Base model
google-bert/bert-base-cased