Jack Monas
commited on
Commit
·
391fcfa
1
Parent(s):
194f835
gif
Browse files
app.py
CHANGED
@@ -77,7 +77,9 @@ def main():
|
|
77 |
"Welcome to the World Model Challenge. This platform hosts three challenges "
|
78 |
"designed to advance research in world models for robotics: Compression, Sampling, and Evaluation."
|
79 |
)
|
80 |
-
|
|
|
|
|
81 |
|
82 |
st.markdown("---")
|
83 |
|
@@ -175,13 +177,13 @@ def main():
|
|
175 |
"""
|
176 |
**General Guidelines:**
|
177 |
- The use of publicly available datasets and pretrained weights is allowed. The use of private datasets or pretrained weights is prohibited.
|
178 |
-
- You may use future actions to
|
179 |
- There is no limit on the inference time for any of the challenges.
|
180 |
- Naive nearest-neighbor retrieval combined with seeking ahead to the next frames from the training set may yield reasonable performance but is not permitted in solutions.
|
181 |
|
182 |
**Submissions:**
|
183 |
-
- All submissions must be reproducible.
|
184 |
-
- The leaderboard will display results on a public test set
|
185 |
|
186 |
**Eligibility:**
|
187 |
- Prizes cannot be awarded to individuals in U.S. sanctioned countries. We reserve the right to withhold prizes if a submission violates the spirit of the challenge.
|
@@ -195,8 +197,17 @@ def main():
|
|
195 |
|
196 |
st.markdown("## Already Started Working on These Challenges?")
|
197 |
st.write(
|
198 |
-
|
199 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
)
|
201 |
|
202 |
st.markdown("---")
|
|
|
77 |
"Welcome to the World Model Challenge. This platform hosts three challenges "
|
78 |
"designed to advance research in world models for robotics: Compression, Sampling, and Evaluation."
|
79 |
)
|
80 |
+
st.write(
|
81 |
+
"This challenge is part of the Autonomous Grand Challenge 2025, held in conjunction with the CVPR 2025 Workshop (confirmed) and ICCV 2025 Workshop (tentative). With a total cash prize pool of up to USD 100,000, individual track awards exceeding USD 15,000, and travel grants available, we invite you to push the boundaries of robotics research and simulation."
|
82 |
+
)
|
83 |
|
84 |
st.markdown("---")
|
85 |
|
|
|
177 |
"""
|
178 |
**General Guidelines:**
|
179 |
- The use of publicly available datasets and pretrained weights is allowed. The use of private datasets or pretrained weights is prohibited.
|
180 |
+
- You may use future actions to guide your frame predictions, but you must not use any actual future frames during inference.
|
181 |
- There is no limit on the inference time for any of the challenges.
|
182 |
- Naive nearest-neighbor retrieval combined with seeking ahead to the next frames from the training set may yield reasonable performance but is not permitted in solutions.
|
183 |
|
184 |
**Submissions:**
|
185 |
+
- All submissions must be reproducible. Please expect to include code, configuration files, and any necessary instructions to replicate your results.
|
186 |
+
- The leaderboard will display results on a public test set. However, the final winner will be determined based on performance on a private test set.
|
187 |
|
188 |
**Eligibility:**
|
189 |
- Prizes cannot be awarded to individuals in U.S. sanctioned countries. We reserve the right to withhold prizes if a submission violates the spirit of the challenge.
|
|
|
197 |
|
198 |
st.markdown("## Already Started Working on These Challenges?")
|
199 |
st.write(
|
200 |
+
"""
|
201 |
+
Before partnering with Open Drive Lab to launch the World Model Challenge at CVPR 2025 and (tentatively) ICCV 2025, we had already released the Compression and Sampling challenges publicly, offering $10K for each. However, due to the rapid progress in the field, we have updated our competitions.
|
202 |
+
|
203 |
+
For the Compression Challenge, we initially used the MAGVIT spatial tokenizer to compare participant losses. We are now switching to the highly performant Cosmos spatial-temporal tokenizer as our new standard.
|
204 |
+
|
205 |
+
For the Sampling Challenge, the requirement has changed from predicting a frame 0.5 seconds in the future to predicting a frame two seconds ahead, in order to encourage more robust solutions.
|
206 |
+
|
207 |
+
Additionally, a previous rule prohibited the use of future actions to condition frame predictions; this restriction has been lifted, and using future actions is now allowed.
|
208 |
+
|
209 |
+
Please note that we will continue to honor solutions for the Compression Challenge $10K award submitted using the MAGVIT tokenizer—if you achieve a loss below 8.0 on our held-out test set—for six months from March 1, 2025. However, these solutions will not be eligible for the CVPR or ICCV competitions.
|
210 |
+
"""
|
211 |
)
|
212 |
|
213 |
st.markdown("---")
|