Skip to content

Commit

Permalink
Add disturb videos, fix whitespace in insights
Browse files Browse the repository at this point in the history
  • Loading branch information
abhaybd committed Apr 24, 2024
1 parent f497b2b commit eeb1b08
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 14 deletions.
59 changes: 46 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -441,20 +441,20 @@ <h4 class="title is-4">Filtering High-Error Labels</h4>

<section class="section">
<div class="container has-text-centered is-max-desktop">
<div class="columns is-centered has-text-centered is-multiline">
<h2 class="title is-2">Real Robot Experiments</h3>
<div class="columns is-centered">
<div class="column is-3 has-text-centered">
<img class="no_outline" src="./static/images/cube.JPEG" alt="Grasp cube task" style="max-width: 100%; max-height: 100%;">
</div>
<div class="column is-3 has-text-centered">
<img class="no_outline" src="./static/images/lego.JPEG" alt="Lego insert task" style="max-width: 100%; max-height: 100%;">
</div>
<div class="column is-3 has-text-centered">
<img class="no_outline" src="./static/images/coin.JPEG" alt="Grasp coin task" style="max-width: 100%; max-height: 100%;">
</div>
</div>
<div class="columns is-centered has-text-centered mt-5">
<div class="column is-four-fifths">
<h3 class="title is-3">Real Robot Experiments</h3>
<div class="columns is-centered">
<div class="column is-4 has-text-centered">
<img class="no_outline" src="./static/images/cube.JPEG" alt="Grasp cube task" style="max-width: 100%; max-height: 100%;">
</div>
<div class="column is-4 has-text-centered">
<img class="no_outline" src="./static/images/lego.JPEG" alt="Lego insert task" style="max-width: 100%; max-height: 100%;">
</div>
<div class="column is-4 has-text-centered">
<img class="no_outline" src="./static/images/coin.JPEG" alt="Grasp coin task" style="max-width: 100%; max-height: 100%;">
</div>
</div>
<h4 class="title is-4">CCIL improves imitation learning, especially in low-data regimes</h4>
<div class="columns is-centered">
<div class="column is-4 has-text-centered">
Expand All @@ -475,6 +475,10 @@ <h4 class="title is-4">CCIL improves imitation learning, especially in low-data
</p>
</div>
</div>
</div>
</div>
<div class="columns is-centered has-text-centered mt-6">
<div class="column is-four-fifths">
<h4 class="title is-4">CCIL's Robustness to Lipschitz Constraint</h4>
<div class="columns is-centered is-vcentered">
<div class="column is-4 has-text-centered">
Expand All @@ -496,6 +500,35 @@ <h4 class="title is-4">CCIL's Robustness to Lipschitz Constraint</h4>
</div>
</div>
</div>
<div class="columns is-centered has-text-centered mt-6">
<div class="column is-four-fifths">
<h4 class="title is-4">CCIL's Robustness to Disturbance</h4>
<div class="columns is-centered is-vcentered">
<div class="column is-half has-text-centered">
<h5 class="title is-5 mb-1">With Corrective Labels</h5>
<video class="synced-3" muted>
<source src="./static/videos/ccil_cube_perturb.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="column is-half has-text-centered">
<h5 class="title is-5 mb-1">Without Corrective Labels</h5>
<video class="synced-3" muted>
<source src="./static/videos/bc_cube_perturb.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="columns is-centered">
<div class="column is-9 has-text-centered insight">
<p>
CCIL's corrective labels expand the support of the demonstration data, allowing the policy to recover from significant
disturbances that push it outside of the original expert state distribution.
</p>
</div>
</div>
</div>
</div>
</div>
</section>

Expand Down
2 changes: 1 addition & 1 deletion static/js/sync_vids.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$(document).ready(function() {
const syncedGroups = ["synced-1", "synced-2"];
const syncedGroups = ["synced-1", "synced-2", "synced-3"];

let vidsReady = {};
let vidsEnded = {};
Expand Down
Binary file added static/videos/bc_cube_perturb.mp4
Binary file not shown.
Binary file added static/videos/ccil_cube_perturb.mp4
Binary file not shown.

0 comments on commit eeb1b08

Please sign in to comment.