Views
No views yet
microsoft/Multilingual-MiniLM-L12-H384 for three-class sentiment classification of Pakistani news coverage of the Aurat March feminist movement.Oppositional · Supportive · Neutral1from transformers import pipeline
2
3classifier = pipeline(
4 "sentiment-analysis",
5 model="aakashMeghwar01/aurat-march-sentiment-minilm"
6)
7
8# English example
9classifier("The Aurat March is an important movement for women's rights in Pakistan")
10# → [{'label': 'Supportive', 'score': 0.87}]
11
12# Urdu example
13classifier("عورت مارچ کے نعرے اسلامی اقدار کے خلاف ہیں")
14# → [{'label': 'Oppositional', 'score': 0.79}]| Class | Precision | Recall | F1 | Support |
|---|---|---|---|---|
| Oppositional | 0.89 | 0.81 | 0.85 | 21 |
| Supportive | 0.83 | 0.88 | 0.86 | 17 |
| Neutral | 0.67 | 0.75 | 0.71 | 8 |
| Weighted avg | 0.83 | 0.83 | 0.83 | 46 |
microsoft/Multilingual-MiniLM-L12-H384| ID | Label | Description |
|---|---|---|
| 0 | Oppositional | Article frames the Aurat March negatively |
| 1 | Supportive | Article frames the Aurat March positively |
| 2 | Neutral | Procedural/balanced reporting |
Meghwar, A. (2025). Compact Transformer-Based Sentiment Analysis of Aurat March
Media Coverage in Urdu and English. MA Thesis, HSE University Nizhny Novgorod.
Model: https://huggingface.co/aakashMeghwar01/aurat-march-sentiment-minilm1from transformers import pipeline
2classifier = pipeline("sentiment-analysis", model="aakashMeghwar01/aurat-march-sentiment-minilm")
3# Example Urdu input
4classifier("عورت مارچ خواتین کے حقوق کی ایک اہم تحریک ہے")