CoolFace
Modelpublic

hanifsajid/deed-v01

sourceHugging Facemitupdated 10mo agoView on Hugging Face
0likes13downloads
Model Card

XLM-RoBERTa Large Fine-Tuned for DEED Multi-Class Classification

Model Description

This model is fine-tuned from xlm-roberta-large for multi-class classification of Democratic Erosion Event Dataset (DEED) events. It predicts one of four classes:

  • —0: Destabilizing Event
  • —1: Precursor
  • —2: Resistance
  • —3: Symptom

Intended Use

  • —Classify DEED-related textual data into four event types.
  • —Academic research or internal NLP pipelines.
  • —Not intended for critical real-world decision-making without further validation.

Metrics

LabelPrecisionRecallF1-ScoreSupport
Destabilizing Event (0)0.5980.3920.473125
Precursor (1)0.6590.7160.686675
Resistance (2)0.8460.8450.846645
Symptom (3)0.8000.7860.793805
Accuracy0.7600.7600.7602250
Macro Avg0.7260.6850.7002250
Weighted Avg0.7600.7600.7582250

Usage

python
from transformers import pipeline

classifier = pipeline("text-classification", model="hanifsajid/deed-v01")
result = classifier("Example text here")
print(result)