eriktks/conll2003
Updated • 39.4k • 166
How to use neonwatty/bert-large-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="neonwatty/bert-large-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("neonwatty/bert-large-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("neonwatty/bert-large-finetuned-ner")This model is a fine-tuned version of bert-large-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.0661 | 1.0 | 1756 | 0.0568 | 0.9261 | 0.9446 | 0.9353 | 0.9850 |
| 0.0282 | 2.0 | 3512 | 0.0555 | 0.9469 | 0.9551 | 0.9510 | 0.9883 |
| 0.0156 | 3.0 | 5268 | 0.0535 | 0.9484 | 0.9598 | 0.9541 | 0.9893 |
Base model
google-bert/bert-large-cased