eriktks/conll2003
Updated • 39.1k • 166
How to use graphcore-rahult/bert-base-uncased-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="graphcore-rahult/bert-base-uncased-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("graphcore-rahult/bert-base-uncased-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("graphcore-rahult/bert-base-uncased-finetuned-ner")This model is a fine-tuned version of bert-base-uncased 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.0943 | 1.0 | 877 | 0.0687 | 0.9019 | 0.9149 | 0.9084 | 0.9801 |
| 0.2395 | 2.0 | 1754 | 0.0623 | 0.9221 | 0.9298 | 0.9259 | 0.9829 |
| 0.0241 | 3.0 | 2631 | 0.0626 | 0.9201 | 0.9350 | 0.9275 | 0.9832 |