Skip to content

Commit 73e243a

Browse files
committed
updated text andsocial links
1 parent 7904068 commit 73e243a

File tree

2 files changed

+47
-45
lines changed

2 files changed

+47
-45
lines changed

_data/navigation.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ social:
1515
- title: "<i class='ai ai-google-scholar'></i>"
1616
url: "https://scholar.google.com/citations?user=Y6wCaD4AAAAJ&hl=en"
1717
- title: "<i class='fa-brands fa-x-twitter'></i>"
18-
url: "https://x.com/yourusername"
18+
url: https://x.com/CeciCurrl"
1919
- title: "<i class='fa-brands fa-bluesky'></i>"
20-
url: "https://bsky.app/profile/yourhandle.bsky.social"
20+
url: "https://bsky.app/profile/ceciliacurreli.bsky.social"
21+

_layouts/welcome.html

Lines changed: 44 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ <h1 class="welcome-name">{{ site.author.name | default: "Cecilia Curreli" }}</h1
2222
<img src="{{ '/assets/images/profile-photo.jpg' | relative_url }}" alt="Profile picture" class="about-photo">
2323
</div>
2424
I am pursuing my PhD at the Technical University of Munich with Prof. Cremers - Check out the awesome work of the <a href="https://cvg.cit.tum.de/publications">Computer Vision Group</a>!
25-
My research focuses on generative AI, in particular generative diffusion models for 4D computer vision and 3D human motion prediction. What intrigues me is the probabilistic nature of reality and its connection to temporal dimension.
25+
My research focuses on generative AI, in particular generative diffusion models for 4D computer vision and 3D human motion prediction. What intrigues me is the probabilistic nature of reality and what we still can learn from the temporal dimension.
2626
<br><br>
27-
In the spring of 2025 I joined as a visiting researcher the Scene Representation group of Prof. Sitzmann at CSAIL, MIT.
27+
This spring I joined the Scene Representation group of Prof. Vincent Sitzmann at CSAIL, MIT, as a visiting researcher.
2828
I am a junior member of the <a href="https://mcml.ai/">Munich Center of Machine Learning</a>, one of six national AI Competence Centers in Germany.
2929
<br><br>
3030
Before being part of CVG, I joined the <a href="https://www.satoh-lab.nii.ac.jp/">Lab</a> of Prof. Shin'ichi Satoh at the University of Tokyo and National Institute of Informatics in Tokyo.
31-
I completed my Master's thesis with Prof. Nießner and my Bachelor's degree with Prof. Leal Taixè at TUM. With Prof. Steffen Glaser (Munich Quantum Valley initiative and Bavarian NMR Center), I pursued research related to sequences of quantum particles. In 2018, I was part of the Chinese Academy of Sciences in Suzhou as an intern with Prof. Xiaodong.
32-
Two times have been a recipient of scholarships from the German Academic Exchange Service (DAAD), and I have been awarded the FemTec scholarship during my Master's studies.
31+
I completed my Master's thesis with Prof. Matthias Nießner and my Bachelor's degree with Prof. Leal Taixè. With Prof. Steffen Glaser (Munich Quantum Valley initiative and Bavarian NMR Center), I pursued research related to sequences of quantum particles. In 2018, I was part of the Chinese Academy of Sciences in Suzhou as an intern with Prof. Xiaodong.
32+
I have been a recipient of two scholarships from the German Academic Exchange Service (DAAD), and have been awarded the FemTec scholarship during my Master's studies.
3333

3434
</div>
3535
</section>
@@ -58,46 +58,47 @@ <h2>Updates</h2>
5858
<h2>Publications</h2>
5959

6060
<div class="publications-preview">
61-
{% assign latest_pubs = site.publications | reverse %}
62-
{% for publication in latest_pubs limit:5 %}
63-
<div class="publication-block">
64-
{% assign base_link = publication.external_link | default: publication.permalink %}
65-
{% assign image = base_link | append: publication.image %}
66-
<div class="publication-thumbnail">
67-
<a href="{{ base_link }}">
68-
<img src="{{ image }}" alt="{{ publication.title }}">
69-
</a>
70-
</div>
61+
{% assign latest_pubs = site.publications | reverse %}
62+
{% for publication in latest_pubs limit:5 %}
63+
<div class="publication-block">
64+
{% assign base_link = publication.external_link | default: publication.permalink %}
65+
{% assign image = base_link | append: publication.image %}
66+
<div class="publication-thumbnail">
67+
<a href="{{ base_link }}">
68+
<img src="{{ image }}" alt="{{ publication.title }}">
69+
</a>
70+
</div>
71+
72+
<div class="publication-data">
73+
<h3 class="publication-title">
74+
<a href="{{ base_link }}">{{ publication.title }}</a>
75+
</h3>
76+
<div class="publication-venue">
77+
<span>{{ publication.venue }}</span>
78+
{% for award in publication.awards %}
79+
<span class="publication-venue-emph">{{ award }}</span>
80+
{% endfor %}
81+
</div>
82+
<div class="publication-authors">
83+
{% for author_id in publication.authors %}
84+
{% assign author = site.data.authors_external[author_id.name] %}
85+
{% if author == nil %}
86+
{% assign author = site.data.authors_internal[author_id.name] %}
87+
{% endif %}
88+
<span class="author-block {% if author.is_me %}author-me{% endif %}">
89+
{% if author.is_me %}
90+
{{ author.first_name }} {{ author.middle_name }} {{ author.last_name }}
91+
{% else %}
92+
<a href="{{author.website}}">{{ author.first_name }} {{ author.middle_name }} {{ author.last_name}}</a>
93+
{% endif %}
94+
</span>
95+
{% endfor %}
96+
</div>
97+
</div>
98+
</div>
99+
{% endfor %}
100+
</div>
71101

72-
<div class="publication-data">
73-
<h3 class="publication-title">
74-
<a href="{{ base_link }}">{{ publication.title }}</a>
75-
</h3>
76-
<div class="publication-venue">
77-
<span>{{ publication.venue }}</span>
78-
{% for award in publication.awards %}
79-
<span class="publication-venue-emph">{{ award }}</span>
80-
{% endfor %}
81-
</div>
82-
<div class="publication-authors">
83-
{% for author_id in publication.authors %}
84-
{% assign author = site.data.authors_external[author_id.name] %}
85-
{% if author == nil %}
86-
{% assign author = site.data.authors_internal[author_id.name] %}
87-
{% endif %}
88-
<span class="author-block {% if author.is_me %}author-me{% endif %}">
89-
{% if author.is_me %}
90-
{{ author.first_name }} {{ author.middle_name }} {{ author.last_name }}
91-
{% else %}
92-
<a href="{{author.website}}">{{ author.first_name }} {{ author.middle_name }} {{ author.last_name}}</a>
93-
{% endif %}
94-
</span>
95-
{% endfor %}
96-
</div>
97-
</div>
98-
</div>
99-
{% endfor %}
100-
</div>
101102

102103
<p class="pub-more">
103104
See my <a href="{{ '/publications/' | relative_url }}">full list of publications</a>.

0 commit comments

Comments
 (0)