Skip to content

Commit

Permalink
update team
Browse files Browse the repository at this point in the history
  • Loading branch information
rdecharette committed Feb 22, 2024
1 parent fa8ccca commit 91a1263
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 30 deletions.
54 changes: 38 additions & 16 deletions _data/team.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@
profilepic: renaud_marlet.jpg
bib_firstname: ["Renaud", "R."]

"Pérez":
firstname: Patrick
url: https://ptrckprz.github.io/
profilepic: patrick_perez.jpg
position: Researcher
bib_firstname: ["Patrick", "P."]
alumni: true
alumni_date: 2023/12/08
alumni_now: CEO of <a href="https://www.kyutai.org" target="_blank">Kyutai</a>

"Lopes":
firstname: Ivan
url: https://wonjunior.github.io/
Expand All @@ -26,15 +36,6 @@
position: PhD student
bib_firstname: ["Quan", "Q.", "Anh-Quan", "A-Q."]

"Pizzati":
firstname: Fabio
url: https://fabvio.github.io/
profilepic: fabio_pizzati.png
position: PhD student
bib_firstname: ["Fabio", "F."]
alumni: true
nowat: <a href="https://torrvision.com/">Oxford TVG</a>

"Fahes":
firstname: Mohammad
url: https://mfahes.github.io/
Expand Down Expand Up @@ -63,13 +64,6 @@
position: Researcher
bib_firstname: ["Andrei", "A."]

"Pérez":
firstname: Patrick
url: https://ptrckprz.github.io/
profilepic: patrick_perez.jpg
position: Researcher
bib_firstname: ["Patrick", "P."]

"Vu":
firstname: Tuan-Hung
url: https://tuanhungvu.github.io/
Expand All @@ -83,17 +77,45 @@
profilepic: tankhiem_huynh.jpg
position: Intern
bib_firstname: ["Tan Khiem", "Khiem", "T-K."]
alumni: true
alumni_date: 2023/10/01

"Ben Salem":
firstname: Souhaiel
url: https://www.linkedin.com/in/souhaiel-bensalem-5a71721aa
profilepic: souhaiel_bensalem.jpg
position: Intern
bib_firstname: ["Souhaiel", "S."]
alumni: true
alumni_date: 2023/10/01

"Pizzati":
firstname: Fabio
url: https://fabvio.github.io/
profilepic: fabio_pizzati.png
position: PhD student
bib_firstname: ["Fabio", "F."]
alumni: true
alumni_now: PostDoc at <a href="https://torrvision.com/">Oxford TVG</a>
alumni_date: 2023/03/01

"Martyniuk":
firstname: Tetiana
url: https://scholar.google.com/citations?user=Ur0vgfMAAAAJ
profilepic: tetiana_martyniuk.jpg
position: PhD student
bib_firstname: ["Tetiana", "T."]

"Weinreich":
firstname: Clément
url: https://clement-w.github.io/
profilepic: clement_weinreich.jpeg
position: Intern
bib_firstname: ["Clément", "Clement", "C"]

"Marengo":
firstname: Matteo
url: https://www.linkedin.com/in/matteolmarengo/
profilepic: matteo_marengo.jpeg
position: Intern
bib_firstname: ["Matteo", "M."]
9 changes: 8 additions & 1 deletion _includes/team/member.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,12 @@

<div class="member text-center {{member[1].position}}">
<a href="{{ member[1].url }}" target="_blank"><img class="member-img-light w-100" alt="{{ full_name }}" src="{{ member[1].profilepic | prepend: '/assets/img/team/' | relative_url }}">
{{ full_name }}</a><br>{{member[1].position}}
{% if member[1].alumni != true %}
{{ full_name }}</a><br>{{member[1].position}}
{% else %}
{{ full_name }}</a><br>{{member[1].position}}
{% if member[1].alumni_now != "" and member[1].alumni_now != nil %}
<br> <span class="nowat">(now {{member[1].alumni_now}})</span>
{% endif %}
{% endif %}
</div>
4 changes: 2 additions & 2 deletions _pages/jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ We're looking for roughly 4 interns highly motivated, with experience in compute

These internships are already opened (other will be advertised soon):

* Gaussian Splatting for Urban scenes, Valeo.ai/Inria (<a href="{{ '/assets/pdf/2024_astra_inria_valeoai_scene_representation.pdf' | relative_url }}" target="_blank">Internship details</a>)
* Realistic Extreme Conditions Augmentations with Gaussian Splatting, Inria/Valeo.ai (<a href="https://drive.google.com/file/d/1OuFW7yvbC5v7QaXCgaPQbI8EeMXV_kND/view?usp=sharing" target="_blank">Internship details</a>)
* ~~Gaussian Splatting for Urban scenes, Valeo.ai/Inria~~ (<a href="{{ '/assets/pdf/2024_astra_inria_valeoai_scene_representation.pdf' | relative_url }}" target="_blank">Internship details</a>)
* ~~Realistic Extreme Conditions Augmentations with Gaussian Splatting, Inria/Valeo.ai~~ (<a href="https://drive.google.com/file/d/1OuFW7yvbC5v7QaXCgaPQbI8EeMXV_kND/view?usp=sharing" target="_blank">Internship details</a>)
* Other topics can be investigated such as: language-driven models, diffusion, physics-driven learning, etc.


Expand Down
24 changes: 13 additions & 11 deletions _pages/team.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,28 @@ nav_order: 1
---

<!-- pages/team.md -->
{% assign members_sorted = "" | split: ',' %}
<!-- sort active members -->
{% assign names_sorted = "" | split: ',' %}
{% for member in site.data.team %}
{% assign members_sorted = members_sorted | push: member[0] %}
{% if member[1].alumni != true %}
{% assign names_sorted = names_sorted | push: member[0] %}
{% endif %}
{% endfor %}
{% assign members_sorted = members_sorted | sort_natural %}
{% assign names_sorted = names_sorted | sort_natural %}

<div class="team">
{% for name in members_sorted %}
{% if site.data.team[name].alumni != true %}
{% assign member = "" | split: ',' | push: name | push: site.data.team[name] %}
{% include team/member.html member=member %}
{% endif %}
{% for name in names_sorted %}
{% assign member = "" | split: ',' | push: name | push: site.data.team[name] %}
{% include team/member.html member=member %}
{% endfor %}
</div>

<!-- display Alumni in their data listing order -->
<!-- could not manage to sort by alumni_date since Liquid does not allow modifying object w/o use of a plugin -->
<h2 class="alumni">Alumni</h2>
<div class="team alumni">
{% for name in members_sorted %}
{% if site.data.team[name].alumni == true %}
{% assign member = "" | split: ',' | push: name | push: site.data.team[name] %}
{% for member in site.data.team %}
{% if member[1].alumni == true %}
{% include team/member.html member=member %}
{% endif %}
{% endfor %}
Expand Down
Binary file added assets/img/team/clement_weinreich.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/team/matteo_marengo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 91a1263

Please sign in to comment.