Skip to content

Commit 6627891

Browse files
committed
new pictures
1 parent 5df9234 commit 6627891

File tree

16 files changed

+144
-121
lines changed

16 files changed

+144
-121
lines changed

_bibliography/references.bib

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ @inproceedings{
66
author={Nimrah Mustafa and Rebekka Burkholz},
77
booktitle={Forty-first International Conference on Machine Learning},
88
year={2024},
9-
url={https://openreview.net/forum?id=Sjv5RcqfuH}
9+
url={https://openreview.net/forum?id=Sjv5RcqfuH},
10+
pdf={https://openreview.net/pdf?id=Sjv5RcqfuH},
11+
abstract={Graph Attention Networks (GATs) are designed to provide flexible neighborhood aggregation that assigns weights to neighbors according to their importance. In practice, however, GATs are often unable to switch off task-irrelevant neighborhood aggregation, as we show experimentally and analytically. To address this challenge, we propose GATE, a GAT extension that holds three major advantages: i) It alleviates over-smoothing by addressing its root cause of unnecessary neighborhood aggregation. ii) Similarly to perceptrons, it benefits from higher depth as it can still utilize additional layers for (non-)linear feature transformations in case of (nearly) switched-off neighborhood aggregation. iii) By down-weighting connections to unrelated neighbors, it often outperforms GATs on real-world heterophilic datasets. To further validate our claims, we construct a synthetic test bed to analyze a model's ability to utilize the appropriate amount of neighborhood aggregation, which could be of independent interest.},
12+
code={https://github.com/RelationalML/GATE}
1013
}
1114

1215
@inproceedings{

_data/team_members.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
members:
1212
- name: Dr. Chao Zhou
1313
last_name: Zhou
14-
photo:
14+
photo: chao.zhou.jpg
1515
start_date: May 2024
1616
1717
url: https://chaoedisonzhouucl.github.io/
@@ -58,6 +58,14 @@
5858
5959
url: https://cispa.de/en/people/c01rani
6060

61+
- name: Dong Sun
62+
last_name: Sun
63+
photo: dong.sun.jpg
64+
role: PhD student
65+
start_date: Jul 2024
66+
67+
url: https://cispa.de/en/people/c01dosu
68+
6169
- role: Research assistants (HiWis)
6270
members:
6371
- name: Adarsh Jamadandi
@@ -74,4 +82,4 @@
7482
role: Research assistant
7583
start_date: Aug 2023
7684
77-
url: https://cispa.de/en/people/c02hane
85+
url: https://nelaturuharsha.github.io/

_includes/footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<div class="row">
55
<div class="col-sm-6">
66
<p>&copy 2024 Relational ML Lab.</p>
7-
<p>We are part of the <a href="https://cispa.de//">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de/">Saarland University</a> campus.</p>
7+
<p>We are part of the <a href="https://cispa.de">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de">Saarland University</a> campus.</p>
88
</div>
99
<div class="col-sm-6">
1010
<p>Contact:</p>
1111
<p>Stuhlsatzenhaus 5, 66123 Saarbrücken, Germany<br>
12-
(<a href="https://goo.gl/maps/KpzD1sq7HrvULVn7A">Maps</a>, <a href="https://cispa.de/en/contact#location">Directions</a>)</p>
12+
(<a href="https://cispa.de/en/contact#location">Directions</a>)</p>
1313
</div>
1414
</div>
1515
</div>

_layouts/default.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
{% include head.html %}
55

66
<body>
7+
<div style="display: flex; flex-direction: column; width:100%;height: 100%;">
78

89
{% include header.html %}
910

@@ -14,6 +15,7 @@
1415
</div>
1516

1617
{% include footer.html %}
18+
</div>
1719

1820
</body>
1921

_pages/team.md

Lines changed: 22 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -8,99 +8,53 @@ permalink: /team/
88

99
# Team Members
1010

11+
{% assign first = 0 %}
1112
{% for group in site.data.team_members %}
1213
{% assign number_printed = 0 %}
13-
### {{group.role}}
1414
{% for member in group.members %}
1515

1616
{% assign even_odd = number_printed | modulo: 2 %}
17-
18-
{% if even_odd == 0 %}
17+
{% if even_odd == 0 and first != 1 %}
1918
<div class="row">
2019
{% endif %}
2120

21+
{% if forloop.first and first > 1 %}
22+
<h3 style="margin-left:16px;" >{{group.role}}</h3>
23+
{% endif %}
24+
2225
<div class="col-sm-6 clearfix">
26+
27+
{% if first < 2 %}
28+
<h3>{{group.role}}</h3>
29+
{% endif %}
30+
2331
{% if member.photo %}
2432
<img src="{{ site.url }}{{ site.baseurl }}/images/team/{{ member.photo }}"
25-
class="img-responsive" width="20%" style="float: left; margin: 6px 22px 24px 0;" />
33+
class="img-responsive" width="20%" style="float: left; margin: 0px 22px 24px 0;" />
2634
{% else %}
2735
<img src="{{ site.url }}{{ site.baseurl }}/images/team/blank.jpg"
28-
class="img-responsive" width="20%" style="float: left; margin: 6px 22px 24px 0;" />
36+
class="img-responsive" width="20%" style="float: left; margin: 0px 22px 24px 0;" />
2937
{% endif %}
38+
{% if first < 2 %}
39+
<h4 style="margin-top:22px;">{{ member.name }}</h4>
40+
{% else %}
3041
<h4>{{ member.name }}</h4>
42+
{% endif %}
3143
[Homepage]({{ member.url }})
3244
| [Email](mailto:{{ member.email }})
45+
<br>
46+
<i>since {{ member.start_date }}</i>
3347
</div>
3448

35-
{% assign number_printed = number_printed | plus: 1 %}
36-
37-
{% if even_odd == 1 %}
38-
</div>
39-
{% endif %}
40-
41-
{% endfor %}
42-
43-
{% assign even_odd = number_printed | modulo: 2 %}
44-
{% if even_odd == 1 %}
49+
{% if even_odd == 1 or forloop.last and first != 0 %}
4550
</div>
4651
{% endif %}
47-
{% endfor %}
48-
49-
50-
{% if site.data.students.size > 0 %}
51-
## Master and Bachelor Students
52-
{% assign number_printed = 0 %}
53-
{% for member in site.data.students %}
54-
55-
{% assign even_odd = number_printed | modulo: 2 %}
56-
57-
{% if even_odd == 0 %}
58-
<div class="row">
59-
{% endif %}
60-
61-
<div class="col-sm-6 clearfix">
62-
<h4>{{ member.name }}</h4>
63-
<i>{{ member.info }} <!-- <br>email: <{{ member.email }}></i> -->
64-
<ul style="overflow: hidden">
65-
66-
{% if member.number_educ == 1 %}
67-
<li> {{ member.education1 }} </li>
68-
{% endif %}
69-
70-
{% if member.number_educ == 2 %}
71-
<li> {{ member.education1 }} </li>
72-
<li> {{ member.education2 }} </li>
73-
{% endif %}
74-
75-
{% if member.number_educ == 3 %}
76-
<li> {{ member.education1 }} </li>
77-
<li> {{ member.education2 }} </li>
78-
<li> {{ member.education3 }} </li>
79-
{% endif %}
80-
81-
{% if member.number_educ == 4 %}
82-
<li> {{ member.education1 }} </li>
83-
<li> {{ member.education2 }} </li>
84-
<li> {{ member.education3 }} </li>
85-
<li> {{ member.education4 }} </li>
86-
{% endif %}
87-
88-
</ul>
89-
</div>
9052

9153
{% assign number_printed = number_printed | plus: 1 %}
92-
93-
{% if even_odd == 1 %}
94-
</div>
95-
{% endif %}
54+
{% assign first = first | plus: 1 %}
9655

9756
{% endfor %}
98-
99-
{% assign even_odd = number_printed | modulo: 2 %}
100-
{% if even_odd == 1 %}
101-
</div>
102-
{% endif %}
103-
{% endif %}
57+
{% endfor %}
10458

10559
{% if site.data.alumni_members.size > 0 %}
10660

_site/404.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131

3232
<body>
33+
<div style="display: flex; flex-direction: column; width:100%;height: 100%;">
3334

3435
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
3536
<div class="container-fluid">
@@ -76,17 +77,18 @@
7677
<div class="row">
7778
<div class="col-sm-6">
7879
<p>&copy 2024 Relational ML Lab.</p>
79-
<p>We are part of the <a href="https://cispa.de//">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de/">Saarland University</a> campus.</p>
80+
<p>We are part of the <a href="https://cispa.de">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de">Saarland University</a> campus.</p>
8081
</div>
8182
<div class="col-sm-6">
8283
<p>Contact:</p>
8384
<p>Stuhlsatzenhaus 5, 66123 Saarbrücken, Germany<br>
84-
(<a href="https://goo.gl/maps/KpzD1sq7HrvULVn7A">Maps</a>, <a href="https://cispa.de/en/contact#location">Directions</a>)</p>
85+
(<a href="https://cispa.de/en/contact#location">Directions</a>)</p>
8586
</div>
8687
</div>
8788
</div>
8889
</div>
8990
</div>
91+
</div>
9092

9193
</body>
9294

_site/images/team/chao.zhou.jpg

27.7 KB
Loading

_site/images/team/dong.sun.jpg

27.1 KB
Loading

_site/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131

3232
<body>
33+
<div style="display: flex; flex-direction: column; width:100%;height: 100%;">
3334

3435
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
3536
<div class="container-fluid">
@@ -158,17 +159,18 @@ <h3>News</h3>
158159
<div class="row">
159160
<div class="col-sm-6">
160161
<p>&copy 2024 Relational ML Lab.</p>
161-
<p>We are part of the <a href="https://cispa.de//">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de/">Saarland University</a> campus.</p>
162+
<p>We are part of the <a href="https://cispa.de">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de">Saarland University</a> campus.</p>
162163
</div>
163164
<div class="col-sm-6">
164165
<p>Contact:</p>
165166
<p>Stuhlsatzenhaus 5, 66123 Saarbrücken, Germany<br>
166-
(<a href="https://goo.gl/maps/KpzD1sq7HrvULVn7A">Maps</a>, <a href="https://cispa.de/en/contact#location">Directions</a>)</p>
167+
(<a href="https://cispa.de/en/contact#location">Directions</a>)</p>
167168
</div>
168169
</div>
169170
</div>
170171
</div>
171172
</div>
173+
</div>
172174

173175
</body>
174176

_site/news.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131

3232
<body>
33+
<div style="display: flex; flex-direction: column; width:100%;height: 100%;">
3334

3435
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
3536
<div class="container-fluid">
@@ -122,17 +123,18 @@ <h4>24 April 2023</h4>
122123
<div class="row">
123124
<div class="col-sm-6">
124125
<p>&copy 2024 Relational ML Lab.</p>
125-
<p>We are part of the <a href="https://cispa.de//">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de/">Saarland University</a> campus.</p>
126+
<p>We are part of the <a href="https://cispa.de">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de">Saarland University</a> campus.</p>
126127
</div>
127128
<div class="col-sm-6">
128129
<p>Contact:</p>
129130
<p>Stuhlsatzenhaus 5, 66123 Saarbrücken, Germany<br>
130-
(<a href="https://goo.gl/maps/KpzD1sq7HrvULVn7A">Maps</a>, <a href="https://cispa.de/en/contact#location">Directions</a>)</p>
131+
(<a href="https://cispa.de/en/contact#location">Directions</a>)</p>
131132
</div>
132133
</div>
133134
</div>
134135
</div>
135136
</div>
137+
</div>
136138

137139
</body>
138140

_site/openings.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131

3232
<body>
33+
<div style="display: flex; flex-direction: column; width:100%;height: 100%;">
3334

3435
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
3536
<div class="container-fluid">
@@ -113,17 +114,18 @@ <h3 id="possible-research-topics">Possible research topics</h3>
113114
<div class="row">
114115
<div class="col-sm-6">
115116
<p>&copy 2024 Relational ML Lab.</p>
116-
<p>We are part of the <a href="https://cispa.de//">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de/">Saarland University</a> campus.</p>
117+
<p>We are part of the <a href="https://cispa.de">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de">Saarland University</a> campus.</p>
117118
</div>
118119
<div class="col-sm-6">
119120
<p>Contact:</p>
120121
<p>Stuhlsatzenhaus 5, 66123 Saarbrücken, Germany<br>
121-
(<a href="https://goo.gl/maps/KpzD1sq7HrvULVn7A">Maps</a>, <a href="https://cispa.de/en/contact#location">Directions</a>)</p>
122+
(<a href="https://cispa.de/en/contact#location">Directions</a>)</p>
122123
</div>
123124
</div>
124125
</div>
125126
</div>
126127
</div>
128+
</div>
127129

128130
</body>
129131

_site/publications/index.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131

3232
<body>
33+
<div style="display: flex; flex-direction: column; width:100%;height: 100%;">
3334

3435
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
3536
<div class="container-fluid">
@@ -77,6 +78,7 @@ <h1 id="publications">Publications</h1>
7778
<option value="Rubio-Madrigal">Celia Rubio-Madrigal</option>
7879
<option value="Jacobs">Tom Jacobs</option>
7980
<option value="Nittala">Rahul Nittala</option>
81+
<option value="Sun">Dong Sun</option>
8082
<option value="Jamadandi">Adarsh Jamadandi</option>
8183
<option value="Nelaturu">Harsha Nelaturu</option>
8284
</select></p>
@@ -110,17 +112,23 @@ <h1 id="publications">Publications</h1>
110112

111113
<!-- Links/Buttons -->
112114
<div class="links"><a class="conf btn btn-sm z-depth-0">ICML</a><a class="bibtex btn btn-sm z-depth-0" role="button">Bib</a>
115+
<a class="abstract btn btn-sm z-depth-0" role="button">Abs</a>
116+
<a href="https://openreview.net/pdf?id=Sjv5RcqfuH" class="btn btn-sm z-depth-0" role="button">PDF</a>
117+
<a href="https://github.com/RelationalML/GATE" class="btn btn-sm z-depth-0" role="button">Code</a>
113118
</div>
114119

115120

116-
<!-- Hidden bibtex block -->
121+
<!-- Hidden abstract block -->
122+
<div class="abstract hidden">
123+
<p>Graph Attention Networks (GATs) are designed to provide flexible neighborhood aggregation that assigns weights to neighbors according to their importance. In practice, however, GATs are often unable to switch off task-irrelevant neighborhood aggregation, as we show experimentally and analytically. To address this challenge, we propose GATE, a GAT extension that holds three major advantages: i) It alleviates over-smoothing by addressing its root cause of unnecessary neighborhood aggregation. ii) Similarly to perceptrons, it benefits from higher depth as it can still utilize additional layers for (non-)linear feature transformations in case of (nearly) switched-off neighborhood aggregation. iii) By down-weighting connections to unrelated neighbors, it often outperforms GATs on real-world heterophilic datasets. To further validate our claims, we construct a synthetic test bed to analyze a model’s ability to utilize the appropriate amount of neighborhood aggregation, which could be of independent interest.</p>
124+
</div><!-- Hidden bibtex block -->
117125
<div class="bibtex hidden">
118126
<figure class="highlight"><pre><code class="language-bibtex" data-lang="bibtex"><span class="nc">@inproceedings</span><span class="p">{</span><span class="nl">mustafa2024gate</span><span class="p">,</span>
119127
<span class="na">title</span> <span class="p">=</span> <span class="s">{{GATE}: How to Keep Out Intrusive Neighbors}</span><span class="p">,</span>
120128
<span class="na">author</span> <span class="p">=</span> <span class="s">{Mustafa, Nimrah and Burkholz, Rebekka}</span><span class="p">,</span>
121129
<span class="na">booktitle</span> <span class="p">=</span> <span class="s">{Forty-first International Conference on Machine Learning}</span><span class="p">,</span>
122130
<span class="na">year</span> <span class="p">=</span> <span class="s">{2024}</span><span class="p">,</span>
123-
<span class="na">url</span> <span class="p">=</span> <span class="s">{https://openreview.net/forum?id=Sjv5RcqfuH}</span>
131+
<span class="na">url</span> <span class="p">=</span> <span class="s">{https://openreview.net/forum?id=Sjv5RcqfuH}</span><span class="p">,</span>
124132
<span class="p">}</span></code></pre></figure>
125133
</div>
126134
</div>
@@ -472,17 +480,18 @@ <h1 id="publications">Publications</h1>
472480
<div class="row">
473481
<div class="col-sm-6">
474482
<p>&copy 2024 Relational ML Lab.</p>
475-
<p>We are part of the <a href="https://cispa.de//">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de/">Saarland University</a> campus.</p>
483+
<p>We are part of the <a href="https://cispa.de">CISPA Helmholtz Center for Information Security</a>, at the <a href="https://www.uni-saarland.de">Saarland University</a> campus.</p>
476484
</div>
477485
<div class="col-sm-6">
478486
<p>Contact:</p>
479487
<p>Stuhlsatzenhaus 5, 66123 Saarbrücken, Germany<br>
480-
(<a href="https://goo.gl/maps/KpzD1sq7HrvULVn7A">Maps</a>, <a href="https://cispa.de/en/contact#location">Directions</a>)</p>
488+
(<a href="https://cispa.de/en/contact#location">Directions</a>)</p>
481489
</div>
482490
</div>
483491
</div>
484492
</div>
485493
</div>
494+
</div>
486495

487496
</body>
488497

0 commit comments

Comments
 (0)