xizaoqu
commited on
Commit
ยท
44f0e84
1
Parent(s):
d371665
update
Browse files
app.py
CHANGED
@@ -346,7 +346,14 @@ def set_memory(examples_case, image_display, log_output, slider_denoising_step,
|
|
346 |
|
347 |
return input_history, out_video[-1], temporal_video_path, memory_frames, self_frames, self_actions, self_poses, self_memory_c2w, self_frame_idx
|
348 |
|
349 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
gr.Markdown(
|
351 |
"""
|
352 |
# WORLDMEM: Long-term Consistent World Generation with Memory
|
@@ -454,7 +461,7 @@ with gr.Blocks() as demo:
|
|
454 |
with gr.Column(scale=1):
|
455 |
submit_button = gr.Button("๐ฌ Generate!", variant="primary")
|
456 |
reset_btn = gr.Button("๐ Reset")
|
457 |
-
|
458 |
|
459 |
gr.Markdown("### โ๏ธ Advanced Settings")
|
460 |
|
|
|
346 |
|
347 |
return input_history, out_video[-1], temporal_video_path, memory_frames, self_frames, self_actions, self_poses, self_memory_c2w, self_frame_idx
|
348 |
|
349 |
+
css = """
|
350 |
+
h1 {
|
351 |
+
text-align: center;
|
352 |
+
display:block;
|
353 |
+
}
|
354 |
+
"""
|
355 |
+
|
356 |
+
with gr.Blocks(css=css) as demo:
|
357 |
gr.Markdown(
|
358 |
"""
|
359 |
# WORLDMEM: Long-term Consistent World Generation with Memory
|
|
|
461 |
with gr.Column(scale=1):
|
462 |
submit_button = gr.Button("๐ฌ Generate!", variant="primary")
|
463 |
reset_btn = gr.Button("๐ Reset")
|
464 |
+
|
465 |
|
466 |
gr.Markdown("### โ๏ธ Advanced Settings")
|
467 |
|