gitextract_c750wbnv/ ├── LICENSE ├── README.md └── i2v/ ├── cog.yaml ├── configs/ │ ├── inference_i2v_512_v1.0.yaml │ ├── inference_t2v_1024_v1.0.yaml │ ├── inference_t2v_512_v1.0.yaml │ ├── inference_t2v_512_v2.0.yaml │ └── train_t2v.yaml ├── gradio_app.py ├── lvdm/ │ ├── basics.py │ ├── common.py │ ├── data/ │ │ ├── frame_dataset.py │ │ └── taichi.py │ ├── distributions.py │ ├── ema.py │ ├── models/ │ │ ├── autoencoder.py │ │ ├── ddpm3d.py │ │ ├── samplers/ │ │ │ └── ddim.py │ │ └── utils_diffusion.py │ ├── modules/ │ │ ├── attention.py │ │ ├── encoders/ │ │ │ ├── condition.py │ │ │ └── ip_resampler.py │ │ ├── networks/ │ │ │ ├── ae_modules.py │ │ │ └── openaimodel3d.py │ │ └── x_transformer.py │ └── utils/ │ ├── callbacks.py │ ├── common_utils.py │ └── saving_utils.py ├── predict.py ├── prompts/ │ ├── .ipynb_checkpoints/ │ │ ├── gpt4_extended_prompts_gen_original_vc2_noact_050624-checkpoint.txt │ │ ├── gpt4_random_anthropomorphic_game_chars_050624-checkpoint.txt │ │ └── gpt4_random_anthropomorphic_game_chars_b2_050624-checkpoint.txt │ ├── bg_prompts.txt │ ├── gpt4_extended_prompts_gen_original_vc2_050624.txt │ ├── gpt4_extended_prompts_gen_original_vc2_noact_050624.txt │ ├── gpt4_extended_prompts_path_031324.json │ ├── gpt4_extended_prompts_path_031324.txt │ ├── gpt4_extended_prompts_path_jump_050624.txt │ ├── gpt4_extended_prompts_path_runjump_050624.txt │ ├── gpt4_random_anthropomorphic_game_chars_050624.txt │ ├── gpt4_random_anthropomorphic_game_chars_b2_050624.txt │ ├── i2v_prompts/ │ │ └── test_prompts.txt │ └── test_prompts.txt ├── requirements.txt ├── scripts/ │ ├── evaluation/ │ │ ├── ddp_wrapper.py │ │ ├── funcs.py │ │ ├── inference.py │ │ ├── inference_util.py │ │ └── test_seg.py │ ├── gradio/ │ │ ├── i2v_test.py │ │ └── t2v_test.py │ ├── run_image2video.sh │ └── run_text2video.sh ├── train.py ├── train_t2v_run_jump.sh ├── train_t2v_spinkick.sh ├── train_t2v_swordslash.sh └── utils/ ├── common_utils.py ├── log.py └── utils.py