Skip to content

Commit

Permalink
new events and some polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
maurapintor committed Nov 23, 2023
1 parent 1c69aab commit f8eb477
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 50 deletions.
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ linkedin_username: MLSec
linkedin_id: 77059723

address: |
University of Cagliari
Cagliari (Italy)
University of Cagliari & University of Genoa
# Set your Google Analytics tracking ID (set up yours at http://www.google.com/analytics/)
# google_analytics: UA-XXXXXXXX-X
Expand Down
9 changes: 0 additions & 9 deletions _events/_new_event.md

This file was deleted.

11 changes: 11 additions & 0 deletions _events/boenisch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
type: events
date: 2023-12-07T17:00:00+1:00
speaker: Franziska Boenisch
affiliation: CISPA
title: "Can individuals trust privacy mechanisms for machine learning? A case study of federated learning"
bio: "Franziska is a tenure-track faculty at the CISPA Helmholtz Center for Information Security where she co-leads the SprintML lab. Before, she was a Postdoctoral Fellow at the University of Toronto and Vector Institute in Toronto advised by Prof. Nicolas Papernot. Her current research centers around private and trustworthy machine learning with a focus on decentralized applications. Franziska obtained her Ph.D. at the Computer Science Department at Freie University Berlin, where she pioneered the notion of individualized privacy in machine learning. During her Ph.D., Franziska was a research associate at the Fraunhofer Institute for Applied and Integrated Security (AISEC), Germany. She received a Fraunhofer TALENTA grant for outstanding female early career researchers and the German Industrial Research Foundation prize for her research on machine learning privacy."
abstract: "What is the trusted computing base for privacy? This talk will answer this question from the perspective of individual users. I will first focus on a case study of federated learning (FL). My work shows that vanilla FL currently does not provide meaningful privacy for individual users who cannot trust the central server orchestrating the FL protocol. This is because gradients of the shared model directly leak individual training data points.The resulting leakage can be amplified by a malicious attacker through small, targeted manipulations of the model weights. My work thus shows that the protection that vanilla FL claims to offer is but a thin facade: data may never \"leave'' personal devices explicitly but it certainly does so implicitly through gradients. Then, I will show that the leakage is still exploitable for what is considered the most private instantiation of FL: a protocol that combines secure aggregation with differential privacy. This highlights that individuals unable to trust the central server should instead rely on verifiable mechanisms to obtain privacy. I will conclude my talk with an outlook on how such verifiable mechanisms can be designed in the future, as well as how my work generally advances the ability to audit privacy mechanisms. "
youtube:
zoom: https://us02web.zoom.us/meeting/register/tZcqcu6orjIjEtbYTZTIdikT4rCZM1F3zk4h
---
2 changes: 1 addition & 1 deletion _includes/announcements.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h2>Updates</h2>
{% for n in all_events_sorted limit:7 %}
<li class="no-p-margin">
{% if n.type %}
New event! {{ n.description }} is coming to our seminar on {{ n.date | date_to_string: "ordinal", "US" }}!
New event! {{ n.speaker }} is coming to our seminar on {{ n.date | date_to_string: "ordinal", "US" }}!
{% else %}
{{ n.content }}
{% endif %}
Expand Down
8 changes: 5 additions & 3 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@

<p class="text">
{{ site.address | newline_to_br }}

{% if site.schoolurl %}
<a href="{{site.schoolurl}}">
<i class="fas fa-globe" style="color:gray"></i> {{site.schoolurl}}
</a>

</a><br>
{% endif %}
</div>
<small>Thanks to: <a href="https://www.elsa-ai.eu" target="_blank">Elsa Project</a></small>

</div>

<div class="footer-col footer-col-2">
<p>Follow us!</p>
Expand Down
11 changes: 0 additions & 11 deletions _includes/schedule_row_past.html

This file was deleted.

10 changes: 0 additions & 10 deletions _includes/schedule_row_raw_event.html

This file was deleted.

40 changes: 26 additions & 14 deletions _layouts/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,32 @@ <h1 class="post-title">Next events</h1>
<div class="home" style="font-size: 0.8em;">
{% if site.events.size != 0 %}

<ul class="responsive-table" style="margin-left: 0;">
<li class="table-header">
<div class="col col-1">Event</div>
<div class="col col-1-2">Date</div>
<div class="col col-2">Description</div>
<div class="col col-4">Link</div>
</li>

{% for event in site.events %}
<li class="table-row table-row-{{ event.type}}">
{% include schedule_row_{{ event.type }}.html event=event %}
</li>
{% endfor %}

{% for event in site.events %}

{{ event.date | date: "%A, %B %d, %y %Y %H:%M %Z" }}<br> <a href="{{event.zoom}}" target="_blank">Click here to register!</a>
<div class="content">
<span style="font-weight: bold;">{{ event.title }}</span><br>
<details>
<summary>
<strong>Speaker:</strong> {{ event.speaker }} ({{event.affiliation}})
</summary>
<small>
{{event.bio}}
</small>
</details>

<br/>
<small>{{event.abstract}}</small>

{% if event.content != '' %}
<br/>
<div class="markdown-content" style="margin-top: 3px;">
{{ event.content }}
</div>
{% endif %}
</div>

{% endfor %}

</ul>
{% else %}
Expand Down

0 comments on commit f8eb477

Please sign in to comment.