DFKI-SLT/few-nerd
Viewer • Updated • 514k • 2.73k • 21
How to use jackboyla/span-marker-bert-base-fewnerd-coarse-super with SpanMarker:
from span_marker import SpanMarkerModel
model = SpanMarkerModel.from_pretrained("jackboyla/span-marker-bert-base-fewnerd-coarse-super")This is a SpanMarker model trained on the DFKI-SLT/few-nerd dataset that can be used for Named Entity Recognition. This SpanMarker model uses bert-base-cased as the underlying encoder.
| Label | Examples |
|---|---|
| art | "The Seven Year Itch", "Time", "Imelda de ' Lambertazzi" |
| building | "Boston Garden", "Henry Ford Museum", "Sheremetyevo International Airport" |
| event | "Russian Revolution", "Iranian Constitutional Revolution", "French Revolution" |
| location | "Croatian", "the Republic of Croatia", "Mediterranean Basin" |
| organization | "IAEA", "Church 's Chicken", "Texas Chicken" |
| other | "BAR", "Amphiphysin", "N-terminal lipid" |
| person | "Ellaline Terriss", "Edmund Payne", "Hicks" |
| product | "Phantom", "100EX", "Corvettes - GT1 C6R" |
| Label | Precision | Recall | F1 |
|---|---|---|---|
| all | 0.7793 | 0.7634 | 0.7713 |
| art | 0.7608 | 0.7395 | 0.75 |
| building | 0.6095 | 0.6816 | 0.6435 |
| event | 0.6094 | 0.5392 | 0.5721 |
| location | 0.8112 | 0.8599 | 0.8348 |
| organization | 0.7335 | 0.6827 | 0.7072 |
| other | 0.7715 | 0.5822 | 0.6636 |
| person | 0.8635 | 0.9044 | 0.8835 |
| product | 0.7172 | 0.5932 | 0.6494 |
from span_marker import SpanMarkerModel
# Download from the 🤗 Hub
model = SpanMarkerModel.from_pretrained("span_marker_model_id")
# Run inference
entities = model.predict("Caretaker manager George Goss led them on a run in the FA Cup, defeating Liverpool in round 4, to reach the semi-final at Stamford Bridge, where they were defeated 2–0 by Sheffield United on 28 March 1925.")
You can finetune this model on your own dataset.
from span_marker import SpanMarkerModel, Trainer
# Download from the 🤗 Hub
model = SpanMarkerModel.from_pretrained("span_marker_model_id")
# 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("span_marker_model_id-finetuned")
| Training set | Min | Median | Max |
|---|---|---|---|
| Sentence length | 1 | 24.4956 | 163 |
| Entities per sentence | 0 | 2.5439 | 35 |
| Epoch | Step | Validation Loss | Validation Precision | Validation Recall | Validation F1 | Validation Accuracy |
|---|---|---|---|---|---|---|
| 0.1629 | 200 | 0.0339 | 0.7327 | 0.6104 | 0.6660 | 0.9052 |
| 0.3259 | 400 | 0.0234 | 0.7717 | 0.6954 | 0.7316 | 0.9212 |
| 0.4888 | 600 | 0.0223 | 0.7598 | 0.7447 | 0.7522 | 0.9337 |
| 0.6517 | 800 | 0.0207 | 0.7600 | 0.7625 | 0.7612 | 0.9362 |
| 0.8147 | 1000 | 0.0196 | 0.7847 | 0.7484 | 0.7661 | 0.9369 |
| 0.9776 | 1200 | 0.0192 | 0.7809 | 0.7584 | 0.7695 | 0.9376 |
@software{Aarsen_SpanMarker,
author = {Aarsen, Tom},
license = {Apache-2.0},
title = {{SpanMarker for Named Entity Recognition}},
url = {https://github.com/tomaarsen/SpanMarkerNER}
}
Base model
google-bert/bert-base-cased