xizaoqu commited on
Commit
deb4138
·
1 Parent(s): 21cda28
Files changed (2) hide show
  1. algorithms/worldmem/df_video.py +0 -1
  2. app.py +1 -1
algorithms/worldmem/df_video.py CHANGED
@@ -858,7 +858,6 @@ class WorldMemMinecraft(DiffusionForcingBase):
858
 
859
  memory_frame_idx = torch.cat([memory_frame_idx, new_indices[:, None]])
860
 
861
- print(memory_frame_idx)
862
  conditions = memory_actions.clone()
863
  pose_conditions = memory_poses.clone()
864
  c2w_mat = memory_c2w .clone()
 
858
 
859
  memory_frame_idx = torch.cat([memory_frame_idx, new_indices[:, None]])
860
 
 
861
  conditions = memory_actions.clone()
862
  pose_conditions = memory_poses.clone()
863
  c2w_mat = memory_c2w .clone()
app.py CHANGED
@@ -512,7 +512,7 @@ with gr.Blocks(css=css) as demo:
512
  slider_memory_length = gr.Slider(
513
  minimum=4, maximum=16, value=worldmem.condition_similar_length, step=1,
514
  label="Memory Length",
515
- info="How many previous frames in memory window."
516
  )
517
  slider_next_frame_length = gr.Slider(
518
  minimum=1, maximum=5, value=worldmem.next_frame_length, step=1,
 
512
  slider_memory_length = gr.Slider(
513
  minimum=4, maximum=16, value=worldmem.condition_similar_length, step=1,
514
  label="Memory Length",
515
+ info="How many previous frames in memory window. (Recommended: 1, multi-frame generation is not stable yet)"
516
  )
517
  slider_next_frame_length = gr.Slider(
518
  minimum=1, maximum=5, value=worldmem.next_frame_length, step=1,