eriktks/conll2003
Updated • 41.1k • 166
bert-base-cased fine-tuned for Named Entity Recognition on CoNLL-2003.
Recognizes 4 entity types: PER, ORG, LOC, MISC.
| Metric | Score |
|---|---|
| Precision | 0.7058 |
| Recall | 0.5080 |
| F1 | 0.5908 |
| Accuracy | 0.9015 |
Evaluated with seqeval on the CoNLL-2003 test split.
from transformers import pipeline
ner = pipeline("ner", model="ZaharHR/bert-conll2003-ner", aggregation_strategy="simple")
ner("Elon Musk founded SpaceX in California.")
bert-base-casedO, B-PER, I-PER, B-ORG, I-ORG, B-LOC, I-LOC, B-MISC, I-MISC
Base model
google-bert/bert-base-cased