Skip to content

Commit 0c0b858

Browse files
committed
added people page and relevant files
1 parent 2702c42 commit 0c0b858

42 files changed

Lines changed: 606 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_includes/people_card.liquid

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<div class="col mb-3">
2+
<div class="card h-100 hoverable">
3+
<div class="row no-gutters">
4+
{% if people.img %}
5+
<div class="col-md-3">
6+
{% include figure.liquid
7+
loading="eager"
8+
path=people.img
9+
sizes="(min-width: 768px) 50px, 5vw"
10+
lt="project thumbnail"
11+
class="card-img" %}
12+
</div>
13+
{% endif %}
14+
<div class="{% if people.img %}col-md-9{% else %}col-md-12{% endif %}">
15+
<div class="card-body">
16+
<h5 class="card-title">{{ people.name }}</h5>
17+
<p class="card-text">{{ people.role }}</p>
18+
<div class="row ml-1 mr-1 p-0">
19+
{% if people.email %}
20+
<a href="mailto:{{ people.email | encode_email }}" title="email"><i class="fa-solid fa-envelope"></i></a>
21+
{% endif %}
22+
&nbsp;&nbsp;
23+
{% if people.website %}
24+
<a href="{{ people.website }}" title="website"><i class="fa-solid fa-home"></i></a>
25+
{% endif %}
26+
&nbsp;&nbsp;
27+
{% if people.scholar %}
28+
<a href="{{ people.scholar }}" title="google-scholar"><i class="ai ai-google-scholar"></i></a>
29+
{% endif %}
30+
&nbsp;&nbsp;
31+
{% if people.linkedin %}
32+
<a href="{{ people.linkedin }}" title="LinkedIn"><i class="fa-brands fa-linkedin"></i></a>
33+
{% endif %}
34+
&nbsp;&nbsp;
35+
{% if people.twitter %}
36+
<a href="{{ people.twitter }}" title="X"><i class="fa-brands fa-x-twitter"></i></a>
37+
{% endif %}
38+
</div>
39+
</div>
40+
</div>
41+
</div>
42+
</div>
43+
</div>

_layouts/people.liquid

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
layout: page
3+
---
4+
{% if page._styles %}
5+
<!-- Page/Post style -->
6+
<style type="text/css">
7+
{{ page._styles }}
8+
</style>
9+
{% endif %}
10+
11+
<div class="post">
12+
<header class="post-header">
13+
<h1 class="post-title">{{ page.title }}</h1>
14+
<p class="post-description">{{ page.description }}</p>
15+
</header>
16+
17+
<article>
18+
{{ content }}
19+
</article>
20+
21+
{% if page.related_publications %}
22+
<h2>References</h2>
23+
<div class="publications">
24+
{% bibliography --cited_in_order %}
25+
</div>
26+
{% endif %}
27+
28+
{% if site.giscus and page.giscus_comments %}
29+
{% include giscus.liquid %}
30+
{% endif %}
31+
</div>

_pages/people.md

Lines changed: 188 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
---
2+
layout: page
3+
div_class: people
4+
permalink: /people/
5+
title: people
6+
description: members of the lab or group
7+
nav: true
8+
nav_order: 4
9+
tabs: true
10+
lab_pictures: assets/img/pair-group-pictures/
11+
pretty_table: true
12+
images:
13+
compare: true
14+
slider: true
15+
spotlight: true
16+
display_categories: [pi, postdoc, phd, ms, ug, visitor] #ordered list
17+
display_status: [current, alumni]
18+
---
19+
20+
{% if page.lab_pictures %}
21+
{% assign lab_images = site.static_files | where_exp: "file", "file.path contains page.lab_pictures" %}
22+
{% assign highres_images = lab_images | where_exp: "img", "img.path contains '-1400.webp'" %}
23+
{% assign unique_images = highres_images | uniq: "basename" %}
24+
{% assign lab_images = unique_images %}
25+
<!-- <swiper-container keyboard="true" navigation="true" pagination="true" pagination-clickable="true" pagination-dynamic-bullets="true" rewind="true"> -->
26+
<div style="max-width: 900px; margin: 0 auto;">
27+
<swiper-container
28+
style="--swiper-navigation-color: #fff; --swiper-pagination-color: #fff; width: 100%; height: 480px;"
29+
class="mySwiper"
30+
pagination-dynamic-bullets="true"
31+
thumbs-swiper=".mySwiper2"
32+
loop="true"
33+
space-between="10"
34+
navigation="true"
35+
>
36+
<style>
37+
@media (max-width: 600px) {
38+
.mySwiper {
39+
height: 180px !important;
40+
}
41+
.mySwiper .swiper-slide img {
42+
height: 160px !important;
43+
}
44+
}
45+
.mySwiper, .mySwiper .swiper-wrapper {
46+
width: 100% !important;
47+
height: 640px !important;
48+
min-height: 160px;
49+
}
50+
.mySwiper .swiper-slide img {
51+
width: 100%;
52+
height: 300px;
53+
object-fit: cover;
54+
object-position: center;
55+
display: block;
56+
border-radius: 8px;
57+
}
58+
</style>
59+
{% for lab_image in lab_images %}
60+
<swiper-slide>
61+
{% include figure.liquid loading="eager" path=lab_image.path class="img-fluid rounded z-depth-1" %}
62+
</swiper-slide>
63+
{% endfor %}
64+
</swiper-container>
65+
</div>
66+
67+
<swiper-container class="mySwiper2" loop="true" space-between="10" slides-per-view="5" free-mode="true" watch-slides-progress="true">
68+
{% for lab_image in lab_images %}
69+
<swiper-slide>
70+
{% include figure.liquid loading="eager" path=lab_image.path class="img-fluid rounded z-depth-1" %}
71+
</swiper-slide>
72+
{% endfor %}
73+
</swiper-container>
74+
75+
{% endif %}
76+
77+
78+
<br>
79+
### Current Members
80+
81+
<!-- pages/people.md -->
82+
<div class="people">
83+
<!-- Display sorted list of people by role -->
84+
{% for category in page.display_categories %}
85+
{% assign categorized_people = site.people | where: "category", category %}
86+
{% assign sorted_people = categorized_people | sort_natural: "name" %}
87+
<!-- Generate cards for each person -->
88+
<div class="container">
89+
<div class="row row-cols-1 row-cols-md-2">
90+
{% for people in sorted_people %}
91+
{% if people.status contains "current" %}
92+
{% include people_card.liquid %}
93+
{% endif %}
94+
{% endfor %}
95+
</div>
96+
</div>
97+
{% endfor %}
98+
</div>
99+
100+
<br>
101+
### Alumni
102+
103+
We have been fortunate to work with exemplary colleagues over the years.
104+
105+
{% details **Graduates/Postdocs** %}
106+
107+
| Name | Institution | Degree | Year | Currently at |
108+
|--- | --- | --- | --- | --- |
109+
| [Kourosh Darvish](https://www.linkedin.com/in/kouroshdarvish/) | UofT | Postdoc | 2022-2024 | AC, UofT |
110+
| [Siqi Zhou](https://siqizhou.com) | UofT | Postdoc | 2022-2022 | TU Munich |
111+
| [Nikita Dvornik](https://www.linkedin.com/in/nikita-dvornik/) | UofT | Postdoc | 2021-2022 | Waabi |
112+
| [Irene Zhang](https://irenezhang30.github.io/) | UofT | MSc (CS) | 2020-2022 | PhD, Oxford|
113+
| [Matthew Zhang](https://scholar.google.com/citations?user=Y1y2jdoAAAAJ&hl=en) | UofT | MSc (CS) | 2020-2022 | PhD, UofT|
114+
| [Dylan Turpin](http://www.cs.toronto.edu/~dylanturpin/) | UofT | MSc (CS) | 2019-2021 | PhD, UofT|
115+
| [Homanga Bhardwaj](https://homangab.github.io/) | UofT | MSc (CS) | 2019-2021 | PhD, CMU|
116+
117+
{% enddetails %}
118+
119+
{% details **Undergraduates** %}
120+
121+
| Name | Institution | Degree | Year | Currently at |
122+
|--- | --- | --- | --- | --- |
123+
| [Jia Lin (Alan) Yuan](https://www.linkedin.com/in/jalnyn/) | UofT | BS (CS)| 2021-2024 | MScAC, Instacart |
124+
| [Arthur Allshire](https://allshire.org) | UofT | Engg. Sci. | 2020-2023 | PhD, UC Berkeley |
125+
| [Ritvik Singh](https://www.linkedin.com/in/ritvik-singh/) | UofT | Engg. Sci. | 2020-2023 | Nvidia |
126+
| [Jingzhou (Jason) Liu](https://www.linkedin.com/in/jasonjzliu/) | UofT | Engg. Sci | 2020-2023 | PhD, CMU |
127+
| [Alice Zhuo](https://www.linkedin.com/in/alice-x-zhou/ca) | UofT | Engg. Sci | 2020-2023 | Google |
128+
| [Songheng Yin](https://www.linkedin.com/in/songheng-yin-549a78170/) | UofT | BS (CS) | 2020-2022 | Columbia, Mujin |
129+
| [Varun Lodaya](https://www.linkedin.com/in/varun-lodaya/) | UofT | BS (CS) | 2020-2022 | Deep Genomics |
130+
| [Advaya Gupta](https://www.linkedin.com/in/advaya-gupta-5a2263151) | UofT | BS (CS) | 2020-2022 | Stanford |
131+
| [Xintong (Oscar) Zhou](https://www.linkedin.com/in/xintong-zhou-066a1b179/) | UofT | BS (CS) | 2020-2023 | CMU |
132+
| [Richard Ren](https://www.linkedin.com/in/richard-ren-1762ab17a/) | UofT | Engg. Sci | 2020-2022 | |
133+
| [Helen Wang](https://www.linkedin.com/in/yi-ru-helen-wang/) | UofT | Engg. Sci | 2020-2022 | PhD, UW |
134+
| [Dhananjay Ashok](https://www.linkedin.com/in/dhananjay-ashok-576342142/) | UofT | BS (CS)| 2020-2022 | PhD, USC |
135+
| [Yanxin (Anna) Ding](https://www.linkedin.com/in/yanxin-anna-ding/) | UofT | BS (CS)| 2021-2022 | Google |
136+
| [Siyan Zhao](https://www.linkedin.com/in/siyanzhao/) | UofT | Engg. Sci.| 2021-2022 | Phd, UCLA |
137+
| [Quinxi (Quincy) Yu](https://www.linkedin.com/in/qinxi-yu-8b83b419a/?originalSubdomain=ca) | UofT | BS (CS)| 2021-2022 | AWS |
138+
| [Calvin Yu](https://www.linkedin.com/in/calvin00/) | UofT | BS (CS)| 2021-2022 | Apple |
139+
| [Ming Yu Wang](https://www.linkedin.com/in/ming-wang-2t4nsci) | UofT | Engg. Sci| 2021-2022 | Stripe |
140+
| [Umid Targuliyev](https://www.linkedin.com/in/umid-targuliyev/) | UofT | BS (CS)| 2021-2022 | Caspian Innovation Center |
141+
| [Shysta Sehgal](https://www.linkedin.com/in/shysta-sehgal/) | UofT | BS (CS, CogSci)| 2021-2022 | PhD, UofT |
142+
| [Liquan Wang](https://www.linkedin.com/in/liquan-wang-a37634196/?originalSubdomain=ca) | UofT | BS (CS) | 2019-2021 | PhD, Georgia Tech |
143+
| [Quanzhou Li](https://quanzhou-li.github.io/) | UofT | BS (ECE) | 2020-2021 | PhD, NTU |
144+
| [James Liang](http://jamesliang.ca/) | UofT | BS (Engg. Sci.) | 2020-2021 | In Memoriam |
145+
| [Samarth Sinha](https://www.samsinha.me/) | UofT | BS (ECE) | 2019-2021 | Luma Labs|
146+
| [Anup Deb](https://www.linkedin.com/in/anup-deb/) | UofT | Engg. Sci | 2020-2021 | Citadel |
147+
| [Tianxu An](https://www.linkedin.com/in/tianxu-an-a6b053154/) | UofT | Engg. Sci. (Rob) | 2020-2021 | PhD ETH |
148+
| [Winston Chen](https://www.linkedin.com/in/wenxinchen11/) | UofT | Engg. Sci. (Robotics) | 2019-2020 | Google |
149+
| | | | | |
150+
| [Keyu Long](https://www.linkedin.com/in/keyu-long/) | UofT | MScAC | 2020 | GPTZero|
151+
| [Panteha Naderian](https://www.linkedin.com/in/panteha-naderian/) | UofT | MScAC | 2020 | StackAdapt |
152+
| [Priya Thakur](https://www.linkedin.com/in/priyathakur95/) | UofT | MScAC | 2020 | Google |
153+
| [Mohan Zhang](https://www.linkedin.com/in/mohan-zhang-b00b94180/) | UofT | MScAC | 2020 | Sixty Degree Capital (VC) |
154+
155+
{% enddetails %}
156+
157+
{% details **Visitors & Collaborators** %}
158+
159+
| Name | Institution | Degree | Year | Currently at |
160+
|--- | --- | --- | --- | --- |
161+
| [Theophile Gaudin](https://www.linkedin.com/in/th%C3%A9ophile-gaudin-a4a29381/) | UofT| PhD | 2019-2022 | Exscientia |
162+
| [Haoyu Xiong](https://haoyu-x.github.io/) | TJU| BS | 2020-2022 | MIT, PhD |
163+
| [Alexandra Volokhova](https://alexandravolokhova.github.io/) | MIPT | MSc | 2020-2021 | MILA, PhD |
164+
| [Jiankai (Jack) Sun](https://github.com/Jiankai-Sun) | CUHK | BS | 2020-2021 | Stanford, PhD |
165+
| [Chaitanya Devaguptatu](https://tdchaitanya.github.io/) | IIT Hyd | MSc | 2021 | Fujitsu Research |
166+
| [Chenjia Bai](https://scholar.google.com/citations?user=Rm_1y2kAAAAJ&hl=en) | [HIT](http://en.hit.edu.cn/) | PhD | 2021 | TeleAI |
167+
| [Mayank Mittal](https://mayankm96.github.io/) | ETH | MSc | 2020-2021 | PhD ETH |
168+
| [Sizhe Sui](https://www.linkedin.com/in/sizhe-sui/) | SJTU | BS | 2020 | PhD UT Austin |
169+
170+
{% enddetails %}
171+
172+
<!--
173+
### [Spotlight JS](https://nextapps-de.github.io/spotlight/)
174+
-->
175+
<!-- Group 1 -->
176+
<!--
177+
<div class="spotlight-group">
178+
<a class="spotlight" href="https://cdn.photoswipe.com/photoswipe-demo-images/photos/1/img-2500.jpg">
179+
<img src="https://cdn.photoswipe.com/photoswipe-demo-images/photos/1/img-200.jpg" />
180+
</a>
181+
<a class="spotlight" href="https://cdn.photoswipe.com/photoswipe-demo-images/photos/2/img-2500.jpg">
182+
<img src="https://cdn.photoswipe.com/photoswipe-demo-images/photos/2/img-200.jpg" />
183+
</a>
184+
<a class="spotlight" href="https://cdn.photoswipe.com/photoswipe-demo-images/photos/3/img-2500.jpg">
185+
<img src="https://cdn.photoswipe.com/photoswipe-demo-images/photos/3/img-200.jpg" />
186+
</a>
187+
</div>
188+
-->

_people/albert-wilcox.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
name: Albert Wilcox
4+
role: Ph.D. Student #description of the role
5+
img: assets/img/people/albert-wilcox.jpg
6+
category: phd # pi, postdoc, phd, ms, ug, visitor
7+
status: current # current, alumni
8+
#links and socials
9+
email: albertwilcox@gatech.edu
10+
website: https://albertwilcox.github.io/
11+
scholar: https://scholar.google.com/citations?user=qKz0qpoAAAAJ&hl=en
12+
linkedin: https://www.linkedin.com/in/albert-wilcox-314898184/
13+
twitter: https://twitter.com/albertwilcoxiii
14+
---

_people/animesh-garg.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
name: Animesh Garg
4+
role: PAIR Director #description of the role
5+
img: assets/img/people/animesh-garg.jpg
6+
category: pi # pi, postdoc, phd, ms, ug, visitor
7+
status: current # current, alumni
8+
#links and socials
9+
email: animesh.garg@gatech.edu
10+
website: https://animesh.garg.tech/
11+
scholar: https://scholar.google.com/citations?user=zp8V7ZMAAAAJ
12+
linkedin: https://www.linkedin.com/in/animeshgarg/
13+
twitter: https://twitter.com/animesh_garg
14+
---

_people/dennis-anthony.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
name: Dennis Anthony
4+
role: Ph.D. Student <br> (with Shreyas Kousik) #description of the role
5+
img: assets/img/people/dennis-anthony.png
6+
category: phd # pi, postdoc, phd, ms, ug, visitor
7+
status: current # current, alumni
8+
#links and socials
9+
email: dennisant59@gmail.com
10+
website: https://dennisant.github.io/
11+
scholar: https://scholar.google.com/citations?user=9D1HwB8AAAAJ
12+
linkedin: https://www.linkedin.com/in/dennis-anthony-80a795170/
13+
twitter:
14+
---

_people/dylan-turpin.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
name: Dylan Turpin
4+
role: Ph.D. Student (UofT) <br> (With Sven Dickenson) #description of the role
5+
img: assets/img/people/dylan-turpin.jpeg
6+
category: phd # pi, postdoc, phd, ms, ug, visitor
7+
status: current # current, alumni
8+
#links and socials
9+
email: dylanturpin@cs.toronto.edu
10+
website: https://www.cs.toronto.edu/~dylanturpin/
11+
scholar: https://scholar.google.ca/citations?user=HYHTg_0AAAAJ&hl=en
12+
linkedin:
13+
twitter: https://x.com/dylanturpin
14+
---

_people/ezra-ameperosa.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
name: Ezra Ameperosa
4+
role: Ph.D. Student #description of the role
5+
img: assets/img/people/ezra-ameperosa.jpeg
6+
category: phd # pi, postdoc, phd, ms, ug, visitor
7+
status: current # current, alumni
8+
#links and socials
9+
email: eameperosa3@gatech.edu
10+
website:
11+
scholar:
12+
linkedin: https://www.linkedin.com/in/ezra-ameperosa-6aa572a4/
13+
twitter:
14+
---

_people/hrishit-leen.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
name: Hrishit Leen
4+
role: Ph.D. Student #description of the role
5+
img: assets/img/people/hrishit-leen.jpeg
6+
category: phd # pi, postdoc, phd, ms, ug, visitor
7+
status: current # current, alumni
8+
#links and socials
9+
email: hleen3@gatech.edu
10+
website:
11+
scholar:
12+
linkedin: https://www.linkedin.com/in/hrish-leen-1451a71b8/
13+
twitter:
14+
---

_people/ignat-georgiev.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
name: Ignat Georgiev
4+
role: Ph.D. Student (on leave) #description of the role
5+
img: assets/img/people/ignat-georgiev.jpeg
6+
category: phd # pi, postdoc, phd, ms, ug, visitor
7+
status: current # current, alumni
8+
#links and socials
9+
email: ignat@imgeorgiev.com
10+
website: https://www.imgeorgiev.com/
11+
scholar: https://scholar.google.co.uk/citations?user=1Yu0vQkAAAAJ&hl=en
12+
linkedin: https://linkedin.com/in/imgeorgiev
13+
twitter: https://twitter.com/imgeorgiev
14+
---

0 commit comments

Comments
 (0)