gitextract_8we83d97/ ├── LICENSE ├── README.md ├── cog.yaml ├── configs/ │ ├── inference_t2v_1024_v1.0.yaml │ ├── inference_t2v_1024_v1.0_freenoise.yaml │ ├── inference_t2v_tconv256_v1.0.yaml │ ├── inference_t2v_tconv256_v1.0_freenoise.yaml │ ├── inference_t2v_tconv512_v2.0.yaml │ └── inference_t2v_tconv512_v2.0_freenoise.yaml ├── lvdm/ │ ├── basics.py │ ├── common.py │ ├── distributions.py │ ├── ema.py │ ├── models/ │ │ ├── autoencoder.py │ │ ├── ddpm3d.py │ │ ├── samplers/ │ │ │ ├── ddim.py │ │ │ └── ddim_mp.py │ │ └── utils_diffusion.py │ └── modules/ │ ├── attention.py │ ├── attention_freenoise.py │ ├── encoders/ │ │ ├── condition.py │ │ └── ip_resampler.py │ ├── networks/ │ │ ├── ae_modules.py │ │ ├── openaimodel3d.py │ │ └── openaimodel3d_freenoise.py │ └── x_transformer.py ├── predict.py ├── prompts/ │ ├── mp_prompts.txt │ └── single_prompts.txt ├── requirements.txt ├── scripts/ │ ├── evaluation/ │ │ ├── ddp_wrapper.py │ │ ├── funcs.py │ │ ├── inference.py │ │ ├── inference_freenoise.py │ │ └── inference_freenoise_mp.py │ ├── run_text2video.sh │ ├── run_text2video_freenoise_1024.sh │ ├── run_text2video_freenoise_256.sh │ ├── run_text2video_freenoise_512.sh │ ├── run_text2video_freenoise_mp_256.sh │ └── run_text2video_freenoise_mp_512.sh └── utils/ └── utils.py