Jack Monas
commited on
Commit
·
f3b18f0
1
Parent(s):
3294042
gif
Browse files
app.py
CHANGED
@@ -223,8 +223,7 @@ def main():
|
|
223 |
row_gifs = gif_paths[i:i+4]
|
224 |
|
225 |
# Create columns for this row
|
226 |
-
cols = st.columns(len(row_gifs))
|
227 |
-
|
228 |
# Display each GIF in its own column
|
229 |
for col, gif_path in zip(cols, row_gifs):
|
230 |
col.image(gif_path, use_container_width=True)
|
@@ -293,28 +292,53 @@ def main():
|
|
293 |
st.markdown("---")
|
294 |
|
295 |
st.markdown("## FAQs")
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
|
319 |
st.markdown("---")
|
320 |
|
|
|
223 |
row_gifs = gif_paths[i:i+4]
|
224 |
|
225 |
# Create columns for this row
|
226 |
+
cols = st.columns(min(len(row_gifs), 4))
|
|
|
227 |
# Display each GIF in its own column
|
228 |
for col, gif_path in zip(cols, row_gifs):
|
229 |
col.image(gif_path, use_container_width=True)
|
|
|
292 |
st.markdown("---")
|
293 |
|
294 |
st.markdown("## FAQs")
|
295 |
+
|
296 |
+
st.markdown("**How should I preprocess the dataset?**")
|
297 |
+
st.write(
|
298 |
+
"The raw data in the `world_model_raw_data` dataset is provided as-is, with no additional preprocessing. "
|
299 |
+
"You are free to apply your own steps—such as resizing, normalization, or augmentation—but please document all preprocessing methods in your technical report."
|
300 |
+
)
|
301 |
+
|
302 |
+
st.markdown("**What output format is expected for predictions?**")
|
303 |
+
st.write(
|
304 |
+
"For the Sampling Challenge, your model should output a predicted video frame in RGB format at a resolution of 512×512 pixels. "
|
305 |
+
"For the Evaluation Challenge, you should submit a ranked list of the provided policies based on their expected real-world performance."
|
306 |
+
)
|
307 |
+
|
308 |
+
st.markdown("**What evaluation metrics will be used?**")
|
309 |
+
st.write(
|
310 |
+
"The Compression Challenge is evaluated by the model's loss (e.g., cross-entropy or mean squared error). "
|
311 |
+
"The Sampling Challenge will use image quality metrics like PSNR and SSIM, while the Evaluation Challenge is assessed by comparing your ranking "
|
312 |
+
"against the ground-truth ranking using correlation metrics such as Spearman's rho."
|
313 |
+
)
|
314 |
+
|
315 |
+
st.markdown("**Are there restrictions on using future frames or actions?**")
|
316 |
+
st.write(
|
317 |
+
"You are allowed to use future actions to condition your frame predictions, but you must not use any actual future frames during inference."
|
318 |
+
)
|
319 |
+
|
320 |
+
st.markdown("**Can I modify the baseline models?**")
|
321 |
+
st.write(
|
322 |
+
"Yes, you are encouraged to enhance the provided baseline models. However, any modifications must be thoroughly documented in your technical report, "
|
323 |
+
"and your final submission must be fully reproducible."
|
324 |
+
)
|
325 |
+
|
326 |
+
st.markdown("**How do I ensure my submission is reproducible?**")
|
327 |
+
st.write(
|
328 |
+
"Include complete code, configuration files, and clear instructions for running your model. Non-reproducible submissions may be disqualified."
|
329 |
+
)
|
330 |
+
|
331 |
+
st.markdown("**Is there a limit on model size or inference time?**")
|
332 |
+
st.write(
|
333 |
+
"There are no strict limits on model size or inference time, but solutions will be evaluated on both performance and efficiency."
|
334 |
+
)
|
335 |
+
|
336 |
+
st.markdown("**What if I submit a Compression Challenge solution using the old tokenizer?**")
|
337 |
+
st.write(
|
338 |
+
"Solutions using the MAGVIT tokenizer that achieve a loss below 8.0 on our held-out test set will continue to be honored for the $10K award "
|
339 |
+
"for six months from March 1, 2025. However, these submissions will not be eligible for the CVPR/ICCV competitions, which will use the Cosmos tokenizer as the standard."
|
340 |
+
)
|
341 |
+
|
342 |
|
343 |
st.markdown("---")
|
344 |
|