eriktks/conll2003
Updated • 23.3k • 175
How to use kani1021/bert-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="kani1021/bert-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("kani1021/bert-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("kani1021/bert-finetuned-ner", device_map="auto")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.074 | 1.0 | 1756 | 0.0588 | 0.9148 | 0.9374 | 0.9259 | 0.9835 |
| 0.0355 | 2.0 | 3512 | 0.0683 | 0.9283 | 0.9463 | 0.9372 | 0.9851 |
| 0.0224 | 3.0 | 5268 | 0.0615 | 0.9311 | 0.9490 | 0.9400 | 0.9862 |
Base model
google-bert/bert-base-cased