Views
No views yet
| Label | Examples |
|---|---|
| Asset | "water resources", "raw material", "mental health" |
| Body Part | "deep tissue compartment", "leaves", "plant leaves" |
| Body of Water | "rivers", "peripheral rivers", "Dhaleshwari river" |
| Chemical | "domoic acid", "marine algal toxin", "cathode materials" |
| Disease | "chronic epileptic syndrome", "seizures", "acute neurologic signs" |
| Ecosystem | "polluted environment", "Tropical montane cloud forest", "cloud forests" |
| Energy Source | "battery cells", "12-cell series battery-pack prototype", "fossil fuels" |
| Field of Study | "reference laboratory", "veterinary medicine", "study" |
| Geographical Feature | "heterogenous topography", "mountainous regions", "low point" |
| Intellectual Artefact | "data", "Veterinary medical records", "Daily husbandry records" |
| Location | "Westbrook", "wild", "beaches" |
| Mathematical Expression | "Stepwise machine hour constraints", "gradient", "difference" |
| Measuring Device | "MRI scan", "station", "EEG" |
| Meteorological Phenomenon | "climate change", "climatic variability", "rainfall" |
| Method | "serum monitoring", "clinical efficacy", "dosing" |
| Natural Disaster | "seasonal air pollution", "environmental pollution", "heavy metal contamination" |
| Natural Phenomenon | "changing ocean conditions", "algal blooms", "biochemical changes" |
| Organism | "species", "Zalophus californianus", "California sea lions" |
| Organization | "long-term care facility", "reference laboratory", "NOAA National Marine Fisheries Service" |
| Other | "marine mammal health", "reports", "normal eating" |
| Person | "staff", "clinicians", "Clinicians" |
| Physical Artefact | "EVs", "paved east – west road", "electric vehicle" |
| Physical Phenomenon | "structural abnormalities", "normal food intake", "seasonal changes" |
| Policy | "energy security", "pollution", "safety" |
| Quantity | "200 mAhg − 1", ">", "energy density" |
| Satellite | "satellites", "Tropical Rainfall Measuring Mission", "TRMM" |
| System | "system structure", "climate", "global overturning circulation" |
| Time Period | "101 days", "several decades", "periods of prolonged anorexia" |
| 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 |
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-clirebert_clirevocab_uncased")
5
6# Run inference
7text = "The urgency of understanding complex, multi-scalar climate phenomena has led to rapid growth in research output."
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: multi-scalar | Label: Other | Score: 0.7188
14# Entity: climate phenomena | Label: Meteorological Phenomenon | Score: 0.3017
15# Entity: research output | Label: Other | Score: 0.50691from 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.1148 | 1.0 | 0.0014 | 0.0029 | 0.6081 |
| 2.0 | 124 | 0.0549 | 0.6834 | 0.3128 | 0.4291 | 0.7456 |
| 3.0 | 186 | 0.0435 | 0.6681 | 0.4534 | 0.5402 | 0.8038 |
| 4.0 | 248 | 0.0414 | 0.6655 | 0.5337 | 0.5924 | 0.8137 |
| 5.0 | 310 | 0.0486 | 0.6141 | 0.5638 | 0.5879 | 0.8213 |
| 6.0 | 372 | 0.0481 | 0.6406 | 0.5882 | 0.6133 | 0.8274 |
| 7.0 | 434 | 0.0485 | 0.6317 | 0.5882 | 0.6092 | 0.8328 |
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}