Jack Monas
commited on
Commit
·
e0b70ca
1
Parent(s):
ef158e8
task revise
Browse files
app.py
CHANGED
@@ -42,6 +42,23 @@ def main():
|
|
42 |
"These rankings will be compared to the real-world performance of the policies to determine a winner."
|
43 |
)
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
if __name__ == '__main__':
|
47 |
main()
|
|
|
42 |
"These rankings will be compared to the real-world performance of the policies to determine a winner."
|
43 |
)
|
44 |
|
45 |
+
|
46 |
+
|
47 |
+
st.markdown("#### Compression Challenge")
|
48 |
+
st.write(
|
49 |
+
"In the Compression Challenge, your task is to train a model to compress our robots logs effectively while preserving the critical details needed to understand and predict future interactions. Success in this challenge is measured by the loss of your model—the lower the loss, the better your model captures the complexities of real-world robot behavior."
|
50 |
+
)
|
51 |
+
|
52 |
+
st.markdown("#### Sampling Challenge")
|
53 |
+
st.write(
|
54 |
+
"In the Sampling Challenge, your task is to predict a future video frame two seconds in the future given a short clip of robot interactions. The goal is to produce a coherent and plausible continuations of the video, which accurately reflects the dynamics of the scene. Your submission will be judged on how closely it matches the actual frame."
|
55 |
+
)
|
56 |
+
|
57 |
+
st.markdown("#### Evaluation Challenge")
|
58 |
+
st.write(
|
59 |
+
"The Evaluation Challenge tackles the ultimate question: Can you predict a robot's performance in the real world without physically deploying it? In this challenge, you will be provided with many different policies for a specific task. Your task is to rank these policies according to their expected real-world performance. This ranking will be compared with the actual ranking of the policies."
|
60 |
+
)
|
61 |
+
|
62 |
|
63 |
if __name__ == '__main__':
|
64 |
main()
|