-
Notifications
You must be signed in to change notification settings - Fork 3
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
felix
committed
Sep 16, 2024
1 parent
162cac4
commit 821a4c1
Showing
1 changed file
with
152 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Inference-Time Policy Steering with Human Interactions</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 20px; | ||
} | ||
|
||
h1, | ||
h2 { | ||
color: #333; | ||
} | ||
|
||
.video-container { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.video-container video, | ||
.image-container img { | ||
width: 48%; | ||
height: auto; | ||
} | ||
|
||
.image-container { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.grid-container { | ||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
grid-gap: 20px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.grid-container video { | ||
width: 100%; | ||
height: auto; | ||
} | ||
|
||
.caption { | ||
text-align: center; | ||
font-style: italic; | ||
color: #666; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<h1>Inference-Time Policy Steering with Human Interactions</h1> | ||
|
||
<h2>Exploring motion manifold of ACT vs DP in terms of multimodality and constraint satisfaction</h2> | ||
<div class="video-container"> | ||
<div> | ||
<video controls> | ||
<!-- Placeholder for ACT video --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<p class="caption">ACT</p> | ||
</div> | ||
<div> | ||
<video controls> | ||
<!-- Placeholder for DP video --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<p class="caption">DP</p> | ||
</div> | ||
</div> | ||
|
||
<h2>Benchmark different ways of influencing auto-regressive models and diffusion models at test time</h2> | ||
<!-- Add your content here as needed --> | ||
|
||
<h2>Visualize diffusion dynamics under influence</h2> | ||
<div class="grid-container"> | ||
<video controls> | ||
<!-- Placeholder for video 1 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 2 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 3 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
</div> | ||
|
||
<div class="image-container"> | ||
<div> | ||
<img src="placeholder1.jpg" alt="Diagram of various inference time steering methods"> | ||
<p class="caption">Diagram of various inference time steering methods</p> | ||
</div> | ||
<div> | ||
<img src="placeholder2.jpg" alt="Interaction improves alignment at the cost of constraint violation"> | ||
<p class="caption">Interaction improves alignment at the cost of constraint violation</p> | ||
</div> | ||
</div> | ||
|
||
<h2>Sample visualization of using drawings to influence policy rollouts</h2> | ||
<div class="grid-container"> | ||
<video controls> | ||
<!-- Placeholder for video 1 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 2 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 3 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 4 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 5 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 6 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 7 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 8 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
<video controls> | ||
<!-- Placeholder for video 9 --> | ||
Your browser does not support the video tag. | ||
</video> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |