Trouble Shooting
May 26, 2025 ยท View on GitHub
-
TypeError: write_frames() got an unexpected keyword argument 'audio_path'when saving videos.- This is caused by the low version of
imageio-ffmpeg. - Upgrade it to fix:
pip install --upgrade imageio-ffmpeg==0.4.8.
- This is caused by the low version of
-
IndexError: list index out of rangewhen training latent action autoencoder.- You may forget to align
nnodesandnproc_per_nodeinlam/train.shwith your GPU setup. - Please check
lam/train.shand modify them accordingly.
- You may forget to align
-
The number of training iterations does not match when training latent action autoencoder.
- You may forget to align
num_nodesanddevicesinlam/config/lam.yamlwith your GPU setup. - Please check
lam/config/lam.yamland modify them accordingly.
- You may forget to align
-
FileNotFoundError: Failed to download file (open_clip_pytorch_model.bin) for laion/CLIP-ViT-H-14-laion2B-s32B-b79K.when building the world model.- This is likely due to a network failure.
- Download the model from Hugging Face in advance and set
versionof FrozenOpenCLIPImageEmbedder inworldmodel/vwm/modules/encoders/modules.pyto the path ofopen_clip_pytorch_model.bin.
-
Fail to convert the DeepSpeed checkpoint to
pytorch_model.binusing the automatically generatedzero_to_fp32.pyscript.- This is caused by the high version of
deepspeed. - Downgrade to a compatible lower version, or use the provided
worldmodel/zero_to_fp32.pyto replace the automatically generated script directly.
- This is caused by the high version of
<= Previous: [Visual Planning]