Views
No views yet
| Label | Examples |
|---|---|
| art | "Time", "The Seven Year Itch", "Imelda de ' Lambertazzi" |
| building | "Boston Garden", "Sheremetyevo International Airport", "Henry Ford Museum" |
| event | "Iranian Constitutional Revolution", "Russian Revolution", "French Revolution" |
| location | "the Republic of Croatia", "Croatian", "Mediterranean Basin" |
| organization | "IAEA", "Texas Chicken", "Church 's Chicken" |
| other | "BAR", "Amphiphysin", "N-terminal lipid" |
| person | "Edmund Payne", "Hicks", "Ellaline Terriss" |
| product | "Phantom", "100EX", "Corvettes - GT1 C6R" |
| Label | Precision | Recall | F1 |
|---|---|---|---|
| all | 0.7582 | 0.7751 | 0.7666 |
| art | 0.7713 | 0.7783 | 0.7748 |
| building | 0.6034 | 0.7085 | 0.6518 |
| event | 0.5512 | 0.5207 | 0.5355 |
| location | 0.8163 | 0.8321 | 0.8242 |
| organization | 0.7083 | 0.6894 | 0.6987 |
| other | 0.6748 | 0.7253 | 0.6991 |
| person | 0.8987 | 0.9053 | 0.9020 |
| product | 0.5685 | 0.6431 | 0.6035 |
1from span_marker import SpanMarkerModel
2
3# Download from the 🤗 Hub
4model = SpanMarkerModel.from_pretrained("span_marker_model_id")
5# Run inference
6entities = 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.")1from span_marker import SpanMarkerModel, Trainer
2
3# Download from the 🤗 Hub
4model = SpanMarkerModel.from_pretrained("span_marker_model_id")
5
6# Specify a Dataset with "tokens" and "ner_tag" columns
7dataset = load_dataset("conll2003") # For example CoNLL2003
8
9# Initialize a Trainer using the pretrained model & dataset
10trainer = Trainer(
11 model=model,
12 train_dataset=dataset["train"],
13 eval_dataset=dataset["validation"],
14)
15trainer.train()
16trainer.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 |
|---|---|---|---|---|---|---|
| 1.7467 | 200 | 0.0120 | 0.7533 | 0.7473 | 0.7503 | 0.9286 |
| 3.4934 | 400 | 0.0110 | 0.7659 | 0.7761 | 0.7710 | 0.9385 |
| 5.2402 | 600 | 0.0114 | 0.7772 | 0.7899 | 0.7835 | 0.9424 |
| 6.9869 | 800 | 0.0120 | 0.7724 | 0.7953 | 0.7837 | 0.9421 |
| 8.7336 | 1000 | 0.0124 | 0.7680 | 0.7942 | 0.7809 | 0.9413 |
@software{Aarsen_SpanMarker,
author = {Aarsen, Tom},
license = {Apache-2.0},
title = {{SpanMarker for Named Entity Recognition}},
url = {https://github.com/tomaarsen/SpanMarkerNER}
}