-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
75 lines (73 loc) · 3.5 KB
/
events.html
File metadata and controls
75 lines (73 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events - SaLM</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-container">
<img src="images/sciencespo_logo.png" alt="Sciences Po Logo" class="logo-left">
<h1>SaLM</h1>
<img src="images/inria_logo.png" alt="INRIA Logo" class="logo-right">
</div>
<p>Socially-Aware Language Models</p>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Upcoming Events</h2>
<div class="event-section">
<div class="event-item">
<h4>Annual SaLM Symposium</h4>
<p>September 2025</p>
<p>A symposium discussing the latest advancements in socially-aware NLP models.</p>
</div>
</div>
</section>
<section>
<h2>Past Events</h2>
<div class="event-section">
<div class="event-item">
<h4>SaLM Seminar</h4>
<p><strong>Date:</strong> November 21, 2024</p>
<p><strong>Location:</strong> Sciences Po</p>
<p><strong>Program:</strong></p>
<ul>
<li><strong>9:30 AM:</strong> Petit déjeuner et discours d’ouverture</li>
<li><strong>10:00 AM - 12:30 PM:</strong> Séance 1 - Présentations de:</li>
<ul>
<li>Djamé Seddah - Preventing Language Models Weaponization</li>
<li>Tim Faverjon - Identification and Reduction of Political Information in Algorithmic Representation on Recommender Systems</li>
<li>Carlo Satagiustina - Explaining One's Identity: Left-Right and Cross EU-Country Variation in Self-Representation on Social Media</li>
<li>Elena Cossu - Measuring Illiberalism Using Text Data</li>
</ul>
<li><strong>12:30 PM - 1:30 PM:</strong> Déjeuner</li>
<li><strong>1:30 PM - 4:00 PM:</strong> Séance 2 - Présentations de:</li>
<ul>
<li>Gabrielle Le Bellier - Metrics and Protocols for Measuring Bias in Language Models</li>
<li>Célia Nouri - Predicting Abusive Language in Reddit Conversations Using Graph Neural Networks</li>
<li>Manon Berriche - Tu crois que c’est vrai ? L’incursion de points d’arrêt dans les échanges en ligne</li>
<li>Salomé Do - Analyse Automatique de Contenu : Quand est-ce utile ?</li>
<li>Yaelle Zribi - Doing Joke Math: Analyse croisée de la gestuelle, des rires et des textes de comedy specials distribués par Netflix</li>
</ul>
<li><strong>4:00 PM:</strong> Remarques de clôture</li>
</ul>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 SaLM Project</p>
</footer>
</body>
</html>