Skip to content

Commit

Permalink
Adding PRL workshop submission acceptance
Browse files Browse the repository at this point in the history
  • Loading branch information
pecey committed Dec 20, 2024
1 parent 10dcb48 commit acfbd86
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ collections:
permalink: /projects/:path/

news_scrollable: false # adds a vertical scroll bar if there are more than 3 news items
news_limit: 10 # leave blank to include all the news in the `_news` folder
news_limit: 5 # leave blank to include all the news in the `_news` folder

# -----------------------------------------------------------------------------
# Jekyll settings
Expand Down
2 changes: 1 addition & 1 deletion _includes/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{% endif %}
{% for item in news limit: news_limit %}
<tr>
<th scope="row">{{ item.date | date: "%b, %Y" }}</th>
<th scope="row" style="width:20%">{{ item.date | date: "%b, %Y" }}</th>
<td>
{% if item.inline -%}
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
Expand Down
2 changes: 1 addition & 1 deletion _news/announcement_4.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ date: 2023-04-19 14:25:00-0400
inline: true
---

[DiSProD](https://pecey.github.io/DiSProD/) has been accepted for presentation at the IJCAI 2023.
[DiSProD](https://pecey.github.io/DiSProD/) has been accepted for presentation at IJCAI 2023.
7 changes: 7 additions & 0 deletions _news/announcement_6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
layout: post
date: 2024-12-20 16:00:00-0400
inline: true
---

Our work on Planning with temporally-extended models has been accepted at the [PRL workshop](https://prl-theworkshop.github.io/) at AAAI 2025.
7 changes: 7 additions & 0 deletions _news/announcement_7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
layout: post
date: 2024-03-24 16:00:00-0400
inline: true
---

I passed by qualifying examinations.
2 changes: 1 addition & 1 deletion _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ selected_papers: false # includes a list of papers marked as "selected={true}"
social: false # includes social icons at the bottom of the page
---

I am a second year Ph.D. student at the [Luddy School of Informatics, Computing and Engineering](https://luddy.indiana.edu/), [Indiana University](https://www.indiana.edu/) and am currently working with [Roni Khardon](https://scholar.google.com/citations?user=ymCi4oEAAAAJ&hl=en&oi=ao) on stochastic online planning and reinforcement-learning.
I am a Ph.D. student at the [Luddy School of Informatics, Computing and Engineering](https://luddy.indiana.edu/), [Indiana University](https://www.indiana.edu/) and am currently working with [Roni Khardon](https://scholar.google.com/citations?user=ymCi4oEAAAAJ&hl=en&oi=ao) on stochastic online planning and reinforcement-learning.

Previously, I have worked as an application developer at [ThoughtWorks Technologies](https://www.thoughtworks.com/).
36 changes: 36 additions & 0 deletions _pages/news.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
layout: page
permalink: /news/
title: news
description:
nav: false
---
<div class="news">
{% if site.news != blank -%}
{%- assign news_size = site.news | size -%}
<div class="table-responsive" {% if site.news_scrollable and news_size > 3 %}style="max-height: 10vw"{% endif %}>
<table class="table table-sm table-borderless">
{%- assign news = site.news | reverse -%}
{% if site.news_limit %}
{% assign news_limit = site.news_limit %}
{% else %}
{% assign news_limit = news_size %}
{% endif %}
{% for item in news %}
<tr>
<th scope="row" style="width:20%">{{ item.date | date: "%b, %Y" }}</th>
<td>
{% if item.inline -%}
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
{%- else -%}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.title }}</a>
{%- endif %}
</td>
</tr>
{%- endfor %}
</table>
</div>
{%- else -%}
<p>No news so far...</p>
{%- endif %}
</div>
17 changes: 15 additions & 2 deletions _pages/publications.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,28 @@
layout: page
permalink: /publications/
title: publications
years: [2023]
paper_years: [2023]
workshop_years: [2024]
nav: true
---
<!-- _pages/publications.md -->
<div class="publications">

{%- for y in page.years %}
{%- for y in page.paper_years %}
<h2 class="year">{{y}}</h2>
{% bibliography -f papers -q @*[year={{y}}]* %}
{% endfor %}

</div>


<h1 class="post-title"> workshops </h1>
<!-- _pages/publications.md -->
<div class="publications">

{%- for y in page.workshop_years %}
<h2 class="year">{{y}}</h2>
{% bibliography -f workshop -q @*[year={{y}}]* %}
{% endfor %}

</div>

0 comments on commit acfbd86

Please sign in to comment.