Views
No views yet
| Label | Examples |
|---|---|
| Asset | "raw material", "water resources", "mental health" |
| Body Part | "leaves", "plant leaves", "deep tissue compartment" |
| Body of Water | "rivers", "Dhaleshwari river", "peripheral rivers" |
| Chemical | "marine algal toxin", "domoic acid", "cathode materials" |
| Disease | "seizures", "chronic epileptic syndrome", "acute neurologic signs" |
| Ecosystem | "cloud forests", "polluted environment", "Tropical montane cloud forest" |
| Energy Source | "fossil fuels", "12-cell series battery-pack prototype", "battery cells" |
| Field of Study | "study", "reference laboratory", "veterinary medicine" |
| Geographical Feature | "heterogenous topography", "low point", "mountainous regions" |
| Intellectual Artefact | "Daily husbandry records", "data", "Veterinary medical records" |
| Location | "beaches", "wild", "Westbrook" |
| Mathematical Expression | "Stepwise machine hour constraints", "difference", "gradient" |
| Measuring Device | "station", "EEG", "MRI scan" |
| Meteorological Phenomenon | "climatic variability", "rainfall", "climate change" |
| Method | "serum monitoring", "clinical efficacy", "dosing" |
| Natural Disaster | "heavy metal contamination", "seasonal air pollution", "environmental pollution" |
| Natural Phenomenon | "biochemical changes", "changing ocean conditions", "algal blooms" |
| Organism | "California sea lions", "Zalophus californianus", "species" |
| Organization | "reference laboratory", "long-term care facility", "NOAA National Marine Fisheries Service" |
| Other | "normal eating", "reports", "marine mammal health" |
| Person | "clinicians", "staff", "Clinicians" |
| Physical Artefact | "electric vehicle", "EVs", "paved east – west road" |
| Physical Phenomenon | "seasonal changes", "structural abnormalities", "normal food intake" |
| Policy | "safety", "pollution", "energy security" |
| Quantity | "energy density", "200 mAhg − 1", ">" |
| Satellite | "Tropical Rainfall Measuring Mission", "satellites", "TRMM" |
| System | "climate", "global overturning circulation", "system structure" |
| Time Period | "several decades", "periods of prolonged anorexia", "101 days" |
| Metric | Score |
|---|---|
| Precision | 64.95 |
| Recall | 65.14 |
| F1 | 65.04 |
This checkpoint corresponds to the seed with the highest strict F1 on the gold evaluation set.
| Seed | Precision | Recall | Strict F1 |
|---|---|---|---|
| 1 | XX.XX | XX.XX | XX.XX |
| 2 | XX.XX | XX.XX | XX.XX |
| 3 | XX.XX | XX.XX | XX.XX |
| 4 | XX.XX | XX.XX | XX.XX |
| 5 | XX.XX | XX.XX | XX.XX |
span_marker library for inference.pip install span_marker1from span_marker import SpanMarkerModel
2
3# Download from the 🤗 Hub
4model = SpanMarkerModel.from_pretrained("P0L3/CliReNER-cliscibert_scivocab_uncased")
5
6# Run inference
7text = "Furthermore, coastal environments face some of the most significant consequences, specifically the compounding risks of sea level rise paired with prolonged and more violent sea level extremes (Vilibi et al. 2025)."
8entities = model.predict(text)
9
10for entity in entities:
11 print(f"Entity: {entity['span']} | Label: {entity['label']} | Score: {entity['score']:.4f}")
12
13# Entity: coastal environments | Label: Location | Score: 0.2828
14# Entity: sea level rise | Label: Physical Phenomenon | Score: 0.3816
15# Entity: prolonged | Label: Other | Score: 0.2954
16# Entity: sea level extremes | Label: Meteorological Phenomenon | Score: 0.3865
17# Entity: Vilibi et al. | Label: Person | Score: 0.7611
18# Entity: 2025 | Label: Time Period | Score: 0.98151from span_marker import SpanMarkerModel, Trainer
2from datasets import load_dataset
3
4# Download from the 🤗 Hub
5model = SpanMarkerModel.from_pretrained("your-huggingface-username/your-model-name")
6
7# Specify a Dataset with "tokens" and "ner_tags" columns
8dataset = load_dataset("your_custom_dataset")
9
10# Initialize a Trainer using the pretrained model & dataset
11trainer = Trainer(
12 model=model,
13 train_dataset=dataset["train"],
14 eval_dataset=dataset["validation"],
15)
16trainer.train()
17trainer.save_model("span_marker_model_id-finetuned")| Training set | Min | Median | Max |
|---|---|---|---|
| Sentence length | 3 | 31.4819 | 97 |
| Entities per sentence | 1 | 7.0100 | 22 |
| Epoch | Step | Validation Loss | Validation Precision | Validation Recall | Validation F1 | Validation Accuracy |
|---|---|---|---|---|---|---|
| 1.0 | 62 | 0.1135 | 0.1 | 0.0029 | 0.0056 | 0.6069 |
| 2.0 | 124 | 0.0502 | 0.6183 | 0.3300 | 0.4303 | 0.7480 |
| 3.0 | 186 | 0.0417 | 0.6189 | 0.6198 | 0.6194 | 0.8298 |
| 4.0 | 248 | 0.0373 | 0.6740 | 0.6141 | 0.6426 | 0.8368 |
| 5.0 | 310 | 0.0427 | 0.6761 | 0.6169 | 0.6452 | 0.8419 |
| 6.0 | 372 | 0.0409 | 0.6871 | 0.6270 | 0.6557 | 0.8434 |
| 7.0 | 434 | 0.0502 | 0.6495 | 0.6514 | 0.6504 | 0.8455 |
1@misc{poleksic2026named,
2 author = {Poleksić, Andrija and Martinčić-Ipšić, Sanda},
3 title = {Named Entity Recognition for Climate Change Research},
4 year = {2026},
5 howpublished = {Research Square},
6 note = {Preprint}
7}1@software{Aarsen_SpanMarker,
2 author = {Aarsen, Tom},
3 license = {Apache-2.0},
4 title = {{SpanMarker for Named Entity Recognition}},
5 url = {https://github.com/tomaarsen/SpanMarkerNER}
6}