Instructions to use P0L3/CliReNER-nasa-smd-ibm-v0.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- SpanMarker
How to use P0L3/CliReNER-nasa-smd-ibm-v0.1 with SpanMarker:
from span_marker import SpanMarkerModel model = SpanMarkerModel.from_pretrained("P0L3/CliReNER-nasa-smd-ibm-v0.1") - Notebooks
- Google Colab
- Kaggle
SpanMarker-NASA-SMD-IBM for Climate Research NER
This model is a SpanMarker model fine-tuned for fine-grained Named Entity Recognition (NER) in the climate change research domain, extracting 28 distinct entity types. It utilizes the domain-specific nasa-impact/nasa-smd-ibm-v0.1 as the underlying encoder.
📌 Model Details
- Model Type: SpanMarker
- Encoder: nasa-impact/nasa-smd-ibm-v0.1
- Maximum Sequence Length: 512 tokens
- Maximum Entity Length: 14 words
- Language: English
- License: cc-by-sa-4.0
Model Labels
| Label | Examples |
|---|---|
| Asset | "water resources", "raw material", "mental health" |
| Body Part | "deep tissue compartment", "leaves", "plant leaves" |
| Body of Water | "rivers", "Dhaleshwari river", "peripheral rivers" |
| Chemical | "marine algal toxin", "cathode materials", "domoic acid" |
| Disease | "acute neurologic signs", "seizures", "chronic epileptic syndrome" |
| Ecosystem | "polluted environment", "cloud forests", "Tropical montane cloud forest" |
| Energy Source | "battery cells", "12-cell series battery-pack prototype", "fossil fuels" |
| Field of Study | "study", "reference laboratory", "veterinary medicine" |
| Geographical Feature | "heterogenous topography", "mountainous regions", "low point" |
| Intellectual Artefact | "Daily husbandry records", "Veterinary medical records", "data" |
| Location | "beaches", "wild", "Westbrook" |
| Mathematical Expression | "difference", "gradient", "Stepwise machine hour constraints" |
| Measuring Device | "EEG", "MRI scan", "station" |
| Meteorological Phenomenon | "rainfall", "climate change", "climatic variability" |
| Method | "dosing", "clinical efficacy", "serum monitoring" |
| Natural Disaster | "seasonal air pollution", "heavy metal contamination", "environmental pollution" |
| Natural Phenomenon | "changing ocean conditions", "algal blooms", "biochemical changes" |
| Organism | "Zalophus californianus", "species", "California sea lions" |
| Organization | "reference laboratory", "long-term care facility", "NOAA National Marine Fisheries Service" |
| Other | "reports", "normal eating", "marine mammal health" |
| Person | "staff", "clinicians", "Clinicians" |
| Physical Artefact | "electric vehicle", "EVs", "paved east – west road" |
| Physical Phenomenon | "structural abnormalities", "normal food intake", "seasonal changes" |
| Policy | "pollution", "energy security", "safety" |
| Quantity | "200 mAhg − 1", "energy density", ">" |
| Satellite | "Tropical Rainfall Measuring Mission", "TRMM", "satellites" |
| System | "climate", "global overturning circulation", "system structure" |
| Time Period | "several decades", "periods of prolonged anorexia", "101 days" |
🚀 Main Results (Selected Checkpoint)
This repository provides the best-performing checkpoint selected from 5 runs with different random seeds. While the internal training logs tracked performance on the validation split of CliReNERsilver, the final model selection and the metrics below are evaluated on the independent, expert-annotated CliReNERgold dataset.
| Metric | Score |
|---|---|
| Precision | 53.65 |
| Recall | 51.31 |
| F1 | 52.45 |
This checkpoint corresponds to the seed with the highest strict F1 on the gold evaluation set (Seed 5 - 131).
📊 Results Across Seeds
We fine-tuned the model using 5 different random seeds to assess the stability and robustness of the architecture on the domain-specific text.
| Seed | Precision | Recall | Strict F1 |
|---|---|---|---|
| 1 | 53.64 | 49.02 | 51.23 |
| 2 | 51.31 | 42.48 | 46.48 |
| 3 | 54.02 | 48.53 | 51.13 |
| 4 | 51.34 | 46.85 | 49.00 |
| 5 | 53.65 | 51.31 | 52.45 |
Summary:
- F1: mean = 50.06, std = 2.35
- Precision: mean = 52.79, std = 1.35
- Recall: mean = 47.64, std = 3.29
Model Selection Strategy: The uploaded checkpoint is the single best seed (highest strict F1 on the gold dataset), ensuring strong performance and high-fidelity alignment with domain-expert consensus.
📂 Dataset & Evaluation
- Training Dataset: CliReNERsilver
- Splits used: Stratified 80:10:10 ratio (Train/Validation/Test). The 80% split was used for training.
- Evaluation Dataset: CliReNERgold
- Splits used: Evaluated on the combined 192 sentences (expert-annotated via Weighted Expert Voting).
- Preprocessing:
- Texts were tokenized using the tokenizer corresponding to the nasa-impact/nasa-smd-ibm-v0.1 encoder.
- The dataset utilizes a flat NER schema (nested entities are excluded, and overlapping entities are resolved to the most relevant span).
- Metric Details:
- F1 type: Strict F1 (Entity-level exact match).
- Evaluation was performed ensuring entities match both the exact boundary span and the exact semantic label to be considered correct.
⚖️ Precision vs Recall Behavior
(Note to author: Describe the model’s tendency here based on your results. Example: "The model slightly favors recall over precision" or "Balanced precision and recall")
⚙️ Usage
Direct Use for Inference
Because this model was trained using the SpanMarker framework, it requires the span_marker library for inference.
pip install span_marker
from span_marker import SpanMarkerModel
# Download from the 🤗 Hub
model = SpanMarkerModel.from_pretrained("P0L3/CliReNER-nasa-smd-ibm-v0.1")
# Run inference
text = "These impacts are evident across all components of the Earth system."
entities = model.predict(text)
for entity in entities:
print(f"Entity: {entity['span']} | Label: {entity['label']} | Score: {entity['score']:.4f}")
# Entity: impacts | Label: Other | Score: 0.7324
# Entity: components | Label: Other | Score: 0.8189
# Entity: Earth system | Label: System | Score: 0.2412
Downstream Use
You can easily continue fine-tuning this model on your own dataset.
Click to expand
from span_marker import SpanMarkerModel, Trainer
from datasets import load_dataset
# Download from the 🤗 Hub
model = SpanMarkerModel.from_pretrained("your-huggingface-username/your-model-name")
# Specify a Dataset with "tokens" and "ner_tags" columns
dataset = load_dataset("your_custom_dataset")
# 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 Details
Training Set Metrics
| Training set | Min | Median | Max |
|---|---|---|---|
| Sentence length | 3 | 31.4819 | 97 |
| Entities per sentence | 1 | 7.0100 | 22 |
Training Hyperparameters
- learning_rate: 5e-05
- train_batch_size: 8
- eval_batch_size: 8
- seed: 131
- gradient_accumulation_steps: 2
- total_train_batch_size: 16
- optimizer: adamw_torch with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_ratio: 0.1
- num_epochs: 20
Training Results (CliReNERsilver Validation Split)
| Epoch | Step | Validation Loss | Validation Precision | Validation Recall | Validation F1 | Validation Accuracy |
|---|---|---|---|---|---|---|
| 1.0 | 62 | 0.1561 | 0.0 | 0.0 | 0.0 | 0.6075 |
| 2.0 | 124 | 0.1129 | 0.0 | 0.0 | 0.0 | 0.6075 |
| 3.0 | 186 | 0.0825 | 0.2476 | 0.0746 | 0.1147 | 0.6239 |
| 4.0 | 248 | 0.0596 | 0.5972 | 0.3042 | 0.4030 | 0.7359 |
| 5.0 | 310 | 0.0474 | 0.6068 | 0.5667 | 0.5861 | 0.8201 |
| 6.0 | 372 | 0.0470 | 0.6470 | 0.6126 | 0.6293 | 0.8377 |
| 7.0 | 434 | 0.0452 | 0.6276 | 0.6385 | 0.6330 | 0.8389 |
| 8.0 | 496 | 0.0486 | 0.6336 | 0.6499 | 0.6416 | 0.8434 |
| 9.0 | 558 | 0.0507 | 0.6374 | 0.6456 | 0.6415 | 0.8449 |
| 10.0 | 620 | 0.0513 | 0.6657 | 0.6284 | 0.6465 | 0.8480 |
Framework Versions
- Python: 3.10.19
- SpanMarker: 1.7.0
- Transformers: 4.50.0
- PyTorch: 2.9.1+cu126
- Datasets: 3.0.0
- Tokenizers: 0.21.4
📚 Citation
If you use this model or the CliReNER datasets in your research, please cite the project:
@misc{poleksic2026named,
author = {Poleksić, Andrija and Martinčić-Ipšić, Sanda},
title = {Named Entity Recognition for Climate Change Research},
year = {2026},
howpublished = {Research Square},
note = {Preprint}
}
Please also acknowledge the SpanMarker framework:
@software{Aarsen_SpanMarker,
author = {Aarsen, Tom},
license = {Apache-2.0},
title = {{SpanMarker for Named Entity Recognition}},
url = {https://github.com/tomaarsen/SpanMarkerNER}
}
- Downloads last month
- 7
Model tree for P0L3/CliReNER-nasa-smd-ibm-v0.1
Base model
nasa-impact/nasa-smd-ibm-v0.1Datasets used to train P0L3/CliReNER-nasa-smd-ibm-v0.1
P0L3/CliReNER_v_1_1_28_SILVER
Collection including P0L3/CliReNER-nasa-smd-ibm-v0.1
Evaluation results
- F1 on Unknownself-reported0.646
- Precision on Unknownself-reported0.666
- Recall on Unknownself-reported0.628