Skip to content

Commit

Permalink
Merge branch 'test_joon'
Browse files Browse the repository at this point in the history
  • Loading branch information
dev10110 committed Aug 28, 2024
2 parents 1e7c1a9 + 58e70df commit 9c2a24a
Show file tree
Hide file tree
Showing 10 changed files with 48 additions and 35 deletions.
35 changes: 11 additions & 24 deletions archetypes/papers.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,28 @@
---
layout: papers
# specify the title of the paper
title: "Eclares: Energy-Aware Clarity-Driven Ergodic Search"
title: "Paper Title"
# specify the date it was published
date: 2024-05-13
date: 1900-01-01
# list the authors. if a "/people/id" page exists for the person, it will be linked. If not, the author's name is printed exactly as you typed it.
authors:
- devanshagrawal
- kalebbennaveed
- Christopher Vermillion
- dimitrapanagou
# give the main figure location, relative to /static/
image: /images/2024-eclares.png
image: /images/default_paper.png
# specify the conference or journal that it was published in
venue: "IEEE ICRA 2024"
# specify the type of the paper. choose from [conference, journal]
type: conference
venue:
# link to publisher site (optional)
link: https://doi.org/10.1109/ICRA57147.2024.10611286
link:
# link to arxiv (optional)
arxiv: https://arxiv.org/abs/2310.06933
arxiv:
# link to github (optional)
code: https://github.com/kalebbennaveed/Eclares.git
code:
# link to video (optional)
video: https://youtu.be/1ZCgxlHitzk
video:
# link to pdf (optional)
pdf: /pdfs/2024-eclares.pdf
pdf:
# abstract
abstract: "Planning informative trajectories while considering the spatial distribution of the information over the environment, as well as constraints such as the robot’s limited battery capacity, makes the long-time horizon persistent coverage problem complex. Ergodic search methods consider the spatial distribution of environmental information while optimizing robot trajectories; however, current methods lack the ability to construct the target information spatial distribution for environments that vary stochastically across space and time. Moreover, current coverage methods dealing with battery capacity constraints either assume simple robot and battery models or are computationally expensive. To address these problems, we propose a framework called Eclares, in which our contribution is two-fold. 1) First, we propose a method to construct the target information spatial distribution for ergodic trajectory optimization using clarity, an information measure bounded between [0, 1]. The clarity dynamics allow us to capture information decay due to a lack of measurements and to quantify the maximum attainable information in stochastic spatiotemporal environments. 2) Second, instead of directly tracking the ergodic trajectory, we introduce the energy-aware (eware) filter, which iteratively validates the ergodic trajectory to ensure that the robot has enough energy to return to the charging station when needed. The proposed eware filter is applicable to nonlinear robot models and is computationally lightweight. We demonstrate the working of the framework through a simulation case study."
abstract:
# bib entry (optional). the |- is used to allow for multiline entry.
bib: |-
@inproceedings{naveed2024eclares,
title={Eclares: Energy-aware clarity-driven ergodic search},
author={Naveed, Kaleb Ben and Agrawal, Devansh and Vermillion, Christopher and Panagou, Dimitra},
booktitle={2024 IEEE International Conference on Robotics and Automation (ICRA)},
pages={14326--14332},
year={2024},
organization={IEEE}
}
bib:
---
10 changes: 5 additions & 5 deletions archetypes/people.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
title: Full Name
title: '{{ replace .File.ContentBaseName `` ` ` | title }}'
# choose a category from [Faculty, PostDoc, PhD, Masters, Visiting, Alumni]. Be careful about the capitalization.
category: PhD
# give the path relative to static/
image: "/images/devanshagrawal.jpg"
image: "/images/default_profile.webp"
# start year, used for sorting
year: 2020
year:
# link to personal website (optional)
link: https://dev10110.github.io
link:
# email id (optional)
mail: [email protected]
mail:
---
13 changes: 13 additions & 0 deletions content/people/haejoonl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: Haejoon Lee
# choose a category from [Faculty, PostDoc, PhD, Masters, Visiting, Alumni]. Be careful about the capitalization.
category: PhD
# give the path relative to static/
image:
# start year, used for sorting
year: 2023
# link to personal website (optional)
link:
# email id (optional)
mail: [email protected]
---
1 change: 1 addition & 0 deletions content/people/kalebbennaveed.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
title: Kaleb Ben Naveed
category: "PhD"
image: /images/kalebbennaveed.jpeg
year: 2022
---
4 changes: 1 addition & 3 deletions layouts/papers/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@

{{ partial "paper-card" . }}


<div class="my-3">
<h3>Abstract</h3>
<p>{{ .Params.abstract}}</p>
</div>

{{ .Content }}

{{ end }}

{{ end }}
10 changes: 9 additions & 1 deletion layouts/partials/paper-card.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
<div class="row align-items-top mt-3">
<div class="col-md-3 mb-2">
<a href="{{ .RelPermalink }}">
{{ if .Params.image }}
<img
class="img-thumbnail img-fluid"
src="{{ .Params.image}}"
alt="project image"
alt="{{ .Title }}"
/>
{{ else }}
<img
class="img-thumbnail img-fluid"
src="/images/default_paper.png"
alt="{{ .Title }}"
/>
{{ end }}
</a>
</div>

Expand Down
6 changes: 5 additions & 1 deletion layouts/partials/person-card.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<div class="card h-100" style="width: 18rem;">
<a href="{{ .RelPermalink }}">
<img src="{{ .Params.image }}" class="card-img-top" alt="{{ .Title }}">
{{ if .Params.image }}
<img src="{{ .Params.image }}" class="card-img-top" alt="{{ .Title }}">
{{ else }}
<img src="/images/default_profile.webp" class="card-img-top" alt="{{ .Title }}">
{{ end }}
</a>
<div class="card-body">
<a href=" {{ .RelPermalink }}">
Expand Down
4 changes: 3 additions & 1 deletion layouts/people/people.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{{ define "main" }}


{{ $pages := .Pages }}
{{ $allpages := .Pages}}

{{ $pages := sort $allpages "Params.year" "asc" }}

<h1> People</h1>

Expand Down
Binary file added static/images/default_paper.png
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 static/images/default_profile.webp
Binary file not shown.

0 comments on commit 9c2a24a

Please sign in to comment.