Skip to content

Commit da3acab

Browse files
committed
add jiachen, jianpeng and xiaopan
1 parent 47a11dc commit da3acab

17 files changed

+283
-89
lines changed

_data/types.yaml

+42-18
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,29 @@
22

33
# team member roles
44

5-
pi:
6-
icon: fa-solid fa-microscope
7-
description: Principal Investigator
5+
# pi:
6+
# icon: fa-solid fa-microscope
7+
# description: Principal Investigator
88

9-
postdoc:
10-
icon: fa-solid fa-glasses
11-
description: Postdoctoral Researcher
9+
# postdoc:
10+
# icon: fa-solid fa-glasses
11+
# description: Postdoctoral Researcher
1212

13-
phd:
14-
icon: fa-solid fa-graduation-cap
15-
description: PhD Student
13+
# phd:
14+
# icon: fa-solid fa-graduation-cap
15+
# description: PhD Student
1616

17-
undergrad:
18-
icon: fa-solid fa-user-graduate
19-
description: Undergraduate Student
17+
# undergrad:
18+
# icon: fa-solid fa-user-graduate
19+
# description: Undergraduate Student
2020

21-
programmer:
22-
icon: fa-solid fa-code
23-
description: Programmer
21+
# programmer:
22+
# icon: fa-solid fa-code
23+
# description: Programmer
2424

25-
mascot:
26-
icon: fa-solid fa-dog
27-
description: Mascot
25+
# mascot:
26+
# icon: fa-solid fa-dog
27+
# description: Mascot
2828

2929
# general
3030

@@ -227,3 +227,27 @@ paper_home:
227227

228228
paper_code:
229229
icon: fa-solid fa-code
230+
231+
people-homepage:
232+
icon: fa-solid fa-house-user
233+
text: Homepage
234+
235+
people-profile:
236+
icon: fa-solid fa-link
237+
text: UCR Profile
238+
239+
people-email:
240+
icon: fa-solid fa-envelope
241+
text: E-mail
242+
243+
people-gs:
244+
icon: fa-brands fa-google
245+
text: Google Scholar
246+
247+
people-twitter:
248+
icon: fa-brands fa-twitter
249+
text: Twitter
250+
251+
people-office:
252+
icon: fa-solid fa-location-dot
253+
text: Office
File renamed without changes.

_includes/list_pi.html

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{% assign emptyarray = "" | split: "," %}
2+
{% assign data = site.data[include.data]
3+
| default: site[include.data]
4+
| default: emptyarray
5+
| data_filter: include.filters
6+
%}
7+
8+
{% assign years = data
9+
| group_by_exp: "d", "d.date | date: '%Y'"
10+
| sort: "name"
11+
| reverse
12+
%}
13+
14+
{% for year in years %}
15+
{% assign data = year.items %}
16+
17+
{% if years.size > 1 %}
18+
{{--}}<h3 id="{{ year.name }}">{{ year.name }}</h3>
19+
{% assign data = data | sort: "date" | reverse %}
20+
{% endif %}
21+
22+
{% for d in data %}
23+
{% assign style = d.style | default: include.style %}
24+
25+
{%
26+
include {{ include.component | append: ".html" }}
27+
affiliation=d.affiliation
28+
author=d.author
29+
authors=d.authors
30+
buttons=d.buttons
31+
caption=d.caption
32+
content=d.content
33+
date=d.date
34+
description=d.description
35+
excerpt=d.excerpt
36+
height=d.height
37+
icon=d.icon
38+
id=d.id
39+
image=d.image
40+
last_modified_at=d.last_modified_at
41+
link=d.link
42+
lookup=d.lookup
43+
name=d.name
44+
publisher=d.publisher
45+
repo=d.repo
46+
role=d.role
47+
slug=d.slug
48+
style=style
49+
subtitle=d.subtitle
50+
tags=d.tags
51+
text=d.text
52+
title=d.title
53+
tooltip=d.tooltip
54+
type=d.type
55+
url=d.url
56+
width=d.width
57+
%}
58+
{% endfor %}
59+
{% endfor %}

_includes/list_research.html

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{% assign emptyarray = "" | split: "," %}
2+
{% assign data = site.data[include.data]
3+
| default: site[include.data]
4+
| default: emptyarray
5+
| data_filter: include.filters
6+
%}
7+
8+
{% assign years = data
9+
| group_by_exp: "d", "d.date | date: '%Y'"
10+
| sort: "name"
11+
| reverse
12+
%}
13+
14+
{% for year in years %}
15+
{% assign data = year.items %}
16+
17+
{% if years.size > 1 %}
18+
{{--}}<h3 id="{{ year.name }}">{{ year.name }}</h3>
19+
{% assign data = data | sort: "date" | reverse %}
20+
{% endif %}
21+
22+
{% for d in data %}
23+
{% assign style = d.style | default: include.style %}
24+
25+
{%
26+
include {{ include.component | append: ".html" }}
27+
affiliation=d.affiliation
28+
author=d.author
29+
authors=d.authors
30+
buttons=d.buttons
31+
caption=d.caption
32+
content=d.content
33+
date=d.date
34+
description=d.description
35+
excerpt=d.excerpt
36+
height=d.height
37+
icon=d.icon
38+
id=d.id
39+
image=d.image
40+
last_modified_at=d.last_modified_at
41+
link=d.link
42+
lookup=d.lookup
43+
name=d.name
44+
publisher=d.publisher
45+
repo=d.repo
46+
role=d.role
47+
slug=d.slug
48+
style=style
49+
subtitle=d.subtitle
50+
tags=d.tags
51+
text=d.text
52+
title=d.title
53+
tooltip=d.tooltip
54+
type=d.type
55+
url=d.url
56+
width=d.width
57+
%}
58+
{% endfor %}
59+
{% endfor %}

_includes/list_students.html

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{% assign emptyarray = "" | split: "," %}
2+
{% assign data = site.data[include.data]
3+
| default: site[include.data]
4+
| default: emptyarray
5+
| data_filter: include.filters
6+
%}
7+
8+
{% assign years = data
9+
| group_by_exp: "d", "d.date | date: '%Y'"
10+
| sort: "name"
11+
| reverse
12+
%}
13+
14+
{% for year in years %}
15+
{% assign data = year.items %}
16+
17+
{% if years.size > 1 %}
18+
{{--}}<h3 id="{{ year.name }}">{{ year.name }}</h3>
19+
{% assign data = data | sort: "date" | reverse %}
20+
{% endif %}
21+
22+
{% for d in data %}
23+
{% assign style = d.style | default: include.style %}
24+
25+
{%
26+
include {{ include.component | append: ".html" }}
27+
affiliation=d.affiliation
28+
author=d.author
29+
authors=d.authors
30+
buttons=d.buttons
31+
caption=d.caption
32+
content=d.content
33+
date=d.date
34+
description=d.description
35+
excerpt=d.excerpt
36+
height=d.height
37+
icon=d.icon
38+
id=d.id
39+
image=d.image
40+
last_modified_at=d.last_modified_at
41+
link=d.link
42+
lookup=d.lookup
43+
name=d.name
44+
publisher=d.publisher
45+
repo=d.repo
46+
role=d.role
47+
slug=d.slug
48+
style=style
49+
subtitle=d.subtitle
50+
tags=d.tags
51+
text=d.text
52+
title=d.title
53+
tooltip=d.tooltip
54+
type=d.type
55+
url=d.url
56+
width=d.width
57+
%}
58+
{% endfor %}
59+
{% endfor %}

_layouts/member.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
%}
3030

3131
{% capture search -%}
32-
research/?search={% for alias in aliases %}"{{ alias }}" {% endfor %}
32+
publications/?search={% for alias in aliases %}"{{ alias }}" {% endfor %}
3333
{%- endcapture %}
3434

3535
<p class="center">
3636
<a href="{{ search | relative_url }}">
37-
Search for {{ page.name | default: page.title }}'s papers on the Research page
37+
Search for {{ page.name | default: page.title }}'s papers on the Publications page
3838
</a>
3939
</p>
4040

_members/jane-smith.md

-20
This file was deleted.

_members/jiachen-li.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Jiachen Li
3+
image: people_photos/jiachenli.jpg
4+
role: pi
5+
affiliation: UC Riverside
6+
aliases:
7+
- J. Li
8+
- J Li
9+
links:
10+
people-homepage: https://jiachenli94.github.io/
11+
# people-profile: https://profiles.ucr.edu/app/home/profile/jiachenl
12+
people-email: [email protected]
13+
people-gs: https://scholar.google.com/citations?user=1_f79vUAAAAJ&hl
14+
people-twitter: https://twitter.com/JiachenLi8
15+
# people-office: 344 Winston Chung Hall (WCH)
16+
---
17+
18+
Dr. Jiachen Li is an assistant professor in the [Department of Electrical and Computer Engineering](https://www.ece.ucr.edu/) and the [Department of Computer Science and Engineering](https://www1.cs.ucr.edu/) (by courtesy) at the University of California, Riverside. He is the Director of the Trustworthy Autonomous Systems Laboratory (TASL) and a faculty member in the [Center for Robotics and Intelligent Systems (CRIS)](https://www.cris.ucr.edu/). Before joining UCR, he was a postdoctoral scholar at Stanford University. He received his Ph.D. from the University of California, Berkeley. Dr. Li received an RSS Robotics Pioneer Award in 2022 and was selected as an ASME DSCD Rising Star in 2023. He is an associate editor or a reviewer for over 25 premier journals and conferences. He has organized multiple workshops on robotics, machine learning, computer vision, and intelligent transportation systems at premier international conferences, including ICRA, IROS, NeurIPS, ICCV, IV, and ITSC. More details about his research and activities can be found on his website (<https://jiachenli94.github.io/>).
19+
Dr. Li’s research interest lies in the broad intersection of robotics, trustworthy AI & ML, reinforcement learning, control, and optimization as well as their applications to intelligent autonomous systems (e.g., autonomous vehicles, mobile robots, drones, cyber-physical systems), especially human-robot interactions and multi-agent systems. <br>
20+
**UC Riverside Profile**[HERE](https://profiles.ucr.edu/jiachen.li)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;**Office**: 344 Winston Chung Hall (WCH)

_members/jianpeng-yao.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Jianpeng Yao
3+
image: people_photos/jianpengyao.png
4+
role: grad
5+
affiliation: UC Riverside
6+
aliases:
7+
- J. Yao
8+
- J Yao
9+
links:
10+
people-homepage: https://jyao97.github.io/
11+
people-email: [email protected]
12+
people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ
13+
# people-office: 344 Winston Chung Hall (WCH)
14+
---
15+
16+
Jianpeng Yao is currently a first-year PhD student at UC Riverside. His research interests include robotics, reinforcement learning, and safe machine decisions.

_members/john-doe.md

-10
This file was deleted.

_members/sarah-johnson.md

-11
This file was deleted.

_members/xiaopan-zhang.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Xiaopan Zhang
3+
image: people_photos/xiaopanzhang.jpg
4+
role: grad
5+
affiliation: UC Riverside
6+
aliases:
7+
- X. Zhang
8+
- X Zhang
9+
links:
10+
# people-homepage: https://jyao97.github.io/
11+
# people-email: [email protected]
12+
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ
13+
# people-office: 344 Winston Chung Hall (WCH)
14+
---
15+
16+
Xiaopan Zhang is currently a first-year PhD student at UC Riverside.

0 commit comments

Comments
 (0)