Jack Monas
commited on
Commit
·
eb12957
1
Parent(s):
dba99f8
rules
Browse files- app.py +7 -2
- assets/model_performance_over_time.webp +0 -0
app.py
CHANGED
|
@@ -72,7 +72,7 @@ def main():
|
|
| 72 |
st.title("World Model Challenge")
|
| 73 |
st.markdown("## Welcome")
|
| 74 |
st.write(
|
| 75 |
-
"Welcome to the World Model Challenge
|
| 76 |
"designed to advance research in world models for robotics: Compression, Sampling, and Evaluation."
|
| 77 |
)
|
| 78 |
|
|
@@ -85,6 +85,11 @@ def main():
|
|
| 85 |
"learning to simulate complex real-world interactions from raw sensor data. We believe these learned simulators will enable "
|
| 86 |
"robust evaluation and iterative improvement of robot policies without the constraints of a physical testbed."
|
| 87 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
st.markdown("---")
|
| 89 |
|
| 90 |
st.markdown("## The Challenges")
|
|
@@ -159,7 +164,7 @@ def main():
|
|
| 159 |
"Yes, team submissions are welcome.")
|
| 160 |
|
| 161 |
display_faq("What are the submission deadlines?",
|
| 162 |
-
"Deadlines for
|
| 163 |
|
| 164 |
|
| 165 |
|
|
|
|
| 72 |
st.title("World Model Challenge")
|
| 73 |
st.markdown("## Welcome")
|
| 74 |
st.write(
|
| 75 |
+
"Welcome to the World Model Challenge. This platform hosts three challenges "
|
| 76 |
"designed to advance research in world models for robotics: Compression, Sampling, and Evaluation."
|
| 77 |
)
|
| 78 |
|
|
|
|
| 85 |
"learning to simulate complex real-world interactions from raw sensor data. We believe these learned simulators will enable "
|
| 86 |
"robust evaluation and iterative improvement of robot policies without the constraints of a physical testbed."
|
| 87 |
)
|
| 88 |
+
st.image(
|
| 89 |
+
"assets/model_performance_over_time.webp",
|
| 90 |
+
caption="An example T-shirt folding model we trained that degrades in performance over the course of 50 days.",
|
| 91 |
+
use_column_width=True
|
| 92 |
+
)
|
| 93 |
st.markdown("---")
|
| 94 |
|
| 95 |
st.markdown("## The Challenges")
|
|
|
|
| 164 |
"Yes, team submissions are welcome.")
|
| 165 |
|
| 166 |
display_faq("What are the submission deadlines?",
|
| 167 |
+
"Deadlines for challenges soon to be announced.")
|
| 168 |
|
| 169 |
|
| 170 |
|
assets/model_performance_over_time.webp
ADDED
|