State-of-the-Art NER models - Organizations
Collection
4 items
•
Updated
This is a SpanMarker model trained on the FewNERD, CoNLL2003, and OntoNotes v5 dataset that can be used for Named Entity Recognition. This SpanMarker model uses prajjwal1/bert-small as the underlying encoder.
Label | Examples |
---|---|
ORG | "Texas Chicken", "Church 's Chicken", "IAEA" |
Label | Precision | Recall | F1 |
---|---|---|---|
all | 0.7618 | 0.7478 | 0.7547 |
ORG | 0.7618 | 0.7478 | 0.7547 |
from span_marker import SpanMarkerModel
# Download from the 🤗 Hub
model = SpanMarkerModel.from_pretrained("tomaarsen/span-marker-bert-small-orgs")
# Run inference
entities = model.predict("American Motors included Chinese officials as part of the negotiations establishing Beijing Jeep (now Beijing Benz).")
You can finetune this model on your own dataset.
from span_marker import SpanMarkerModel, Trainer
# Download from the 🤗 Hub
model = SpanMarkerModel.from_pretrained("tomaarsen/span-marker-bert-small-orgs")
# Specify a Dataset with "tokens" and "ner_tag" columns
dataset = load_dataset("conll2003") # For example CoNLL2003
# Initialize a Trainer using the pretrained model & dataset
trainer = Trainer(
model=model,
train_dataset=dataset["train"],
eval_dataset=dataset["validation"],
)
trainer.train()
trainer.save_model("tomaarsen/span-marker-bert-small-orgs-finetuned")
Training set | Min | Median | Max |
---|---|---|---|
Sentence length | 1 | 23.5706 | 263 |
Entities per sentence | 0 | 0.7865 | 39 |
Epoch | Step | Validation Loss | Validation Precision | Validation Recall | Validation F1 | Validation Accuracy |
---|---|---|---|---|---|---|
0.5720 | 600 | 0.0076 | 0.7642 | 0.6630 | 0.7100 | 0.9656 |
1.1439 | 1200 | 0.0070 | 0.7705 | 0.7139 | 0.7411 | 0.9699 |
1.7159 | 1800 | 0.0067 | 0.7837 | 0.7231 | 0.7522 | 0.9709 |
2.2879 | 2400 | 0.0070 | 0.7768 | 0.7517 | 0.7640 | 0.9725 |
2.8599 | 3000 | 0.0068 | 0.7877 | 0.7374 | 0.7617 | 0.9718 |
Carbon emissions were measured using CodeCarbon.
@software{Aarsen_SpanMarker,
author = {Aarsen, Tom},
license = {Apache-2.0},
title = {{SpanMarker for Named Entity Recognition}},
url = {https://github.com/tomaarsen/SpanMarkerNER}
}
Base model
prajjwal1/bert-small