-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdates.html
More file actions
92 lines (85 loc) · 2.79 KB
/
Copy pathdates.html
File metadata and controls
92 lines (85 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Important Dates | POLAR @ 2026</title>
<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>
<nav class="nav nav-tabs justify-content-center shadow-sm bg-white sticky-top">
<a class="nav-link" href="index.html#about">About</a>
<a class="nav-link" 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="important-dates container py-5">
<div class="dates-header text-center mb-4">
<h2>📅 Important Dates – SemEval-2026</h2>
<p class="text-muted">Keep track of the key milestones for your participation in the Polar task.<br>All deadlines are <strong>11:59 PM AoE (Anywhere on Earth)</strong>.</p>
</div>
<div class="table-responsive">
<table class="dates-table table table-bordered">
<thead class="table-light">
<tr>
<th scope="col">📆 Date</th>
<th scope="col">📌 Event</th>
</tr>
</thead>
<tbody>
<tr>
<td>October 2025</td>
<td>Call for Participation Opens</td>
</tr>
<tr>
<td>December 2025</td>
<td>Trial Data Released</td>
</tr>
<tr>
<td>January 2026</td>
<td>Training Data Released</td>
</tr>
<tr>
<td>February 2026</td>
<td>Test Data Released</td>
</tr>
<tr>
<td>March 2026</td>
<td>System Submission Deadline</td>
</tr>
<tr>
<td>April 2026</td>
<td>Evaluation Results Released</td>
</tr>
<tr>
<td>May 2026</td>
<td>System Paper Submission Deadline</td>
</tr>
<tr>
<td>June 2026</td>
<td>Notification of Acceptance</td>
</tr>
<tr>
<td>July 2026</td>
<td>Camera-Ready Papers Due</td>
</tr>
<tr>
<td>August 2026</td>
<td>SemEval-2026 Workshop at [Conference Location TBD]</td>
</tr>
</tbody>
</table>
</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>