-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtasks.html
More file actions
103 lines (88 loc) · 6.02 KB
/
Copy pathtasks.html
File metadata and controls
103 lines (88 loc) · 6.02 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>POLAR @ SemEval 2025</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/style.css" />
</head>
<body>
<!-- TABS NAVIGATION -->
<nav class="nav nav-tabs justify-content-center shadow-sm bg-white sticky-top">
<a class="nav-link" href="index.html">About</a>
<a class="nav-link active" href="tasks.html">Tasks</a>
<a class="nav-link" href="participation.html">Participation</a>
<a class="nav-link" href="organizers.html">Organizers</a>
</nav>
<section class="the-task" style="margin-top: 2rem;">
<div class="container">
<h2>The Task</h2>
<p>Polarization refers to the division of opinions into two sharply contrasting groups, often accompanied by hostility, intolerance, or exclusion. In today's digital era, polarization is intensifying across platforms and geographies, influencing public discourse, exacerbating conflicts, and contributing to societal fragmentation.</p>
<p>This shared task is the first SemEval initiative focused on polarization, aiming to advance the computational understanding of how polarization manifests in text across multiple languages, cultures, and event types. Participants will develop models capable of detecting and interpreting polarization in a variety of online contexts.</p>
<p>The task centers on textual data collected from real-world events such as elections, international conflicts, social protests, and ideological debates. The primary goal is to evaluate systems’ ability to identify polarized content, classify its targets, and determine the linguistic expressions of polarization.</p>
<h3>Multilingual, Multicultural, and Multievent Scope</h3>
<p>To promote global inclusivity and cross-cultural representation, the dataset encompasses 15 languages, including many low-resource and underrepresented ones in mainstream NLP research.</p>
<p><strong>High-resource languages:</strong> English, German, Spanish, Arabic.</p>
<p><strong>Mid-resource languages:</strong> Urdu, Mozambican Portuguese, Amharic.</p>
<p><strong>Low-resource languages:</strong> Kinyarwanda, Hausa, Igbo, Twi, Swahili, isiXhosa, Zulu, Emakhuwa.</p>
<h3>Task Format and Subtasks</h3>
<p>Participants may choose to compete in one or more of three subtasks:</p>
<ol>
<li><strong>Subtask 1: Polarization Detection</strong> – Binary classification to determine whether a post contains polarized content (Polarized or Not Polarized).</li>
<li><strong>Subtask 2: Polarization Type Classification</strong> – Identify the target of polarization, including political groups, religious groups, racial/ethnic communities, gender identities, sexual orientations, or other domain-specific targets.</li>
<li><strong>Subtask 3: Manifestation Identification</strong> – Classify how polarization is expressed; multiple labels possible, such as stereotyping, vilification, dehumanization, deindividuation, extreme language, lack of empathy, invalidation.</li>
</ol>
<h3>Data Description</h3>
<p>The dataset is sourced from news websites, Reddit, blogs, Bluesky, and regional forums, covering event types like elections, conflicts, gender rights, migration, and more. Each language includes between 3,000 and 5,000 annotated instances.</p>
<p>Annotation tools used include Label Studio, Prolific, Potato, and Mechanical Turk.</p>
<p>Sample Inter-Annotator Agreement (IAA) scores indicate dataset quality: Amharic (kappa 0.49), Urdu (0.83), English (0.52).</p>
<p>The dataset is split into training, development, and test sets for system development and evaluation.</p>
<h3>Research Contributions</h3>
<p>This task aims to advance socially responsible AI by supporting NLP for low-resource languages and fostering explainable and inclusive NLP systems. It will help establish multilingual benchmarks for polarization detection, promoting fair and transparent computational approaches to understanding societal divisions.</p>
<h3>Timeline</h3>
<ul>
<li>Task announcement: June 2025</li>
<li>Data release: July 2025</li>
<li>Evaluation phase begins: September 2025</li>
<li>Submission deadline: October 2025</li>
<li>Paper submissions to SemEval: November 2025</li>
<li>SemEval Workshop at ACL: March or April 2026</li>
</ul>
<h3>Who Should Participate?</h3>
<p>This task welcomes participation from:</p>
<ul>
<li>NLP researchers and developers</li>
<li>Computational social science teams</li>
<li>Practitioners working on hate speech and misinformation</li>
<li>Peacebuilding and civil society organizations</li>
<li>Students and academics from cross-disciplinary backgrounds</li>
</ul>
<h3>Organizing Team</h3>
<p>The POLAR task is organized by researchers from:</p>
<ul>
<li>University of Hamburg</li>
<li>Bahir Dar University</li>
<li>Macquarie University</li>
<li>Imperial College London</li>
<li>University of Pretoria</li>
<li>Zayed University</li>
<li>Bayero University Kano</li>
<li>Northeastern University</li>
</ul>
<h3>Contact and Community</h3>
<p>For questions or to join the community, reach out via email at <a href="mailto:your-email@domain.com">your-email@domain.com</a>. Stay connected through the Slack channel, mailing list, and GitHub repository (links to be announced soon).</p>
</div>
</section>
<footer class="footer-section">
<div class="footer-container text-center">
<img src="assets/logo-small.png" alt="POLAR Task Logo" style="width: 80px; height: auto; margin-bottom: 10px;" />
<p>© 2026 POLAR Shared Task. All rights reserved.</p>
<p>Made with ❤️ by the POLAR Team</p>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>