metadata
language: en
license: mit
library_name: pytorch
tags:
- climate-journalism
- cjis-copilot
- themes
- multi-label-classification
CJIS Co-pilot: Themes Classifier
Part of the Climate Journalism Intelligence System (CJIS) v3.1 "Journalistic Co-pilot".
Architecture
- Base: Climate-pretrained DeBERTa (MLM on 20k climate articles)
- Head: Specialist classifier for themes
Task
Themes classification for climate journalism articles.
Labels (10)
emissions_carbon_pricingclimate_finance_developmentfood_security_public_healthrenewable_energy_techfossil_fuel_industrygrid_infrastructurejust_transitionclimate_litigationextreme_weather_eventsbiodiversity_ecosystems
Usage
from transformers import pipeline
classifier = pipeline(
"text-classification",
model="maai-org/cjis-themes-classifier",
return_all_scores=True
)
result = classifier("Your climate article here...")