forked from greenelab/lab-website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
283 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{% assign emptyarray = "" | split: "," %} | ||
{% assign data = site.data[include.data] | ||
| default: site[include.data] | ||
| default: emptyarray | ||
| data_filter: include.filters | ||
%} | ||
|
||
{% assign years = data | ||
| group_by_exp: "d", "d.date | date: '%Y'" | ||
| sort: "name" | ||
| reverse | ||
%} | ||
|
||
{% for year in years %} | ||
{% assign data = year.items %} | ||
|
||
{% if years.size > 1 %} | ||
{{--}}<h3 id="{{ year.name }}">{{ year.name }}</h3> | ||
{% assign data = data | sort: "date" | reverse %} | ||
{% endif %} | ||
|
||
{% for d in data %} | ||
{% assign style = d.style | default: include.style %} | ||
|
||
{% | ||
include {{ include.component | append: ".html" }} | ||
affiliation=d.affiliation | ||
author=d.author | ||
authors=d.authors | ||
buttons=d.buttons | ||
caption=d.caption | ||
content=d.content | ||
date=d.date | ||
description=d.description | ||
excerpt=d.excerpt | ||
height=d.height | ||
icon=d.icon | ||
id=d.id | ||
image=d.image | ||
last_modified_at=d.last_modified_at | ||
link=d.link | ||
lookup=d.lookup | ||
name=d.name | ||
publisher=d.publisher | ||
repo=d.repo | ||
role=d.role | ||
slug=d.slug | ||
style=style | ||
subtitle=d.subtitle | ||
tags=d.tags | ||
text=d.text | ||
title=d.title | ||
tooltip=d.tooltip | ||
type=d.type | ||
url=d.url | ||
width=d.width | ||
%} | ||
{% endfor %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{% assign emptyarray = "" | split: "," %} | ||
{% assign data = site.data[include.data] | ||
| default: site[include.data] | ||
| default: emptyarray | ||
| data_filter: include.filters | ||
%} | ||
|
||
{% assign years = data | ||
| group_by_exp: "d", "d.date | date: '%Y'" | ||
| sort: "name" | ||
| reverse | ||
%} | ||
|
||
{% for year in years %} | ||
{% assign data = year.items %} | ||
|
||
{% if years.size > 1 %} | ||
{{--}}<h3 id="{{ year.name }}">{{ year.name }}</h3> | ||
{% assign data = data | sort: "date" | reverse %} | ||
{% endif %} | ||
|
||
{% for d in data %} | ||
{% assign style = d.style | default: include.style %} | ||
|
||
{% | ||
include {{ include.component | append: ".html" }} | ||
affiliation=d.affiliation | ||
author=d.author | ||
authors=d.authors | ||
buttons=d.buttons | ||
caption=d.caption | ||
content=d.content | ||
date=d.date | ||
description=d.description | ||
excerpt=d.excerpt | ||
height=d.height | ||
icon=d.icon | ||
id=d.id | ||
image=d.image | ||
last_modified_at=d.last_modified_at | ||
link=d.link | ||
lookup=d.lookup | ||
name=d.name | ||
publisher=d.publisher | ||
repo=d.repo | ||
role=d.role | ||
slug=d.slug | ||
style=style | ||
subtitle=d.subtitle | ||
tags=d.tags | ||
text=d.text | ||
title=d.title | ||
tooltip=d.tooltip | ||
type=d.type | ||
url=d.url | ||
width=d.width | ||
%} | ||
{% endfor %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{% assign emptyarray = "" | split: "," %} | ||
{% assign data = site.data[include.data] | ||
| default: site[include.data] | ||
| default: emptyarray | ||
| data_filter: include.filters | ||
%} | ||
|
||
{% assign years = data | ||
| group_by_exp: "d", "d.date | date: '%Y'" | ||
| sort: "name" | ||
| reverse | ||
%} | ||
|
||
{% for year in years %} | ||
{% assign data = year.items %} | ||
|
||
{% if years.size > 1 %} | ||
{{--}}<h3 id="{{ year.name }}">{{ year.name }}</h3> | ||
{% assign data = data | sort: "date" | reverse %} | ||
{% endif %} | ||
|
||
{% for d in data %} | ||
{% assign style = d.style | default: include.style %} | ||
|
||
{% | ||
include {{ include.component | append: ".html" }} | ||
affiliation=d.affiliation | ||
author=d.author | ||
authors=d.authors | ||
buttons=d.buttons | ||
caption=d.caption | ||
content=d.content | ||
date=d.date | ||
description=d.description | ||
excerpt=d.excerpt | ||
height=d.height | ||
icon=d.icon | ||
id=d.id | ||
image=d.image | ||
last_modified_at=d.last_modified_at | ||
link=d.link | ||
lookup=d.lookup | ||
name=d.name | ||
publisher=d.publisher | ||
repo=d.repo | ||
role=d.role | ||
slug=d.slug | ||
style=style | ||
subtitle=d.subtitle | ||
tags=d.tags | ||
text=d.text | ||
title=d.title | ||
tooltip=d.tooltip | ||
type=d.type | ||
url=d.url | ||
width=d.width | ||
%} | ||
{% endfor %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Jiachen Li | ||
image: people_photos/jiachenli.jpg | ||
role: pi | ||
affiliation: UC Riverside | ||
aliases: | ||
- J. Li | ||
- J Li | ||
links: | ||
people-homepage: https://jiachenli94.github.io/ | ||
# people-profile: https://profiles.ucr.edu/app/home/profile/jiachenl | ||
people-email: [email protected] | ||
people-gs: https://scholar.google.com/citations?user=1_f79vUAAAAJ&hl | ||
people-twitter: https://twitter.com/JiachenLi8 | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
--- | ||
|
||
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/>). | ||
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> | ||
**UC Riverside Profile**: [HERE](https://profiles.ucr.edu/jiachen.li) **Office**: 344 Winston Chung Hall (WCH) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Jianpeng Yao | ||
image: people_photos/jianpengyao.png | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- J. Yao | ||
- J Yao | ||
links: | ||
people-homepage: https://jyao97.github.io/ | ||
people-email: [email protected] | ||
people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
--- | ||
|
||
Jianpeng Yao is currently a first-year PhD student at UC Riverside. His research interests include robotics, reinforcement learning, and safe machine decisions. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Xiaopan Zhang | ||
image: people_photos/xiaopanzhang.jpg | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- X. Zhang | ||
- X Zhang | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
--- | ||
|
||
Xiaopan Zhang is currently a first-year PhD student at UC Riverside. |
Oops, something went wrong.