File size: 899 Bytes
a5343ef
 
 
 
 
 
 
 
 
 
 
 
 
 
77cd0d1
a5343ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
language: en
license: mit
library_name: pytorch
tags:
- climate-journalism
- cjis-copilot
- frames
- multi-label-classification
# Base: Custom MLM-trained DeBERTa (not on HuggingFace Hub)
---

# CJIS Co-pilot: Frames 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 frames

## Task
Frames classification for climate journalism articles.

## Labels (8)
- `scientific`
- `crisis`
- `economic_solutions`
- `political`
- `justice_responsibility`
- `health_ecological`
- `security`
- `human_interest`

## Usage
```python
from transformers import pipeline

classifier = pipeline(
    "text-classification",
    model="maai-org/cjis-frames-classifier",
    return_all_scores=True
)

result = classifier("Your climate article here...")