Views
No views yet
| Label | Examples |
|---|---|
| Asset | "mental health", "raw material", "water resources" |
| Body Part | "plant leaves", "deep tissue compartment", "leaves" |
| Body of Water | "peripheral rivers", "Dhaleshwari river", "rivers" |
| Chemical | "cathode materials", "domoic acid", "marine algal toxin" |
| Disease | "seizures", "chronic epileptic syndrome", "acute neurologic signs" |
| Ecosystem | "polluted environment", "Tropical montane cloud forest", "cloud forests" |
| Energy Source | "battery cells", "fossil fuels", "12-cell series battery-pack prototype" |
| Field of Study | "veterinary medicine", "study", "reference laboratory" |
| Geographical Feature | "mountainous regions", "heterogenous topography", "low point" |
| Intellectual Artefact | "Veterinary medical records", "Daily husbandry records", "data" |
| Location | "Westbrook", "beaches", "wild" |
| Mathematical Expression | "gradient", "Stepwise machine hour constraints", "difference" |
| Measuring Device | "EEG", "MRI scan", "station" |
| Meteorological Phenomenon | "climatic variability", "rainfall", "climate change" |
| Method | "serum monitoring", "clinical efficacy", "dosing" |
| Natural Disaster | "environmental pollution", "heavy metal contamination", "seasonal air pollution" |
| Natural Phenomenon | "biochemical changes", "algal blooms", "changing ocean conditions" |
| Organism | "Zalophus californianus", "species", "California sea lions" |
| Organization | "long-term care facility", "NOAA National Marine Fisheries Service", "reference laboratory" |
| Other | "normal eating", "reports", "marine mammal health" |
| Person | "Clinicians", "staff", "clinicians" |
| Physical Artefact | "electric vehicle", "paved east – west road", "EVs" |
| Physical Phenomenon | "seasonal changes", "structural abnormalities", "normal food intake" |
| Policy | "safety", "pollution", "energy security" |
| Quantity | "energy density", ">", "200 mAhg − 1" |
| Satellite | "TRMM", "satellites", "Tropical Rainfall Measuring Mission" |
| System | "global overturning circulation", "climate", "system structure" |
| Time Period | "periods of prolonged anorexia", "several decades", "101 days" |
| Metric | Score |
|---|---|
| Precision | XX.XX |
| Recall | XX.XX |
| F1 | XX.XX |
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 |
scivocab).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-scibert_scivocab_uncased")
5
6# Run inference
7text = "At the same time, terrestrial systems are shifting as warming drives rapid changes in frozen soils. These soils, which cover 20% of the Earth’s land surface, are degrading, with cascading effects on water, energy, and carbon cycles (Zhao et al. 2026)."
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: terrestrial systems | Label: System | Score: 0.6377
14# Entity: warming | Label: Physical Phenomenon | Score: 0.4777
15# Entity: frozen soils | Label: Geographical Feature | Score: 0.3317
16# Entity: soils | Label: Body of Water | Score: 0.3320
17# Entity: 20% | Label: Quantity | Score: 0.9814
18# Entity: Earth | Label: Location | Score: 0.9857
19# Entity: land surface | Label: Geographical Feature | Score: 0.5472
20# Entity: degrading | Label: Other | Score: 0.4863
21# Entity: energy | Label: Chemical | Score: 0.4364
22# Entity: water | Label: Chemical | Score: 0.6675
23# Entity: carbon cycles | Label: Physical Phenomenon | Score: 0.6238
24# Entity: Zhao et al. | Label: Person | Score: 0.8318
25# Entity: 2026 | Label: Time Period | Score: 0.9117
261from 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.1052 | 0.0 | 0.0 | 0.0 | 0.6075 |
| 2.0 | 124 | 0.0534 | 0.5492 | 0.4648 | 0.5035 | 0.7995 |
| 3.0 | 186 | 0.0392 | 0.7086 | 0.5409 | 0.6135 | 0.8201 |
| 4.0 | 248 | 0.0415 | 0.6404 | 0.6184 | 0.6292 | 0.8374 |
| 5.0 | 310 | 0.0382 | 0.6823 | 0.6471 | 0.6642 | 0.8513 |
| 6.0 | 372 | 0.0449 | 0.6888 | 0.6098 | 0.6469 | 0.8468 |
| 7.0 | 434 | 0.0483 | 0.6611 | 0.6298 | 0.6451 | 0.8498 |
| 8.0 | 496 | 0.0497 | 0.6529 | 0.6557 | 0.6543 | 0.8531 |
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}