├── .assets ├── DynamicScaler_CVPR25_paper.pdf └── title.mp4 ├── CC-BY-NC-SA-4.0 ├── README.md ├── configs ├── inference_i2v_512_v1.0.yaml └── inference_t2v_512_v2.0.yaml ├── gen_pano_360.py ├── input ├── city_fireworks.png └── pano_surfing_1.png ├── lvdm ├── basics.py ├── common.py ├── distributions.py ├── ema.py ├── models │ ├── autoencoder.py │ ├── ddpm3d.py │ ├── samplers │ │ └── ddim.py │ └── utils_diffusion.py └── modules │ ├── attention.py │ ├── attention_freetraj.py │ ├── encoders │ ├── condition.py │ └── ip_resampler.py │ ├── networks │ ├── ae_modules.py │ ├── openaimodel3d.py │ └── openaimodel3d_freetraj.py │ └── x_transformer.py ├── pipeline ├── d_scheduler.py ├── i2v_normal_pipeline.py ├── i2v_sphere_panorama_pipeline.py ├── scheduler.py ├── t2v_normal_pipeline.py └── t2v_sphere_panorama_pipeline.py ├── requirements.txt ├── scripts ├── evaluation │ ├── ddp_wrapper.py │ ├── funcs.py │ └── inference.py ├── gradio │ ├── i2v_test.py │ └── t2v_test.py ├── run_image2video.sh └── run_text2video.sh └── utils ├── diffusion_utils.py ├── loop_merge_utils.py ├── multi_prompt_utils.py ├── panorama_tensor_utils.py ├── precast_latent_utils.py ├── ring_panorama_tensor_utils.py ├── shift_window_utils.py ├── tensor_utils.py └── utils.py /.assets/DynamicScaler_CVPR25_paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/.assets/DynamicScaler_CVPR25_paper.pdf -------------------------------------------------------------------------------- /.assets/title.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/.assets/title.mp4 -------------------------------------------------------------------------------- /CC-BY-NC-SA-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/CC-BY-NC-SA-4.0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/README.md -------------------------------------------------------------------------------- /configs/inference_i2v_512_v1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/configs/inference_i2v_512_v1.0.yaml -------------------------------------------------------------------------------- /configs/inference_t2v_512_v2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/configs/inference_t2v_512_v2.0.yaml -------------------------------------------------------------------------------- /gen_pano_360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/gen_pano_360.py -------------------------------------------------------------------------------- /input/city_fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/input/city_fireworks.png -------------------------------------------------------------------------------- /input/pano_surfing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/input/pano_surfing_1.png -------------------------------------------------------------------------------- /lvdm/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/basics.py -------------------------------------------------------------------------------- /lvdm/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/common.py -------------------------------------------------------------------------------- /lvdm/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/distributions.py -------------------------------------------------------------------------------- /lvdm/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/ema.py -------------------------------------------------------------------------------- /lvdm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/models/autoencoder.py -------------------------------------------------------------------------------- /lvdm/models/ddpm3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/models/ddpm3d.py -------------------------------------------------------------------------------- /lvdm/models/samplers/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/models/samplers/ddim.py -------------------------------------------------------------------------------- /lvdm/models/utils_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/models/utils_diffusion.py -------------------------------------------------------------------------------- /lvdm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/attention.py -------------------------------------------------------------------------------- /lvdm/modules/attention_freetraj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/attention_freetraj.py -------------------------------------------------------------------------------- /lvdm/modules/encoders/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/encoders/condition.py -------------------------------------------------------------------------------- /lvdm/modules/encoders/ip_resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/encoders/ip_resampler.py -------------------------------------------------------------------------------- /lvdm/modules/networks/ae_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/networks/ae_modules.py -------------------------------------------------------------------------------- /lvdm/modules/networks/openaimodel3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/networks/openaimodel3d.py -------------------------------------------------------------------------------- /lvdm/modules/networks/openaimodel3d_freetraj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/networks/openaimodel3d_freetraj.py -------------------------------------------------------------------------------- /lvdm/modules/x_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/lvdm/modules/x_transformer.py -------------------------------------------------------------------------------- /pipeline/d_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/pipeline/d_scheduler.py -------------------------------------------------------------------------------- /pipeline/i2v_normal_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/pipeline/i2v_normal_pipeline.py -------------------------------------------------------------------------------- /pipeline/i2v_sphere_panorama_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/pipeline/i2v_sphere_panorama_pipeline.py -------------------------------------------------------------------------------- /pipeline/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/pipeline/scheduler.py -------------------------------------------------------------------------------- /pipeline/t2v_normal_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/pipeline/t2v_normal_pipeline.py -------------------------------------------------------------------------------- /pipeline/t2v_sphere_panorama_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/pipeline/t2v_sphere_panorama_pipeline.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/evaluation/ddp_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/scripts/evaluation/ddp_wrapper.py -------------------------------------------------------------------------------- /scripts/evaluation/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/scripts/evaluation/funcs.py -------------------------------------------------------------------------------- /scripts/evaluation/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/scripts/evaluation/inference.py -------------------------------------------------------------------------------- /scripts/gradio/i2v_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/scripts/gradio/i2v_test.py -------------------------------------------------------------------------------- /scripts/gradio/t2v_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/scripts/gradio/t2v_test.py -------------------------------------------------------------------------------- /scripts/run_image2video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/scripts/run_image2video.sh -------------------------------------------------------------------------------- /scripts/run_text2video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/scripts/run_text2video.sh -------------------------------------------------------------------------------- /utils/diffusion_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/diffusion_utils.py -------------------------------------------------------------------------------- /utils/loop_merge_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/loop_merge_utils.py -------------------------------------------------------------------------------- /utils/multi_prompt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/multi_prompt_utils.py -------------------------------------------------------------------------------- /utils/panorama_tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/panorama_tensor_utils.py -------------------------------------------------------------------------------- /utils/precast_latent_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/precast_latent_utils.py -------------------------------------------------------------------------------- /utils/ring_panorama_tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/ring_panorama_tensor_utils.py -------------------------------------------------------------------------------- /utils/shift_window_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/shift_window_utils.py -------------------------------------------------------------------------------- /utils/tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/tensor_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh-Lin/DynamicScaler/HEAD/utils/utils.py --------------------------------------------------------------------------------